/* Clean Modal */
.modal-p {
	margin-top: 2em;
}

.cl-modal {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 90%;
	margin:3% 3% 3% 3%;
	z-index: 10002;
	overflow-y:auto;
	overflow-x:hidden;
	-webkit-box-shadow: 0px 0px 50px 0px rgba(50, 50, 50, .75);
	-moz-box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, .75);
	box-shadow: 0px 0px 50px 0px rgba(50, 50, 50, .75);
	border: #D2D2D2 1px solid;
	height:90%;
}
.cl-content {
	height:100%;
	color: #000;
	background: #fff;
	position: relative;
	margin: 0 auto;
	display:table;
	width:100%;
	height:100%;
}
.cl-body iframe {
	width: 100% !important;
	min-height: 700px !important;
	height: 93% !important;
	margin-top:5% !important;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: absolute; 

}
#ifrPageHistory {
	max-width: 1100px !important;
	max-height: 77% !important;
	position: absolute; 
}
		#md-menu > div > div:nth-child(1) {padding-left: 0px !important;}
		#md-updatepage > div > div:nth-child(1) > span > span {margin: 10px 0px 10px 0px;}
.cl-body {
	padding: 0;
	margin: 0;
	font-size: 16px;
	/*display:table-cell;*/
	vertical-align:middle;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 0px;
}
.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:970px;
	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:63px;
	border: #D2D2D2 1px solid;
	margin: 7px 0;
	padding: 0px 15px;
	font-size: 25px;
	color:#000;
	line-height: 1; 
}
.cl-form input[type=text]:focus, .cl-form input[type=password]:focus, .cl-form textarea:focus {
	border:#7E7E7E 1px solid;
}
.cl-form select {
	padding: 15px 20px;
	margin: 15px 0 0;
	font-size: 14px;
	letter-spacing: 1px;
	height: 63px;
	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: 25px 0 15px;
	font-size: 20px;
	color:#000;
	line-height: 1;	
	letter-spacing:1px;
}
.cl-form button {
	display: block;
	box-sizing: border-box;
	width:100%;
	/*height:70px;*/
	background: #DDDDDD;
	border: #7E7E7E 1px solid;
	margin: 40px 0 20px;
	padding: 18.5px;
	font-size: 17px;
	color:#000;
	line-height: 1;
	letter-spacing: 2px;
	text-transform: uppercase;
	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, .billbtn {
	width:auto;
	min-width:50px;
	display:inline-block;
}
.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:0px;font-size: 19px;text-decoration:none;color:#333;cursor:pointer;margin-right:15px; border:solid 1px #2C2C2C;
}
.cl-tab.active {
	padding:10px 22px;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;
	  border: #D2D2D2 1px solid;
	  padding: 6px 10px 6px 10px;
	  text-decoration: none !important;
}
.cl-nav.footer > * {
	font-size: 15px;
}
#md-menu a {
  font-size: 20px;
  margin: 0 5px !important;
}

/* Others */
:focus {outline: none;}
.clearfix:before, .clearfix:after {content: " ";display: table;}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}
.billbtn {
	max-width: 50px !important;
	padding-right: 40px !important;
	padding-left: 30px !important;
}

.dashboard-menu {
		width: 1194px !important;
		}

.dashboard-menu a {
			margin: 0 5px !important;
	}

	.dashboard-topbar {
			margin: 0 0px !important;
	}



