//
// Forms
// --------------------------------------------------

textarea:focus, 
textarea.form-control:focus, 
input.form-control:focus, 
input[type=text]:focus, 
input[type=password]:focus, 
input[type=email]:focus, 
input[type=number]:focus, 
[type=text].form-control:focus, 
[type=password].form-control:focus, 
[type=email].form-control:focus, 
[type=tel].form-control:focus, 
[contenteditable].form-control:focus {
    box-shadow: none;
    outline: 0;
}
.form-control {
    border: solid 1px #fff;
    padding: .5rem 1rem;
}   
.form-control:focus, .form-control:active {
        border: solid 1px #fff;
    }
.form-control::placeholder {
    color: #fff;
    text-shadow: none !important;
}
    


//
// Form
// --------------------------------------------------

fieldset {
	margin: 0 0 30px;
	padding: 0;
	border: none;
}
.form-control {
  	outline: none;
  	-webkit-box-shadow: none !important;
 	-moz-box-shadow: none !important;
  	box-shadow: none !important;
}
.form-radio, .form-group {
	position: relative;
	margin-bottom: 30px;
}
.form-radio {
	margin-top: 30px;
}
.form-inline > .form-group, .form-inline > .btn {
	display: inline-block;
	margin-bottom: 0;
}
.form-group textarea {
	resize: none;
}


/* CONTACT FORM */
.form-group {
	position: relative;
	margin-bottom: 30px;
}
.label-before {
	font-size: 17px;
	margin-bottom: 12px;
}
.form-group .control-label {
	pointer-events: none;
	padding: 0;
	z-index: 1;
	color: #fff;
	font-size: 15px;
	font-weight: normal;
	-webkit-transition: all 0.28s ease;
	transition: all 0.28s ease;
}
.form-group.has-label-before .control-label {
	color: #fff;
}
.form-group .bar {
	position: relative;
	border-bottom: 2px solid #afbac3;
	display: block;
}
.form-group .bar::before {
	content: '';
	height: 2px;
	width: 0;
	left: 50%;
	bottom: -2px;
	position: absolute;
	background: #ecb62d;
	-webkit-transition: left 0.28s ease, width 0.28s ease;
	transition: left 0.28s ease, width 0.28s ease;
	z-index: 2;
}

.control-label {
	pointer-events: none;
	padding: 0 7px;
	z-index: 1;
	font-size: 17px;
	font-weight: normal;
	transition: all 0.28s ease;
	color: #fff;
}
input, textarea {
	display: block;
	background: none;
	padding: 12px 7px 10px;
	font-size: 17px;
	border: solid 1px #fff;
	border-bottom: none;
	margin-bottom: -2px;
	line-height: 24px;
	width: 100%;
	color: #fff;
	transition: all 0.28s ease;;
	box-shadow: none;


}
textarea {
	height: 120px;
}

.form-group select:focus ~ .bar::before, .form-group input:focus ~ .bar::before, .form-group textarea:focus ~ .bar::before {
	width: 100%;
	left: 0;
}
.error {
	color: #e67e22;
	font-size: 0.9rem;
}
.error.none {
	display: none;
}
.honig {
	height: 0;
	width: 0;
	overflow: hidden;
}

/* SELECTBOX */
.form-group select {
	width: 100%;
	height: 45px;
	padding: 9px 15px;
	background: none;
	border: solid 1px #fff;
	border-bottom: none;
	border-radius: 0;
	line-height: 28px;
	box-shadow: none;
	-webkit-appearance: none; 
   	-moz-appearance: none;
   	appearance: none;
   	background: #ecb62d;
	background-size: 44px;
}
.form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
.form-group option:not(:checked) {
  	color: black;
}

/* Custon Selectbox */
.custom-selectbox {
  	position: relative;
}
.custom-selectbox select {
  	display: none;
}
.select-selected {
	height: 45px;
	padding: 9px 15px;
	border: solid 1px #fff;
	border-bottom: solid 2px #fff;
	color: #212529;
	background: #fff;
	line-height: 28px;
}
.select-selected:after {
  	position: absolute;
  	content: "";
  	top: 5px;
  	right: 8px;
  	width: 35px;
  	height: 35px;
	background: #ecb62d;
	background-size: auto 16px;
	transform: rotate(90deg);
}
.select-selected.select-arrow-active:after {
  	transform: rotate(-90deg);
}
.select-items div {
  	border: solid 1px #eee;
	border-top: none;
	padding: 9px 15px;
  	cursor: pointer;
	color: #212529;
	background: #fff;
}
.select-items {
  	position: absolute;
  	top: 100%;
  	left: 0;
  	right: 0;
  	z-index: 300;
}
.select-hide {
  	display: none;
}
.select-items div:hover, .same-as-selected {
  	background-color: #f3f6f8;
}
.custom-selectbox +.bar {
	margin-top: -1px;
}

/* Radios & Checkboxes */
.checkbox label, .form-radio label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	text-align: left;
	color: #fff;
	display: block;
}
.checkbox input, .form-radio input {
	width: auto;
	opacity: 0.00000001;
	position: absolute;
	left: 0;
}


/* RADIOS */
.radio {
	margin-bottom: 1rem;
}
.radio .helper {
	position: absolute;
	top: -1px;
	left: -1px;
	cursor: pointer;
	display: block;
	font-size: 1rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #999;
}
.radio .helper::before, .radio .helper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	margin: 2px;
	width: 19px;
	height: 19px;
	-webkit-transition: -webkit-transform 0.28s ease;
	transition: -webkit-transform 0.28s ease;
	transition: transform 0.28s ease;
	transition: transform 0.28s ease, -webkit-transform 0.28s ease;
	border-radius: 50%;
	border: solid 1px #fff;
}
.radio .helper::after {
	-webkit-transform: scale(0);
	transform: scale(0);
	background-color: #ecb62d;
	border-color: #ecb62d;
}
.radio label:hover .helper {
	color: #fff;
}
.radio input:checked ~ .helper::after {
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
	color: #ecb62d;
}


/* CHECKBOX */
.checkbox {
	margin-bottom: 20px;
}
.checkbox .helper {
	color: #fff;
	position: absolute;
	top: 3px;
	left: 2px;
	width: 18px;
	height: 18px;
	z-index: 0;
	border: 1px solid #fff;
	border-radius: 0;
	-webkit-transition: border-color 0.28s ease;
	transition: border-color 0.28s ease;
}
.checkbox .helper::before, .checkbox .helper::after {
	position: absolute;
	height: 0;
	width: 4px;
	background-color: #ecb62d;
	display: block;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	border-radius: 0.25rem;
	content: '';
	-webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
	transition: opacity 0.28s ease, height 0s linear 0.28s;
	opacity: 0;
}
.checkbox .helper::before {
	top: 14px;
	left: 8px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.checkbox .helper::after {
	top: 10px;
	left: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.checkbox label:hover .helper {
	color: #fff;
}
.checkbox input:checked ~ .helper {
	color: #fff;
}
.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
	opacity: 1;
	-webkit-transition: height 0.28s ease;
	transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
	height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
	height: 1.2rem;
	-webkit-transition-delay: 0.28s;
	transition-delay: 0.28s;
}
.radio + .radio, .checkbox + .checkbox {
	margin-top: 1rem;
}

// Responsive
// --------------------------------------------------
@import "responsive/form-sm";