/* Clean Modal */
.cl-modal {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	min-width: 150px;
	
	z-index: 10200;
	overflow-y:auto;
	overflow-x:hidden;
}
.cl-content {
	height:100%;
	color: #000;
	background: #fff;
	position: relative;
	margin: 0 0px;
	display:table;
	width:98%;
}



@media (max-width: 1024px) {
	.cl-content {margin-top: 90px;}
}

.cl-body {
	padding: 0;
	margin: 0;
	font-size: 16px;
	display:table-cell;
	/*vertical-align:middle;*/
	padding-top: 80px;
	height:100%;
}
.cl-close {
	width:55px;
	height:55px;
	border:rgba(71, 71, 71, 1) 2px solid;
	border-radius:500px;  
	margin-left: -34px;
	position:absolute;
	cursor:pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.cl-close:hover { 
	transform: rotate(90deg);
}
.cl-close span {
	position: absolute;
	display: inline-block;
	width: 30px;height: 2px;	  
	top: 27px; left: 12px;
}
.cl-close span::before, .cl-close span:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(71, 71, 71, 1);left: 0;
	transition: transform 0.2s;
	/* Force hardware acceleration */
	-webkit-transform: translateZ(0); -webkit-backface-visibility: hidden;
}
.cl-close span::before {
	-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);
	transition: transform 0.2s;
}
.cl-close span::after {
	-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);
	transition: transform 0.2s;
}
.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 
@-webkit-keyframes bounceIn { 
    0% {opacity: 0;-webkit-transform: scale(.3);} 
    50% {opacity: 1;-webkit-transform: scale(1.05);} 
    70% {-webkit-transform: scale(.9);} 
    100% {-webkit-transform: scale(1); visibility:visible;} 
} 
@keyframes bounceIn { 
    0% {opacity: 0; transform: scale(.3);} 
    50% {opacity: 1; transform: scale(1.05);} 
    70% {transform: scale(.9);} 
    100% {transform: scale(1); visibility:visible;} 
} 
.bounceIn { 
	-webkit-animation-name: bounceIn; 
	animation-name: bounceIn; 
}
@-webkit-keyframes bounceOut { 
    0% {-webkit-transform: scale(1);} 
    25% {-webkit-transform: scale(.95);} 
    50% {opacity: 1;-webkit-transform: scale(1.1);} 
    100% {opacity: 0;-webkit-transform: scale(.3); visibility:hidden;} 
} 
@keyframes bounceOut { 
    0% {transform: scale(1);} 
    25% {transform: scale(.95);} 
    50% {opacity: 1;transform: scale(1.1);} 
    100% {opacity: 0;transform: scale(.3); visibility:hidden;} 
} 
.bounceOut { 
    -webkit-animation-name: bounceOut; 
    animation-name: bounceOut; 
}

/* Clean Form */
.cl-form {
	max-width:1070px;
	margin:0 auto;
	padding:40px;
}
.cl-form input[type=text], .cl-form input[type=password], .cl-form textarea {
	display: block;
    box-sizing: border-box;
    width: 100%;
    height: 25px;
    border: #D2D2D2 1px solid;
    margin: 7px 0;
    padding: 0px 15px;
    font-size: 14px;
    color: #565553;
    line-height: 1;
    border-radius: 4px;
}
.cl-form input[type=text]:focus, .cl-form input[type=password]:focus, .cl-form textarea:focus {
	border:rgba(154,175,209,0.7) 4px solid;
}
.cl-form select {
	padding: 5px 20px;
    /* margin: 15px 0 0; */
    font-size: 14px;
    letter-spacing: 1px;
    height: 43px;
    line-height: 1.7;
    color: #000000;
    border: #D2D2D2 1px solid;
}
.cl-form h1, .cl-form h2 {
	font-size: 35px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.cl-form label {	
	display: block;
    margin: 15px 0 2px;
    font-size: 14px;
    color: #6c7293;
    line-height: 1rem;
    font-weight: 500;
}
.cl-form button {
	display: block;
    box-sizing: border-box;
    /* width: 50%; 
    height: 40px;*/
    /* background: #ded9d9; 
    border: #7E7E7E 1px solid;*/
    margin: 40px auto;
    padding: 5px 12px;
    font-size: 17px;
    color: #000;
    /*line-height: 1;
    letter-spacing: 2px;*/
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.cl-form button:hover {
    background-color: #f9f9f9;
}
.cl-form button.warning {
	color: rgb(223, 95, 39);
	border-color: rgb(223, 95, 39);  
}
.cl-form button.inline {
	width:auto;
	/*min-width:150px;*/
	display:inline-block;
}

.cl-form button.btn-updatepage, .cl-form button.btn-publishpage {
	margin-top: 0;
    width: 100%;
    height: 50px;
    font-size: 25px;
}

.cl-form .col-left {
	float:left;width:50%;padding:0 5px 0 0;box-sizing:border-box;
}
.cl-form .col-right {
	float:left;width:50%;padding:0 0 0 5px;box-sizing:border-box;
}

.cl-tab {
	padding:10px 22px;border-radius:30px;font-size: 19px;text-decoration:underline;color:#333;cursor:pointer;margin-right:15px
}
.cl-tab.active {
	background:#2C2C2C;color:#fff;text-decoration:none;cursor:default;
}
.cl-confirm-text {  
	font-size: 22px;
	text-align: center;
}
.cl-message {
	font-size: 22px;
	letter-spacing: 1px;
	padding: 20px 0 22px 30px;
	margin: 40px 0;
}
.cl-message.success {
	color: #00BBD2;
	border: #1DCFE5 1px solid;
	background: #F4FCFF;	
}
.cl-message.error {
	color: #D25D08;
	border: #DF8544 1px solid;
	background: #FCF7F4;
}
.cl-form input[type=text].error, .cl-form input[type=password].error, .cl-form textarea.error {
	border:#DF8544 1px solid;
}
.cl-nav > * {
	display: inline-block;
	margin: 0 10px;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.cl-nav.footer > * {
	font-size: 15px;
}

/* Others */
:focus {outline: none;}
.clearfix:before, .clearfix:after {content: " ";display: table;}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}