/***********************************
* BASE
**********************************/ 

/* Form labels */
.contact-form .wpforms-field-label {
	margin-bottom: 5px !important;
}
/* Submit button */
.contact-form button.wpforms-submit {
	width: 100% !important;
	height: 50px !important;
	border-radius: 0px !important;
	color: #ffffff !important;
	background-color: #000000 !important;
	margin-top: 20px !important;
}
/* Submit button hover */
.contact-form button.wpforms-submit:hover {
	color: #ffffff !important;
    background-color: #FE5424 !important;
    transition: 0.2s; !important;
}
/* Form fields - text fields, email fields, phone fields and textarea */
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
	background: transparent !important;
	border: unset !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.125) !important;
	border-radius: unset !important;
	padding-left: 0 !important;
	border-bottom-color: #A3835336 !important;
}
/* Form fields when focused or clicked into */
.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form input[type="tel"]:focus, .contact-form textarea:focus {
	box-shadow: unset !important;
	border-bottom-color: #000000 !important;
}

.contact-form .wpforms-submit-container {
	margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
#wpforms-submit-409 {
width: 100% !important;
}
}
}


/***********************************
* COPY TIP
**********************************/ 
#copytip {
	color: #fff;
	background-color: #161616;
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
	padding: 5px 15px;
	border-radius: 15px;
	opacity: 0;
	transition: all .5s;
}

#copytip.show {
	opacity: 1;
	top: -26px;
}