/*-----------------------------------------*/
/*                BUTTON STARTS            */
/*-----------------------------------------*/
.btn {
	box-shadow: 0px 3px 6px #6463634D;
	border-radius: 5px;
	font-size: 18px;
	line-height: 1.35;
	font-family: 'Source-Sans-Pro-Bold';
	padding: 10px 20px;
	color: #fff;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.btn.no-shadow {
	box-shadow: none;
}
.btn.btn-transparent {
	background: none !important;
	font-size: 18px !important;
	color: #0C1446;
	padding-left: 0;
	padding-right: 0;
}
.btn.btn-transparent:hover {
	color: #AE763F;
}
.btn.btn-transparent:hover .btn-line {
	background: #AE763F;
}
.btn.btn-transparent.orange {
	color: #AE763F;
}
.btn.btn-transparent.orange:hover {
	color: #fff;
}
.btn.btn-transparent.orange:hover .btn-line {
	background: #fff;
}
.btn.btn-transparent.lg {
	font-size: 24px !important;
}
.btn-line {
	height: 2px;
	background-color: #0C1446;
	width: 30px;
	display: inline-block;
	margin-right: 5px;
}
.orange .btn-line {
	background-color: #AE763F;
}
.btn-dark {
	background-color: #0C1446;
	border-color: #0C1446;
}
.btn-dark:not(:disabled):hover,
.btn-dark:not(:disabled):focus {
	background-color: #AE763F;
	border-color: #AE763F;
	color: #fff;
}
.btn-warning {
	background-color: #AE763F;
	border-color: #AE763F;
}
.btn-warning:not(:disabled):hover,
.btn-warning:not(:disabled):focus {
	background-color: #29292B;
	border-color: #29292B;
	color: #fff;
}
.btn-brown {
	border-color: #AE763F;
	background-color: #AE763F;
}
.btn-brown:not(:disabled):hover,
.btn-brown:not(:disabled):focus {
	background-color: #0C1446;
	border-color: #fff;
	color: #fff;
}
.btn-warning.white-border-hover:not(:disabled):hover,
.btn-warning.white-border-hover:not(:disabled):focus {
	background: none;
	border-color: #fff;
	color: #fff;
}
@media(max-width: 767px) {
	.btn.btn-transparent.lg {
		font-size: 18px !important;
	}
}
/*-----------------------------------------*/
/*                BUTTON ENDS              */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*           FORM CONTROL STARTS           */
/*-----------------------------------------*/
.form-group {
	margin-bottom: 20px;
}
.form-group.sm {
	margin-bottom: 10px;
}
.form-control {
	font-family: 'Montserrat-Medium';
	font-size: 16px;
	border: 1px solid #8C9CB0;
	padding: 10px 16px;
    line-height: 26px;
    color: #363C3E;
}
.form-control:focus {
	border-color: #AE763F !important;
	color: #363C3E;
	box-shadow: 0px 0 5px 5px rgba(255, 165, 0, 0.15);
}
.form-control.color-grey:focus {
	color: #8C9CB0;
}
.form-group.has-error .form-control {
	border-color: #f00 !important;
}
.form-group.has-error .form-control:focus {
	box-shadow: 0px 0 5px 5px rgba(255, 0, 0, 0.1);
}
.form-control.bottom-bordered {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #8C9CB0;
	padding: 0;
	font-size: 16px !important;
	line-height: 26px !important;
}
.form-control.bottom-bordered:focus {
	box-shadow: none !important;
}
.form-control::placeholder {
	color: rgba(56, 71, 93, 0.4);
}
textarea.form-control {
	height: 75px;
}
textarea.no-resize {
	resize: none;
}
.control-label {
	font-family: 'Montserrat-Bold';
	font-size: 16px;
	margin: 5px 0;
}
.control-label-for-bordered-control {
	margin: 2px 0;
	line-height: 1.45;
}
.input-container {
	position: relative;
}
.input-container label.error {
	color: #f00;
	margin: 0;
	position: absolute;
	bottom: -20px;
	line-height: 20px;
	font-size: 14px;
	font-family: 'Montserrat-Medium';
	z-index: 1;
}
@media(max-width: 1199px) {
	textarea.form-control {
		height: 125px;
	}
}
@media(max-width: 991px) {
	textarea.form-control {
		height: 115px;
	}
}
@media(max-width: 767px) {
	textarea.form-control {
		height: 105px;
	}
}
/*-----------------------------------------*/
/*           FORM CONTROL ENDS             */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*          GREEK -EL  LANGUAGE CSS STRAT   */
/*-----------------------------------------*/
.el .form-control {
	font-family: 'Roboto-Medium'!important;
}
.el .control-label {
	font-family: 'Roboto-Bold'!important;
}
.el .input-container label.error {
	font-family: 'Roboto-Medium'!important;
}
.el .btn.btn-transparent {
	font-family: 'Roboto-Bold'!important;
}
.el .btn {
	font-family: 'Roboto-Bold'!important;
}
/*-----------------------------------------*/
/*          GREEK -EL  LANGUAGE CSS END   */
/*-----------------------------------------*/