/*-----------------------------------------*/
/*        CONTROL LABEL START              */
/*-----------------------------------------*/
.form-group .control-label {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 0;
    color: #555;
}
.control-label .text-danger {
	color: #f00;
	font-weight: bold;
}
.control-label-desc {
	font-family: 'times-it';
	display: block;
	color: #999;
	line-height: 1.3;
	margin-bottom: 5px;
}
@media(max-width: 991px) {
	.form-group .control-label {
	    font-size: 13px;
	}
}
@media(max-width: 767px) {
	.form-group .control-label {
	    font-size: 12px;
	}
}
/*-----------------------------------------*/
/*        CONTROL LABEL END                */
/*-----------------------------------------*/



/*-----------------------------------------*/
/*        FORM GROUP START                 */
/*-----------------------------------------*/
.form-group {
	margin-bottom: 20px;
}
.form-group.has-error {
	margin-bottom: 0;
}
.input-container {
	position: relative;
}
.form-group label.error {
	min-height: 15px;
	width: 100%;
	color: #f00;
	font-size: 12px;
	margin-bottom: 2px;
	display: block;
	font-family: 'Metropolis-light';
}
@media(max-width: 1199px) {
	.form-group {
		margin-bottom: 17px;
	}
	.form-group label.error {
		min-height: 17px;
		font-size: 10px;
		margin-bottom: 0;
		line-height: 17px;
	}
}
@media(max-width: 991px) {
	.form-group {
		margin-bottom: 15px;
	}
	.form-group label.error {
		min-height: 15px;
		font-size: 10px;
		margin-bottom: 0;
		line-height: 15px;
	}
}
@media(max-width: 767px) {
	.form-group {
		margin-bottom: 13px;
	}
	.form-group label.error {
		min-height: 13px;
		font-size: 9px;
		line-height: 13px;
	}
}
/*-----------------------------------------*/
/*        FORM GROUP END                   */
/*-----------------------------------------*/



/*-----------------------------------------*/
/*        BUTTON START                     */
/*-----------------------------------------*/
.btn {
	padding: 10px 15px;
	font-size: 13px;
	font-family: 'Metropolis-semibold';
	text-decoration: none !important;
}
.btn-sm {
	padding: 5px 10px;
}
.btn:focus {
	outline: none !important;
	box-shadow: none !important;
}
.btn-outline-primary {
	border-color: #41ABAC;
	color: #41ABAC;
}
.btn-outline-primary:not(:disabled):not(.disabled):hover,
.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
	background-color: #41ABAC;
	border-color: #41ABAC;
	color: #fff !important;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	background-color: #ddd;
	border-color: #41ABAC;
	color: #41ABAC;
}
.btn-primary {
	background-color: #41ABAC;
	border-color: #41ABAC;
}
.btn-primary:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled):focus,
.btn-primary:not(:disabled):not(.disabled):active {
	background-color: transparent;
	border-color: #41ABAC;
	color: #41ABAC !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
	background-color: #83cfd0;
	border-color: #83cfd0;
	color: #fff;
}
.btn-secondary {
	background-color: #2D2D2D;
	border-color: #2D2D2D;
	color: #fff;
}
.btn-secondary:not(:disabled):not(.disabled):hover,
.btn-secondary:not(:disabled):not(.disabled):focus,
.btn-secondary:not(:disabled):not(.disabled):active {
	background-color: transparent;
	border-color: #2D2D2D;
	color: #2D2D2D !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
	background-color: #606060;
	border-color: #606060;
	color: #fff;
}
.btn .icon + .btn-label,
.btn .btn-label + .icon {
	margin-left: 5px;
}
@media(max-width: 991px) {
	.btn {
		padding: 7px 12px;
		font-size: 12px;
	}
	.btn-sm {
		padding: 3px 8px;
	}
	.btn .icon + .btn-label,
	.btn .btn-label + .icon {
		margin-left: 3px;
	}
}
@media(max-width: 767px) {
	.btn {
		padding: 5px 10px;
		font-size: 11px;
	}
	.btn-sm {
		padding: 2px 5px;
	}
	.btn .icon + .btn-label,
	.btn .btn-label + .icon {
		margin-left: 2px;
	}
}
/*-----------------------------------------*/
/*        BUTTON END                       */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*        TEXTBOX START                    */
/*-----------------------------------------*/
.form-control {
	border: 1px solid #b1b4af;
	color: #555;
	box-shadow: none;
	border-radius: 5px;
}
.form-control:focus {
    border-color: #41ABAC;
    -webkit-box-shadow: 0 0 6px rgba(65, 171, 172, .4);
    box-shadow: 0 0 6px rgba(65, 171, 172, .4);
}
.has-error .form-control {
	border: 1px solid #f00;
	box-shadow: none;
}
@media(max-width: 991px) {
	.form-control {
		font-size: 14px;
		padding: 5px 10px;
	}
	.form-control:focus {
	    -webkit-box-shadow: 0 0 5px rgba(65, 171, 172, .4);
	    box-shadow: 0 0 5px rgba(65, 171, 172, .4);
	}
}
@media(max-width: 767px) {
	.form-control {
		font-size: 13px;
		padding: 4px 8px;
	}
	.form-control:focus {
	    -webkit-box-shadow: 0 0 4px rgba(65, 171, 172, .4);
	    box-shadow: 0 0 4px rgba(65, 171, 172, .4);
	}
}
/*-----------------------------------------*/
/*        TEXTBOX END                      */
/*-----------------------------------------*/



/*-----------------------------------------*/
/*        TEXTAREA START                   */
/*-----------------------------------------*/
textarea.form-control {
	min-height: 100px;
}
textarea.no-resize {
	resize: none;
}
textarea.twoElementsHeight {
	height: 117px;
}
@media(max-width: 991px) {
	textarea.form-control {
		min-height: 80px;
	}
}
@media(max-width: 767px) {
	textarea.form-control {
		min-height: 70px;
	}
}
/*-----------------------------------------*/
/*        TEXTAREA END                     */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*        RADIO CHECKBBOX START            */
/*-----------------------------------------*/
.radio-checkobx-container {
	border: 1px solid #b1b4af;
	padding: 5px;
	border-radius: 5px;
}
.radio-checkobx-container .row {
	margin: 0;
}
.radio-checkobx-container .col {
	padding: 0;
}
.has-error .radio-checkobx-container {
	border-color: #f00;
}
.radio-checkbox-box {
	float: left;
	padding: 0;
}
.radio-checkbox-box.widthauto {
	width: auto !important;
}
.radio-checkbox-box input {
	display: none;
}
.radio-checkbox-box input ~ .lbl {
	font-weight: normal;
	cursor: pointer;
	margin: 3px;
	position: relative;
	color: #555;
	display: block;
	font-size: 14px;
	line-height: 20px;
	min-width: 20px;
	padding-left: 30px;
	margin-right: 20px;
}
.radio-checkbox-box input ~ .lbl span {
	color: #555;
  	cursor: pointer;
  	display: block;
  	background-color: #fff;
  	border: 2px solid #b1b4af;
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 20px;
  	width: 20px;
}
.radio-checkbox-box input:disabled ~ .lbl span {
	opacity: 0.5;
	cursor: not-allowed;
}
.radio-checkbox-box input:disabled ~ .lbl {
	cursor: not-allowed;
}
.radio-checkbox-box input[type="radio"] ~ .lbl span {
	border-radius: 50%;
}
.radio-checkbox-box input[type="checkbox"] ~ .lbl span {
	border-radius: 0px;
}
.radio-checkbox-box input[type="radio"]:checked ~ .lbl span::before {
  	content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b1b4af;
    left: 3px;
    top: 3px;
}
.radio-checkbox-box input[type="checkbox"]:checked ~ .lbl span::before {
  	content: "\f00c";
  	color: #fff;
  	background: #b1b4af;
  	font-family: fontawesome;
  	text-align: center;
    position: absolute;
    left: -1px;
    top: 0;
    width: 17px;
    height: 16px;
    font-size: 13px;
  	line-height: 16px;
}
@media(max-width: 991px) {
	.radio-checkobx-container {
		padding: 4px;
		padding-bottom: 3px;
	}
	.radio-checkbox-box input ~ .lbl {
		font-size: 13px;
		line-height: 18px;
		min-width: 18px;
		padding-left: 25px;
		margin-right: 12px;
	}
	.radio-checkbox-box input ~ .lbl span {
	  	top: -1px;
	  	height: 18px;
	  	width: 18px;
	}
	.radio-checkbox-box input[type="radio"]:checked ~ .lbl span::before {
	    left: 2px;
	    top: 2px;
	}
	.radio-checkbox-box input[type="checkbox"]:checked ~ .lbl span::before {
	    left: -1px;
	    top: 0;
	    width: 15px;
	    height: 14px;
	    font-size: 12px;
	  	line-height: 14px;
	}
}
@media(max-width: 767px) {
	.radio-checkobx-container {
		padding: 2px;
		padding-bottom: 1px;
	}
	.radio-checkbox-box input ~ .lbl {
		font-size: 12px;
	}
}
/*-----------------------------------------*/
/*        RADIO CHECKBBOX END              */
/*-----------------------------------------*/



/*-----------------------------------------*/
/*        DATEPICKER START                 */
/*-----------------------------------------*/
.datepickerinput[readonly] {
	background: none;
}
.datepicker {
	font-family: 'Metropolis-regular';
	font-size: 14px;
}
.datepicker td,
.datepicker th {
	width: 25px;
	height: 25px;
}
/*.datepicker .icon-arrow-left,
.datepicker .icon-arrow-right {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.datepicker .icon-arrow-left::before {
	content: "\f053";
}
.datepicker .icon-arrow-right::before {
	content: "\f054";
}*/
.datepicker th {
	font-weight: normal;
	font-family: 'Metropolis-bold';
}
.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: #41ABAC;
	text-shadow: none;
}
/*-----------------------------------------*/
/*        DATEPICKER END                   */
/*-----------------------------------------*/