/* ---------------------------------------------------
    FORM CSS
    
    BRAVE BOYS - PROTOPAGE - HALYARD DISPLAY
----------------------------------------------------- */


/* ---------------------------------------------------
  	FORM
----------------------------------------------------- */

label {
	color: #000743;
	font-size: .9em;
	font-weight: 400;
	letter-spacing: -.0125em;
}
.radio label {
	color: #333;
	font-size: .95em;
	font-weight: 400;
	letter-spacing: .0125em;
}
.checkbox label {
	color: #333;
	font-size: .95em;
	font-weight: 400;
	letter-spacing: .0125em;
}

form label {
	color: #111;
	font-size: .9em;
	font-weight: 400;
	letter-spacing: -.0125em;
	font-family: 'Eina 01', Arial, sans-serif;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
	opacity: .5;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

form .radio label {
	color: #333;
	font-size: .95em;
	font-weight: 400;
	letter-spacing: .0125em;
}
form .checkbox label {
	color: #333;
	font-size: .95em;
	font-weight: 400;
	letter-spacing: .0125em;
}

form input {
	background-color: #fff !important;
	border: 1.5px solid #ccc !important;
	border-radius: .25rem !important;
	color: #111 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
	height: calc(1.5em + .75rem + 5px);
	letter-spacing: .0125em;
	padding: .75rem .75rem .55rem .75rem !important;
	white-space: nowrap;
}
form input:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155,155,155,.25) !important;
	color: #222;
	font-size: 1em;
	font-weight: 400;
	outline: 0;
}

form input::placeholder {
	color: #222;	
}


.fv-help-block {
	color: #ff6c0e;
	font-size: .95em;
	font-weight: 300;
	letter-spacing: .0125em;
	margin-top: 4px;
}


form .form-control::placeholder {
	color: #555 !important;
	opacity: 1;
}

textarea.form-control {
	min-height: calc(8em + .75rem + 2px);
}

form textarea {
	background-color: #fff !important;
	border: 1.5px solid #ccc !important;
	border-radius: .25rem !important;
	color: #111 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
	height: calc(1.5em + .75rem + 5px);
	letter-spacing: .0125em;
	padding: 1.25rem .75rem .55rem .75rem !important;
}
form textarea:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155,155,155,.25) !important;
	color: #222;
	font-size: 1em;
	font-weight: 400;
	outline: 0;
}


/* ---------------------------------------------------
  	FLOATING LABELS
----------------------------------------------------- */

.form-floating > label {
	position: absolute;
	top: 0;
	left: 12px;
	height: 100%;
	padding: .55rem .75rem .5rem .75rem;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}


/* ---------------------------------------------------
  	SELECT
----------------------------------------------------- */

select.form-select {
	background-color: #fff !important;
	border: 1.5px solid #ccc !important;
	border-radius: .25rem !important;
	color: #111 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: .9em;
	height: calc(3rem + 4px);
	letter-spacing: .0125em;
	padding: .65rem .55rem .65rem .55rem !important;
	white-space: nowrap;
}
select.form-select:focus {
	background-color: #fff;
	border-color: #222 !important;
	box-shadow: 0 0 0 .2rem rgba(155,155,155,.25) !important;
	color: #222;
	outline: 0;
}


/* ---------------------------------------------------
  	DROPDOWN MENU
----------------------------------------------------- */

.btn-check:focus + .btn, .btn:focus {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(0,0,0,.25);
}

form .btn-default {
	background-color: #fff !important;
	border: 1.5px solid #ccc !important;
	border-radius: .25rem !important;
	color: #222 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: .9em;
	height: calc(1.5em + 1rem + 5px);
	letter-spacing: 0;
	padding: .45rem .95rem;
	/* text-transform: uppercase; */
	white-space: nowrap;
}
form .bootstrap-select > .dropdown-toggle {
	padding-right: 20px !important;
}
form .dropdown-menu > li > a:hover {
	background-color: #ddd;
	color: #222;
	font-size: .9em;
}
form .dropdown-menu {
	border: 0.1rem solid #ccc;
	border-radius: .25rem !important;
}
form .dropdown-menu ul {
	border-radius: .0 !important;
}
form .dropdown-toggle::after {
	margin-left: .5em;
	vertical-align: 0.55em;
}
.open > .dropdown-menu {
    display: block;
}
form .dropdown-menu > li > a {
	color: #222 !important;
	clear: both;
	display: block;
	font-size: .9em;
	font-weight: 600 !important;
	letter-spacing: .0125em;
	line-height: 1.42857143;
	outline: none;
	padding: 3px 20px;
	white-space: nowrap;
}

/* ---------------------------------------------------
   	DROPBOX
----------------------------------------------------- */

.dropbox {
	border: .125rem dashed #0064fe;
	cursor: pointer;
	min-height: 250px;
	transition: .2s ease-in-out all;
}
.dropbox:hover {
	border: .125rem dashed #ffe41d;
}


