/* screens: desktops + laptops */


/* form */
.form_column {
	flex-direction: column;
}

.form_row {
	flex-direction: row;
}

.form_width {
	width: calc(100% - 0rem);
}

.form_width_large {
	width: calc(75% - 0rem);
}

.form_width_medium {
	width: calc(50% - 0rem);
}

.form_label {
	color: var(--form-label);
	font-size: 0.75em;
	font-weight: 300;
}

::placeholder {
	opacity: 1;
	color: var(--form-hint);
}

:-ms-input-placeholder {
	color: var(--form-hint);
}

::-ms-input-placeholder {
	color: var(--form-hint);
}

.form_input_name {
	width: calc(100% - 2rem);
	margin: 0;
  	padding: 0.5rem 1rem 0.5rem;
  	background-color: var(--form-input);
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
	border-bottom-style: solid;
	border-bottom-width: 0.2rem;
 	border-bottom-color: var(--form-input);
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
}

.form_input_email {
	width: calc(100% - 2rem);
	margin: 0;
  	padding: 0.5rem 1rem;
  	background-color: var(--form-input);
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
 	border-bottom-style: solid; 
 	border-bottom-width: 0.2rem; 
 	border-bottom-color: var(--form-input); 
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
}

.form_input_phone {
	width: calc(100% - 2rem);
	margin: 0;
  	padding: 0.5rem 1rem;
	background-color: var(--form-input);
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
 	border-bottom-style: solid; 
 	border-bottom-width: 0.2rem; 
 	border-bottom-color: var(--form-input); 
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
}

.form_select_form_contact_methods {
	width: calc(100% - 0rem);
	height: calc(4rem - 1rem);
	margin: 0;
  	padding: 0.5rem 1rem;
  	background-color: var(--form-input);
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
  	border-bottom-style: solid; 
	border-bottom-width: 0.2rem; 
 	border-bottom-color: var(--form-input); 
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
}

.form_select_reason {
	width: calc(100% - 0rem);
	height: calc(4rem - 1rem);
	margin: 0;
  	padding: 0.5rem 1rem;
  	background-color: var(--form-input);
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
 	border-bottom-style: solid; 
 	border-bottom-width: 0.2rem;
 	border-bottom-color: var(--form-input); 
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
}

.form_textarea_message {
	width: calc(100% - 2rem);
	margin: 0;
  	padding: 0.5rem 1rem;
  	background-color: var(--form-input);
  	outline: 0;
  	border: 0;
	border-top-style: none; 
  	border-left-style: none;
  	border-right-style: none; 
  	border-bottom-style: solid; 
	border-bottom-width: 0.2rem; 
 	border-bottom-color: var(--form-input); 
 	border-radius: 0.3rem;
  	font-size: 0.875em;
	text-decoration: none;
	resize: none;
}

.form_input_button {
	margin: 1rem 0 0;
	padding: 0.5rem 2rem;
	background-color: var(--button-one-bg);
	border: 0;
	border-radius: 0.3rem;
	color: var(--button-one-font);
	font-size: 1em;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

.form_input_button:hover,
.form_input_button:focus {
	background-color: var(--button-one-bg-hover);
	color: var(--button-one-font-hover);
}

.form_notification_a {
	margin: 1rem 0 0 2rem;
	display: flex;
	align-items: center;
	color: var(--text-success);
}

.form_notification_f {
	margin: 1rem 0 0 2rem;
	display: flex;
	align-items: center;
	color: var(--text-error);
}

#form-notification-a,
#form-notification-f {
	display: none;
}

.form_input_name:hover,
.form_input_name:focus,
.form_input_email:hover,
.form_input_email:focus,
.form_input_phone:hover,
.form_input_phone:focus,
.form_select_form_contact_methods:hover,
.form_select_form_contact_methods:focus,
.form_select_reason:hover,
.form_select_reason:focus,
.form_textarea_message:hover,
.form_textarea_message:focus {
	border-bottom-style: solid;
	border-bottom-width: 0.2rem;
 	border-bottom-color: var(--red);
}


/* screens: tablets */
@media only screen and (max-width: 959px) {


	/* form */
	.form_width_medium {
		width: calc(100% - 0rem);
	}


}


/* screens: smartphones */
@media only screen and (max-width: 480px) {}