/*
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(images/icon_warn.gif);
}
 */


.form-container select.form-control {
    background-color: #fff;
    background-image: url(/images/chevron-down.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.form-container .submit-wrap .btn {
    background: var(--main-color);
    height: 54px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 10px;
    width: 100%;
}

.form-container textarea.form-control {
    height: 143px;
    resize: none;
    padding: 20px 25px;
}

.form-container .policy {
    margin: 16px 0;
    display: flex;
    column-gap: 6px;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.form-container input[type="checkbox"] {
    width: 14px;
    height: 14px;
    appearance: none;
    border: 1px solid rgb(217, 217, 217);
    background-color: #fff;
    border-radius: 4px;
}

.form-container input[type="checkbox"]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
    background-image: url(/images/check.svg);
    background-position: center;
    background-repeat: no-repeat;
}