@charset "UTF-8";

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--colorL);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 5%);
	width: 100%;
	margin: 0 5px;
	padding: 10px 10px;
}
textarea {
	height: 120px;
	box-sizing: border-box;
	resize: vertical;
}
label{
    display: flex;
    align-items: center;
	width: 100px;
	margin: 0 0 0 20px;
	padding: 0;
}
input[type="submit" i]{
	cursor: pointer;
	background: var(--colorB);
	border-radius: 0;    
    color: #fff;
    font-size: 18px;
    text-align: center;
	display: block;
	max-width: 640px;
	width: 90%;
	margin: 0 auto;
    padding: 20px 0;    
}
input[type="submit" i]:hover{
	background: var(--colorL);
	color: var(--colorB);
}
input[type="button" i] {
	cursor: pointer;
	background: var(--colorL);
	border-radius: 0;    
    color: #000;
    border: 0;
    display: block;
    font-size: 16px;
	text-align: center;    
	width: 40%;
    margin: 0 auto 0;
	padding: 1% 0;    
}

input[type="radio"],
input[type="checkbox"] {
	appearance: none; 
	border: 1px solid #5c7886;
	width: 20px;
	height: 20px;
	margin: 0;
	position: relative;
	left: 0;
	top: calc(50% - 10px);
	transform: translate(0,-50%);	
}
input[type="radio"]{
	border-radius: 50%;
}
input[type="checkbox"]{
	border-radius: 5px;
}
input[type="radio"]:before {
	content: "";
	background-color: #5c7886;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;	
	left: 0;
}
input[type="checkbox"]:before {
	content: "";
	border-right: 3px solid #5c7886;
	border-bottom: 3px solid #5c7886;
	width: 7px;
	height: 14px;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;	
	left: 0;
	transform: rotate(45deg);
}
input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
	opacity: 1;
}

.select_wrap{
	position: relative;
	width: 50%;
}
.select_wrap:after{
	content: "";
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 8px;
    height: 8px;
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transform: rotate(135deg);
}

.grecaptcha-badge{
	display: none;
}

.error_messe{
	display: block;
	color: #f00;
}

.flexRadio label{
	width: calc(50% - 20px);
	margin: 0 0 10px;
}
.address p{
	display: flex;
	width: 50%;
	margin: 0 0 10px;
}
@media all and (max-width:768px){
	input[type="submit" i] {
		font-size: 16px;
	}
	input[type="radio"],
	input[type="checkbox"] {
		top: calc(50% - 0px);		
	}
	.address p{
		width: 70%;
	}
}