.wth{
	max-width: 1200px;
    min-width: 305px;
    margin: 0 auto;
    padding: 0 15px;
}
.img{
	display:block;
	max-width:100%;
	height:auto;
}
.teal-bg{
	background:#009688;
	fill:#ff962b;
	color:#fff;
}
.teal-bg:hover{
	background:#00897B;
	fill:#eb8823;
	color:#fff;
}
.silver-bg{
	background:#f2f2f2;
	fill:#333;
	color:#333;
}
.silver-bg:hover{
	background:#e3e3e3;
	fill:#333;
	color:#333;
}
/*Btn*/
.btn{
	display: inline-block;
    text-decoration: none;
	text-align:center;
	text-decoration:none;
    transition: 0.3s;
    position: relative;
	text-align:center;
    outline: none;
    border: none;
    cursor: pointer;
	transition:0.3s; 
	font-weight:400;
	text-transform:uppercase;
	margin:0;
}
.btn:hover, .btn:link{
	text-decoration:none;
}
.btn-s{
	height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 10px;
}
.btn-m{
	height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 12px;
}
.btn-l{
	height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 14px;
}

.btn-scs{
	background:#009688;
	color:#fff;
}
.btn-scs:hover{
	background:#00897B;
	color:#fff;
}
.btn-dgr{
	background:#f44336;
	color:#fff;
}
.btn-dgr:hover{
	background:#e53935;
	color:#fff;
}

/*dst*/
.dst h1, .dst h2, .dst h3{
	font-size:32px;
	font-weight:500;
	color:#333;
	margin:10px 0;
}
.dst a{
	color:#009688;
}
.dst blockquote{
	padding:20px;
	background:#f8f8f8;
	border:1px solid #e3e3e3;
	margin:20px 0;
}
.dst strong{
	font-weight:500;
}
.dst em{
	font-style:italic;
}
.dst p, .dst ul li, .dst ol li, .dst pre{
	font-size:16px;	
}
.dst p{
	margin:20px 0;
}
.dst pre{
	padding:20px;
	background:#f8f8f8;
	border:1px solid #e3e3e3;
	margin:20px 0;
}
.dst img{
	display:block;
	max-width:100%;
	height:auto;
	margin:10px 0;
}
.dst ul, .dst ol{
	margin:0 0 0 20px;
}
.dst ul li, .dst ol li{
	position:relative;
	padding:5px 0 5px 16px;
}
.dst ul li:before{
	content:'';
	position:absolute;
	top:50%;
	left:0;
	transform:translate(0, -50%);
	display:block;
	width:8px;
	height:8px;
	border-radius:4px;
	background:#009688;
}
.dst ol{
	counter-reset:li;
}
.dst ol li:before {
	content:counter(li);
	counter-increment:li;
	font-weight:500;
	margin:0 10px 0 0;
     
}
/*preloader*/
#pl{
	display:none;
	position:absolute;
	top:0;
	z-index:99999;
	height:3px;
	background:#009688;
}
#pl.show{
	display:block;
}
#pl{
	animation-name: pl;
	animation-duration: 1s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-play-state:running;
}
@-webkit-keyframes pl {
	0%{
		right:100%;
		left:0;
	}
	25%{
		right:0%;
		left:0;
	}
	75%{
		right:0%;
		left:100%;
	}
	100%{
		right:100%;
		left:0;
	}
}



/**/
.lnk{
	color:#1E88E5;
	border-bottom:1px dashed #1E88E5;
}
.lnk:hover{
	color:#0D47A1;
	border-bottom:1px dashed #0D47A1;
	text-decoration:none;
}







/*modal*/
.sldr-opn{
	
}
.sldr{
	position:fixed;
	top:0;
	right:-30%;
	bottom:0;
	width:30%;
	z-index:99;
	visibility:hidden;
	opacity:0;
	transition:.3s;
	background:#fff;
}
.sldr.show{
	right:0;
	opacity: 1;
	visibility: visible;
}
/**/
.sldr-cnt{
	padding:20px;
}
.sldr-cnt-tle{
	display:block;
	font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
	margin:0 0 30px 0;
}
/**/
.sldr-ovl {
   opacity: 0;
   visibility: hidden;  
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   z-index: 20;
   transition: .2s all;
}
.sldr-ovl.show{
   opacity: 1;
   visibility: visible;
}

/*modal*/
.mdl-opn{
	cursor:pointer;
}
.mdl {
	position: fixed;
	width:100%;
	z-index: 30;
	visibility:hidden;
	opacity:0;
	transition: 0.3s all;
}
.mdl.show{
	opacity: 1;
	visibility: visible;
}
/*modal content*/
.mdl-w{
	position:fixed;
	top:50%;
	left:50%;	
	transform:translate(-50%, -50%);
	overflow:hidden;
}
.mdl-cnt-w{
	position:relative;
	background:#fff;
	padding:40px 40px 100px 40px;
	border-radius:4px;
}
.mdl-s .mdl-cnt-w{
	width:660px;
}
.mdl-m .mdl-cnt-w{
	width:960px;
}
.mdl-l .mdl-cnt-w{
	width:1200px;
}
@media (max-width: 980px) {
.mdl-s .mdl-cnt-w{
	max-width:320px;
	padding:20px;
}	
}
.mdl-cnt{
	overflow-y:auto;
	max-height:70vh;
}
.mdl-msg{
	font-size:14px;
	color:#f44336;
}
/*modal header*/
.mdl-hdr{
	position:relative;
}
.mdl-tle{
    font-size: 18px;
	margin:0 0 10px 0;
	color:#333;
	font-weight:500;
}
.mdl-cse {
	position:absolute;
	top:50%;
	right:0;
	width:30px;
	height:30px;
	transform:translate(0, -50%);
	cursor:pointer;
}
.mdl-cse svg{
	transition:0.3s;
}
.mdl-cse:hover svg{
	transform:rotate(90deg);
}
.mdl-cse svg path{
	fill:#fff;
}

/*modal footer*/
.mdl-ftr{
	position:absolute;
	left:40px;
	bottom:40px;
	align-items:center;
}
.mdl-ftr > span, .mdl-ftr > a, .mdl-ftr > button{
	margin:0 10px 0 0;
}





/*rModalOverlay****************************************/
.mdl-ovl {
   opacity: 0;
   visibility: hidden;  
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   z-index: 20;
   transition: .2s all;
}
.mdl-ovl.show{
   opacity: 1;
   visibility: visible;
}







.uCheckbox{
	position:relative;	
}
.uCheckboxTle{
    height: 42px;
    line-height: 42px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #eceff1;
    transition: 0.3s;
    border-radius: 4px;
    font-size: 14px;
    color: #2c2e3e;
	cursor:pointer;
}
.uCheckboxTle:after{
	content:'';
	display:block;
	width:10px;
	height:10px;
	background: url(../icon/sort-down-b.svg) no-repeat;
	position:absolute;
	top:50%;
	right:10px;
	transform:translate(0, -50%);
}
.uCheckboxDrop{
	position:absolute;
	top:52px;
	left:0;
	right:0;
	z-index:2;
	background:#fff;
	padding:10px;
	opacity:0;
	visibility:hidden;
	transition:.3s;
}
.uCheckbox:hover .uCheckboxDrop{
	opacity:1;
	visibility:visible;
}





.fle{
	display:flex;
	flex-wrap:wrap;
}
.grd{
	display:flex;
	flex-wrap:wrap;
	margin:0 0 0 -20px;
}
.grd .cl-12{
	width:calc(100% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-9{
	width:calc(75% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-8{
	width:calc(66.666667% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-6{
	width:calc(50% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-5{
	width:calc(41.666667% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-4{
	width:calc(33.333333% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-3{
	width:calc(25% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-2{
	width:calc(16.666666% - 20px);
	margin:0 0 0 20px;
}
.grd .cl-1{
	width:calc(8.333333% - 20px);
	margin:0 0 0 20px;
}



.scrl {
    overflow: hidden;
    overflow-y: auto;
}
.scrl::-webkit-scrollbar-button {
	width:2px;
	height:0px
}
.scrl::-webkit-scrollbar-track {
}
.scrl::-webkit-scrollbar-thumb {
	background-color: #e3e3e3;
}
.scrl::-webkit-scrollbar-thumb:hover{
}
.scrl::-webkit-resizer{
	width:2px;
	height:0px
}
.scrl::-webkit-scrollbar{
	width: 2px;
}










.radio input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.radio_text {
	position: relative;
	cursor: pointer;
}
.radio input + .radio_text {
	position:relative;
	top:20px;
	display:inline-block;
	height:38px;
	line-height:38px;
	padding: 0 0 0 50px;
	margin:0 20px 0 0;
}
.radio input + .radio_text:before {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(0,0,0,.12);
	background: #FFF;
}
.radio input + .radio_text:after {
	content:'';
	display:block;
	position:absolute;
	top:12px;
	left:12px;
	width: 14px;
	height: 14px;
	border: 1px solid rgba(0,0,0,.12);
	background: #009688;
	opacity:0;
}
.radio input:checked + .radio_text:before {
	
}
.radio input:checked + .radio_text:after {
	opacity:1;
}


/*preloader*/
#preloader{
	opacity: 0;
	visibility: hidden;  
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:999;
}
#preloader:after{
	content:'';
	dislay:block;
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	width:50px;
	height:50px;
	background:url(/img/icons/preloader.svg);
}
#preloader.show{
	opacity: 1;
	visibility: visible;
}

/*Dropdown*/
.ctld-drp-lst{
	position:relative;
}
.ctld-drp-lst.index{
	z-index:99;
}
.ctld-drp-lst-rlt{
	display:none;
	position:absolute;
	max-height:300px;
	top:50px;
	left:0;
	width:100%;
	background:#fff;
	border: 1px solid rgba(0,0,0,.12);
	border-top:none;
	z-index:99;
}
.ctld-drp-lst-rlt span{
	display:block;
	padding:10px 10px;
	cursor:pointer;
}
.ctld-drp-lst-rlt span:hover{
	background:#f8f8f8;
}

/*Form style*/
.form-group{
	position:relative;
	margin-bottom:20px;
}
.form-group .control-label{
	display:block;
	height:20px;
	line-height:20px;
	font-size:12px;
	font-weight:500;
	color:#777;
}
.form-group .control-label span{
	padding:0 0 0 3px;
	color:#f20000;
}
.form-control, .form-control{
	display:block;
	width:100%;
	height:50px;
	line-height:50px;
	font-size:14px;
	padding:0 10px;
	border: 1px solid #e3e3e3;
	-webkit-appearance: none;
	border-radius:4px;
	background:#fff;
	outline:none;
	resize:none;
}
.form-control, textarea.form-control{
	height:60px;
	line-height:140%;
	padding:10px;
}
.help-block{
	
}
.has-error .form-control{
	border: 1px solid #f20000;
}
.has-success .form-control{
	
}


/*Placeholder*/
input::-webkit-input-placeholder{
	color:#444;
}
input::-moz-placeholder{
	color:#444;
}
input:-moz-placeholder{
	color:#444;
}
input:-ms-input-placeholder{
	color:#444;
}
input:focus::-webkit-input-placeholder{
	opacity:0;
}
input:focus::-moz-placeholder{
	opacity:0;
}
input:focus:-moz-placeholder{
	opacity:0;
}
input:focus:-ms-input-placeholder{
	opacity:0;
}




.alrt{
	position:fixed;
	top:-50px;
	right:20px;
	z-index:999;
	padding:10px;
	color:#fff;
	animation-name: alrt;
	animation-duration: 3s;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-play-state:running;
}
.alrt-scs{
	background:#009688;
}
.alrt-err{
	
}
@-webkit-keyframes alrt {
	0%{
		opacity:0;
		top:-50px;
	}
	15%{
		opacity:1;
		top:30px;
	}
	85%{
		opacity:1;
		top:30px;
	}
	100%{
		opacity:0;
		top:-50px;
	}
}



/*SIGN FORM*/
.sgnInFrm, .sgnUpFrm{
	display:none;
}
.sgnInFrm.show, .sgnUpFrm.show{
	display:block;
}


