
input:not(input[type="radio"]):not(input[type="checkbox"]) {
	width: 100%;
}
input:not(input[type="radio"]):not(input[type="checkbox"]), textarea, input:not(input[type="radio"]):not(input[type="checkbox"]):focus {
	border:1px solid #CCC;
	border-radius: 5px;
	background-color: #fff;
}

.content-wrapper input:not(input[type="radio"]):not(input[type="checkbox"]):focus, textarea:focus { 
	border-color:#39AB48;
	box-shadow: 0px 0px 0px 2px #39AB4820;
	border-radius: 5px;
}
input:not(input[type="radio"]):not(input[type="checkbox"]), textarea, button, input:focus, input + label.input-placeholder { 
	padding:5px 15px;
	line-height: 20px;
}
.content-wrapper form input:not(input[type="radio"]):not(input[type="checkbox"]), textarea {
	padding:10px 15px;
}

input[type="search"] + button { 
	padding:5px 5px;
}
.header-search-bar-wrapper {
	position: relative;
}
.header-search-bar-results-wrapper {
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	
	border:1px solid #ccc;
	padding: 5px;
	padding-top: 40px;
	background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0) 40px,rgba(255,255,255,1) 30.001px );
/*	border-radius: 6px;*/
	box-shadow: 0px 6054px 0px 6000px rgba(140,140,140,0.2);
}
input[type="search"]:not(:focus) + button + .header-search-bar-results-wrapper {
	display: none;
}
input[type="search"] {
	background-color: #f6f6f6;
}
input[type="search"] + button {
	/*text-indent:-9999px;*/
	overflow: hidden;
	position: absolute;
	display: block;
	right: 0px;
	top: 0px;
	bottom: 0px;
	min-height: 25px;
	z-index: +1;
	width: 40px;
	background-color:#FF5100;
	color: #fff;
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
}
sup.required {
	font-weight: bold;
	color: #FF5100;
	
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
	
	transform: translateY(-5px);
}
textarea, .file-dropper {
	
}
.file-dropper { 
	background-color: #f6f6f6;

}
textarea {
	border:1px solid #ccc;
}
/*.content-wrapper input.has-placeholder {
	margin-top: 0px;
	transition: 0.1s ease all;
}
.content-wrapper input.has-placeholder:not([value=""]) {
	margin-top: -10px!important;

}*/
input[type="number"] {
    text-align: center; 
    letter-spacing: 5px; 
    max-width: 150px;
}
input::placeholder {
    letter-spacing: 0px!important;
}
input + label.input-placeholder { 
	position: absolute;
	top: 8px;
	margin-top: 5px;
	left: 5px;
	padding:0px 10px;
	user-select: none;	
	cursor: text;
	transition:0.16s ease all;
	line-height: 16px;
	opacity: 0.5;
	font-size: 11px;
	font-weight: bold;
	
}
input:not([value=""]) + label.input-placeholder,
input:focus + label.input-placeholder { 
 	margin-top: -24px;
	margin-top: -16px;
	border-radius: 5px;
	background-color: #39AB48;
	opacity: 1;
	color:#fff;
}
input:not([value=""]):not(:focus) + label.input-placeholder {
	background-color: #999;
}
input:not([value=""]) + label.input-placeholder:after,
input:focus + label.input-placeholder:after {
	content: ':';
}
input[required]   + label.input-placeholder:after {
	content:  ' *';
}
input[required]:not([value=""]) + label.input-placeholder:after,
input[required]:focus + label.input-placeholder:after {
	content:  ' *:';
}
.form-inputs-grid {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	
}
.form-inputs-grid > * {
	margin: 0px;
}

.content-wrapper input.touched:not(input[type="radio"]):not(input[type="checkbox"]):not(:focus):not(:valid), 
.content-wrapper input:not(input[type="radio"]):not(input[type="checkbox"]):not([value=""]):not(:valid) { 
	border-color:#CB0003;
	box-shadow: 0px 0px 0px 2px #CB000320;
	transition-delay: 2s;
}
.content-wrapper input:not([value=""]):not(:valid) + label.input-placeholder { 
	background-color:#CB0003;
	transition-delay: 2s;
}
input, textarea, .file-dropper {
	background-color: #fbfbfb!important;
}

button {
    border-radius: 5px;
    border:none;
    background-color: #FC3E5A;
    color:#fff;
    font-weight: bold;
    text-shadow: none;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 6px;
    text-shadow: 0px 1px 1.5px rgba(0,0,0,0.5);

    box-shadow:inset 0px -2px 0px 0px rgba(0,0,0,0.2), inset 0px 0px 0px 1px rgba(0,0,0,0.05), inset 0px 0.0001px 0px 0px rgba(0,0,0,0.2);
    transition:0.1s ease all;
}
button:hover {
    border-radius: 5px;
    text-shadow: 0px 0px 1.5px rgba(0,0,0,0.5);

    /*box-shadow:0px 0px 0px 2px #FC3E5A;*/
    padding-top: 6px;
    padding-bottom: 5px;
    box-shadow:inset 0px 0.0001px 0px 0px rgba(0,0,0,0.2), inset 0px 0px 0px 1px rgba(0,0,0,0.05), inset 0px 2px 0px 0px rgba(0,0,0,0.2);
}
button:active {
    border-radius: 5px;
    background-color: #6E1119;
}

