/*General*/
body{
	margin: 0;
}
.clear {
	clear: both;
	height: 0px;
}
.clearl {
	clear: left;
	height: 0px;
}
.clearfix:before,
.clearfix:after{
	content: " ";
	display: block;
	height: 0;
	clear: both;
}
ul li,
ol li{
	list-style-type: none;
}
.finger,
input[type="submit"],
input[type="reset"]{
	cursor: pointer;
}
.relative{
	position: relative;
}
.d-none{
	display: none;
}
.d-block{
	display: block;
}
.d-inline{
	display: inline;
}
.d-inline-block{
	display: inline-block;
}
.after:after,
.before:before{
	content: '';
	display: block;
	position: absolute;
}
.overflow-hidden{
	overflow: hidden;
}
/*End General*/


/*Text*/
.fz0{
	font-size: 0;
}

.text-small{
	font-size: 14px;
	line-height: 16px;
}
.text-medium{
	font-size: 16px;
	line-height: 18px;
}

.underline,
.underline-child a{
	text-decoration: underline;
}
.nounderline {
	text-decoration: none !important;
}

.capitalize {
	text-transform: capitalize !important;
}
.uppercase{
	text-transform: uppercase;
}
.lowercase{
	text-transform: lowercase;
}

.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-justify{
	text-align: justify;
}

.align-top{
	vertical-align: top;
}
.align-middle{
	vertical-align: middle;
}
.align-baseline{
	vertical-align: baseline;
}
.align-bottom{
	vertical-align: bottom;
}

.lh0{
	line-height: 0;
}
.lh30{
	line-height: 30px;
}
.lh50{
	line-height: 50px;
}

.content-vert-align{
	position: relative;
}
.content-vert-align:before{
	content: ' ';
	height: 100%;
	display: inline-block;
	font-size: 0;
	vertical-align: middle;
}
.content-vert-align>*{
	vertical-align: middle;
	max-width: 99%;
}
/*End text*/


/*Colors*/
.text-white{
	color: #fff;
}
.text-blue{
	color: #3361a4;
}
.bg-white{
	background: #fff;
}
/*End colors*/


/*Grid*/
.container{
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}
.row{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -20px;
	margin-left: -20px;
}
.row>div[class^='col-']{
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	padding: 0 20px;
}
.row.gutter-6{
	margin-right: -3px;
	margin-left: -3px;
}
.row.gutter-6>div[class^='col-']{
	padding: 0 3px;
}
.col-1,
.col-md-1-3,
.col-md-1-2,
.col-md-1-4,
.col-md-1-5{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.col-1-3{
	-ms-flex: 0 0 33.333%;
	flex: 0 0 33.333%;
	max-width: 33.333%;
}
.col-1-2{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.col-1-4{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.col-1-5{
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

/*End Grid*/


/*Width*/
.full{
	width: 100%;
}
.full-max{
	max-width: 100%;
}
.w95{
	width: 95%;
}
.two-thirds{
	width: 66.6%;
}
.w60{
	width: 60%;
}
.half{
	width: 50%;
}
.w40{
	width: 40%;
}
.third{
	width: 33.3%;
}
.w30{
	width: 30%;
}
.quarter{
	width: 25%;
}
/*End Width*/

.pm0,
ul,
ol,
ul li,
ol li{
	margin: 0px;
	padding: 0px;
}

/*Paddings*/
.pd0{
	padding: 0 !important;
}
.pt15{
	padding-top: 15px;
}
.pt30{
	padding-top: 30px;
}
.pd10{
	padding: 10px;
}
.pd15{
	padding: 15px;
}
.pd20{
	padding: 20px;
}
.pd30{
	padding: 30px;
}
.pd40{
	padding: 40px;
}
.pd0-10{
	padding:0 10px;
}
.pd0-30{
	padding:0 30px;
}
.pd10-20{
	padding: 10px 20px;
}
.pd15-20{
	padding: 15px 20px;
}
.pd15-30{
	padding: 15px 30px;
}
.pd5-0{
	padding: 5px 0;
}
.pd10-0{
	padding: 10px 0;
}
.pd15-0{
	padding: 15px 0;
}
.pd20-0{
	padding: 20px 0;
}
.pd40-0{
	padding: 40px 0;
}
.pd0-20{
	padding:0 20px;
}
.pd0-25{
	padding:0 25px;
}
.pd0-40{
	padding: 0 40px;
}
.pd0-60{
	padding: 0 60px;
}
.pd0-90{
	padding: 0 90px;
}
.pd30-0{
	padding: 30px 0;
}
.pd30-20{
	padding: 30px 20px;
}
.pd20-30{
	padding: 20px 30px;
}
.pd30-40{
	padding: 30px 40px;
}
.pr20{
	padding-right: 20px;
}
.pr50{
	padding-right: 50px;
}
.pl20{
	padding-left: 20px;
}
.pl25{
	padding-left: 25px;
}
/*End paddings*/


/*Margins*/
.m0{
	margin: 0 !important;
}
.mt0{
	margin-top: 0 !important;
}
.mt3{
	margin-top: 3px !important;
}
.mt5{
	margin-top: 5px !important;
}
.mt10{
	margin-top: 10px !important;
}
.mt15{
	margin-top: 15px !important;
}
.mt20{
	margin-top: 20px !important;
}
.mt30{
	margin-top: 30px !important;
}
.mt40{
	margin-top: 40px !important;
}
.mt50{
	margin-top: 50px !important;
}
.mt60{
	margin-top: 60px !important;
}
.mb0{
	margin-bottom: 0 !important;
}
.mb5{
	margin-bottom: 5px !important;
}
.mb10{
	margin-bottom: 10px !important;
}
.mb12{
	margin-bottom: 12px !important;
}
.mb13{
	margin-bottom: 13px !important;
}
.mb15{
	margin-bottom: 15px !important;
}
.mb20{
	margin-bottom: 20px !important;
}
.mb30{
	margin-bottom: 30px !important;
}
.mb35{
	margin-bottom: 35px !important;
}
.mb40{
	margin-bottom: 40px !important;
}
.mb45{
	margin-bottom: 45px !important;
}
.mb50{
	margin-bottom: 50px !important;
}
.mb60{
	margin-bottom: 60px !important;
}
.mb70{
	margin-bottom: 70px !important;
}
.mb140{
	margin-bottom: 140px !important;
}
.mr5{
	margin-right: 5px;
}
.mr10{
	margin-right: 10px;
}
.mr15{
	margin-right: 15px;
}
.mr20{
	margin-right: 20px;
}
.mr30{
	margin-right: 30px;
}
.mr40{
	margin-right: 40px;
}
.ml5{
	margin-left: 5px;
}
.ml10{
	margin-left: 10px;
}
.ml15{
	margin-left: 15px;
}
.ml20{
	margin-left: 20px;
}
.ml30{
	margin-left: 30px;
}
/*End Margins*/







/*Effects*/
.opacity-hover:hover{
	opacity: .8;
}
.ease-out{
	transition: all .1s ease-out .1s;
}