
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	
	font-size: 14px;
	color: #4A4A4A;
	background-color: #FFF;
	padding: 0px;
	margin: 0px;
	line-height: 24px;
	overflow-x:hidden;
	
}

.wrappper {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* General Styles */

a:hover {
	text-decoration: none;
}

a:focus {
    outline: none;
    outline-offset: 0;
}

a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}

button, a {
	cursor: pointer;
	-webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
}

.equal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.equal > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.nowrap {
	white-space: nowrap;
}

.content  {
	padding: 60px;
	position: relative;
	z-index: 9;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="checkbox"]:focus,
.form-control:focus {   
	border-color: #25AAE1;
	box-shadow: none;
	outline: 0 none;
}

.form-control {
	background:rgba(255, 255, 255, .8);
	border: 1px solid #E1E1E1;
	height: 40px;
	border-radius: 5px;
	padding: 5px 10px;
	box-shadow: none;
}
.form-control::placeholder {
	color:#4A4A4A;
	}

.form-group {
	margin-bottom: 30px;
	position:relative;
	margin-top: 10px;
}

.bottom-border-input {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #979797;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
	font-size: 16px;
}

.form-group.custom-group label {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    color: #4A4A4A;
}

.custom-textarea-white {
	background: #fff;
	border: 1px solid #E1E1E1;
	height: 105px !important;
	border-radius: 0px;
	padding: 10px 10px;
	font-size: 14px;
}

.datepicker {
	border-radius: 0px;
	z-index:3
}

.datepicker-icon {
	position: relative;
}

.datepicker-icon:after {
	position: absolute;
	content: "";
    right: 2px;
    top: 12px;
	background-image: url(../images/calendar.svg);
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
z-index:-1;
}

label {
	font-size: 14px;
	font-weight: 400;
}

.animation-form {
	width:100%;
	margin: 0;
}

.animation-label { 
	position: relative; 
	margin-bottom: 30px; 
	margin-top: 20px;
	z-index:100;
}

.animation-input, .animation-select {
	font-size:14px;
	padding:4px 0px;
	display:block;
    margin-top: 0;
	width:100%;
	height: 40px;
	background-color: transparent;
	border:none;
	border-bottom:1px solid #979797;
}

.animation-input:focus , .animation-select:focus {
	outline: none;
	border-bottom: 1px solid #25AAE1; 
}

.animation-form label.animation-lab {
	color: #4A4A4A; 
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0px;
	top: 15px;
	transition: 0.2s ease all; 
	-moz-transition: 0.2s ease all; 
	-webkit-transition: 0.2s ease all;
}

.animation-form .select-label {
	color: #4A4A4A; 
	font-size: 14px !important;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 15px;
	transition: 0.2s ease all; 
	-moz-transition: 0.2s ease all; 
	-webkit-transition: 0.2s ease all;
}

.animation-input:focus ~ label, .animation-input:not(:placeholder-shown) ~ label {
	top: -20px;
	font-size: 14px;
	color: #4A4A4A;
}

.animation-select:focus ~ label , .animation-select:not([value=""]):valid ~ label {
	top: -20px;
	font-size: 14px;
	color: #4A4A4A;
}

/* active state */
.animation-input:focus ~ .bar:before, .animation-input:focus ~ .bar:after, .animation-select:focus ~ .bar:before, .animation-select:focus ~ .bar:after {
	width:50%;
}

.animation-textarea {
	min-height: 30px;
	max-height: 260px; 
	overflow:hidden;
	overflow-x: hidden; 
}

.animation-form .highlight {
	position:absolute;
	height:50%; 
	width:100%; 
	top:15%; 
	left:0;
	pointer-events:none;
	opacity:0.5;
}

.animation-input:focus ~ .highlight , .animation-select:focus ~ .highlight {
	-webkit-animation:inputHighlighter 0.3s ease;
	-moz-animation:inputHighlighter 0.3s ease;
	animation:inputHighlighter 0.3s ease;
}


/* animation */
/*
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
*/

.select-style {
    width: 100%;
	position: relative;
}

.select-style select {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-style:after {
    position: absolute;
    content: "";
    right: 5px;
    top: 18px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 4px solid #9E9D9D;
}
/** Table Styles **/

.table-responsive {
	border-top: 1px solid #979797;
}

.table {
	margin: 0;
	font-size: 10px;
	font-weight:500;
}

.payment-table .table {
    font-size: 12px;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #979797;
}

th {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    background-color: #EFEFEF;
}

.table .edit-table {
    display: inline-block;
    padding: 3px 4px;
}

.table .delete-table {
    display: inline-block;
    padding: 3px 4px;
}

.table .blue {
	background-color: #25AAE1;
}

.table .table-absolute {
    position: absolute;
    background-color: transparent;
    border: none;
    right: 30px;
}

.table strong {
	font-size: 10px;
}

.no-border {
    border: none !important;
}

.white-border {
    border-color: #fff !important;
}

.tab-footer {
    float: right;
    padding: 20px 0 0;
}

.table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th {
    border-top: 0;
    vertical-align: middle;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #979797;
    vertical-align: middle;
}

.borderless table {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

table.table.borderless.project-table th {
    background-color: transparent;
    border: none;
}

.table-responsive.project-responsive {
    border: none;
}

.table-responsive.project-responsive .table.borderless.project-table tr th {
    border: none;
    text-align: center;
    font-size: 18px;
    color: #4A4A4A;
    letter-spacing: -0.01px;
    font-weight: 600;
	padding: 20px 8px;
}

.table-responsive.project-responsive .table.borderless.project-table tr td {
    border: none;
    text-align: center;
    font-size: 18px;
    color: #4A4A4A;
    letter-spacing: -0.01px;
    font-weight: 500;
	padding: 20px 8px;
}

/** DatePicker **/

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
	background-color: #25AAE1;
    background-image: none;
    border-radius: 0;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
    background-color: #25AAE1 !important;
}

/** Button Styles **/

.btn-blue {
	border-radius: 0px;
	width: 100%;
	height: 60px;
	color: #fff;
	font-size: 18px;
	background-color: #25AAE1;
	border: none;
}

.btn-blue:hover {
	background-color: #000;
	color: #fff;
}

.btn-gray {
    border-radius: 0px;
    width: 100%;
    height: 60px;
    color: #4A4A4A;
    font-size: 18px;
    background-color: #F6F6F6;
    border: none;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    padding: 18px 12px;
}

.btn-gray:hover {
	background-color: #4A4A4A;
	color: #fff;
}

.btn-gray-half {
    border-radius: 0px;
    height: 50px;
    color: #4A4A4A;
    font-size: 18px;
    background-color: #D8D8D8;
    border: none;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    padding: 14px 18px;
}

.btn-gray-half:hover {
	background-color: #4A4A4A;
	color: #fff;
}

.btn-blue-half {
    border-radius: 0px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    background-color: #25AAE1;
    border: none;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    padding: 14px 18px;
}

.btn-blue-half:hover {
	background-color: #4A4A4A;
	color: #fff;
}


.back-project {
    display: inline-block;
    font-size: 24px;
    color: #4A4A4A;
}

.back-project img {
    display: inline-block;
    margin-right: 30px;
}

.more-item {
    display: inline-block;
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid #E3E3E3;
    font-size: 12px;
    font-weight: 600;
    color: #4A4A4A;
    text-align: center;
    padding: 9.5px 10px;
}

.more-item:hover {
	background-color: #4A4A4A;
	color: #fff;
}

.btn-footer-blue {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.01px;
    background-color: #25AAE1;
    border: none;
    border-radius: 0;
    padding: 14px 7px;
}

.btn-footer-blue:hover {
	background-color: #4A4A4A;
	color: #fff;
}

.btn-footer-gray {
    font-size: 18px;
    font-weight: 400;
    color: #4A4A4A;
    letter-spacing: 0.01px;
    background-color: #D8D8D8;
    border: none;
    border-radius: 0;
    padding: 14px 7px;
}

.btn-footer-gray:hover {
	background-color: #4A4A4A;
	color: #fff;
}


.btn-blue-round {
    display: inline-block;
    background-color: #25AAE1;
    border: none;
    padding: 15px 3px;
    border-radius: 25px;
    margin: 40px 0 0;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.01px;
}

.btn-blue-round:hover {
	background-color: #4A4A4A;
	color: #fff;
}


/* Width styles */

.w-150 {
	width: 150px;
}

.w-200 {
	width: 200px;
}

.w-240 {
	width: 240px;
}

.w-375 {
	width: 375px;
}

/* Text Styles */

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0;
}

.extra {
	font-size: 14px !important;
}

.black {
	color: #000;
}

.white {
	color: #fff;
}

.font-8 {
    font-size: 8px;
}

.font-9 {
    font-size: 9px;
}

.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px !important;
}

.font-12 {
    font-size: 10px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-17 {
    font-size: 17px;
}

.font-18 {
    font-size: 18px;
}

.font-19 {
    font-size: 19px;
}

.font-20 {
    font-size: 20px;
}

.font-21 {
    font-size: 21px;
}

.font-22 {
    font-size: 22px;
}

.font-23 {
    font-size: 23px;
}

.font-24 {
    font-size: 24px;
}

.font-25 {
    font-size: 25px;
}

/** Margins **/

.mar-right-10 {
	margin-right: 10px;
}

.mar-right-18 {
	margin-right: 18px;
}

.mar-right-21 {
	margin-right: 21px;
}

.mar-right-25 {
	margin-right: 25px;
}

.mar-right-30 {
	margin-right: 30px;
}

.no-margin {
	margin: 0px;
}

.mar-top-5 {
	margin-top:5px;
}

.mar-top-10 {
	margin-top:10px;
}

.mar-top-15 {
	margin-top:15px;
}

.mar-top-20 {
	margin-top:20px;
}

.mar-top-25 {
	margin-top:25px;
}

.mar-top-30 {
	margin-top:30px;
}

.mar-top-35 {
	margin-top:35px;
}

.mar-top-40 {
	margin-top:40px;
}

.mar-top-45 {
	margin-top:45px;
}

.mar-top-50 {
	margin-top:50px;
}

.mar-top-55 {
	margin-top:55px;
}

.mar-top-60 {
	margin-top:60px;
}

.mar-top-70 {
	margin-top:70px;
}

.mar-top-80 {
	margin-top:80px;
}

.mar-top-90 {
	margin-top:90px;
}

.mar-top-100 {
	margin-top:100px;
}

.mar-top-120 {
	margin-top:120px;
}

.mar-top-200 {
	margin-top:200px;
}

.mar-btm-5 {
	margin-bottom:5px;
}

.mar-btm-10 {
	margin-bottom:10px;
}

.mar-btm-15 {
	margin-bottom:15px;
}

.mar-btm-20 {
	margin-bottom:20px;
}

.mar-btm-25 {
	margin-bottom:25px;
}

.mar-btm-30 {
	margin-bottom:30px;
}

.mar-btm-35 {
	margin-bottom:35px;
}

.mar-btm-40 {
	margin-bottom:40px;
}

.mar-btm-45 {
	margin-bottom:45px;
}

.mar-btm-50 {
	margin-bottom:50px;
}

.mar-btm-55 {
	margin-bottom:55px;
}

.mar-btm-60 {
	margin-bottom:60px;
}

.mar-btm-70 {
	margin-bottom:70px;
}

.mar-btm-80 {
	margin-bottom:80px;
}

.mar-btm-90 {
	margin-bottom:90px;
}

.mar-btm-100 {
	margin-bottom:100px;
}

.mar-btm-200 {
	margin-bottom:200px;
}


/** Paddings **/

.no-padding {
	padding: 0px;
}

.pad-top-5 {
	padding-top:5px;
}

.pad-top-10 {
	padding-top:10px;
}

.pad-top-15 {
	padding-top:15px;
}

.pad-top-20 {
	padding-top:20px;
}

.pad-top-25 {
	padding-top:25px;
}

.pad-top-30 {
	padding-top:30px;
}

.pad-top-35 {
	padding-top:35px;
}

.pad-top-40 {
	padding-top:40px;
}

.pad-top-45 {
	padding-top:45px;
}

.pad-top-50 {
	padding-top:50px;
}

.pad-top-55 {
	padding-top:55px;
}

.pad-top-60 {
	padding-top:60px;
}

.pad-top-70 {
	padding-top:70px;
}

.pad-top-80 {
	padding-top:80px;
}

.pad-top-90 {
	padding-top:90px;
}

.pad-top-100 {
	padding-top:100px;
}

.pad-top-120 {
	padding-top:120px;
}

.pad-top-200 {
	padding-top:200px;
}

.pad-btm-5 {
	padding-bottom:5px;
}

.pad-btm-10 {
	padding-bottom:10px;
}

.pad-btm-15 {
	padding-bottom:15px;
}

.pad-btm-20 {
	padding-bottom:20px;
}

.pad-btm-25 {
	padding-bottom:25px;
}

.pad-btm-30 {
	padding-bottom:30px;
}

.pad-btm-35 {
	padding-bottom:35px;
}

.pad-btm-40 {
	padding-bottom:40px;
}

.pad-btm-45 {
	padding-bottom:45px;
}

.pad-btm-50 {
	padding-bottom:50px;
}

.pad-btm-55 {
	padding-bottom:55px;
}

.pad-btm-60 {
	padding-bottom:60px;
}

.pad-btm-70 {
	padding-bottom:70px;
}

.pad-btm-80 {
	padding-bottom:80px;
}

.pad-btm-90 {
	padding-bottom:90px;
}

.pad-btm-100 {
	padding-bottom:100px;
}

.pad-btm-200 {
	padding-bottom:200px;
}

#back-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9999;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 30px;
	background: #333;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	opacity: 0;
}
#back-to-top:hover {
	background: #000;
	color: #fff;
}
#back-to-top.show {
	opacity: 1;
}


.team-selector-showhide {
    display: none;
    margin-bottom: 40px;
}