.booktransfer-card {
    padding: 32px;
    border-radius: var(--main-chamfer);
    background: #fff5df;
}

.booktransfer-card__head {
    margin-bottom: 24px;
}

.booktransfer-card__head h2 {
    margin: 0;
    color: #1f354f;
    font-size: 32px;
    line-height: 1.2;
}

.booktransfer-form {
    gap: 24px;
}

.booktransfer-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.booktransfer-form .form-group {
    margin: 0;
}

.booktransfer-form select {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 16px;
    background-color: #fff;
    color: #1f354f;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    padding: 0 72px 0 26px;
    font-family: inherit;
}

/* .booktransfer-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #2f4867 50%),
        linear-gradient(135deg, #2f4867 50%, transparent 50%);
    background-position:
        calc(100% - 34px) calc(50% - 2px),
        calc(100% - 26px) calc(50% - 2px);
    background-size: 9px 9px, 9px 9px;
    background-repeat: no-repeat;
} */

.booktransfer-form select {	
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.75 0.75L5.75 5.75L0.75 0.75' stroke='%231F354F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 30px) center;
}

.booktransfer-form select::-ms-expand {
    display: none;
}

.booktransfer-form textarea {
    min-height: 190px;
    padding-bottom: 26px;
}

.booktransfer-form__date {
    position: relative;
}

.booktransfer-form__date .inputtext,
.booktransfer-form__date input[name^="form_date_"] {
    padding-right: 54px;
}

.booktransfer-form__date .calendar-icon {
    position: absolute;
    top: 24px;
    right: 18px;
    margin: 0;
    cursor: pointer;
}

.booktransfer-form__date .booktransfer-form__date-hint {
    display: block;
    margin-top: 8px;
    color: #6c7a89;
    font-size: 12px;
    line-height: 1.3;
}

/* .booktransfer-form select::-ms-expand {
    display: none;
} */

.booktransfer-form select:required:invalid {
    color: #2f4867;
}

.booktransfer-form select option {
    color: #1f354f;
}

.booktransfer-form__children {
    margin-top: 4px;
}

.booktransfer-form .form-group_checkbox .checkbox span {
    font-size: 16px;
    color: #1f354f;
}

.booktransfer-form .form-submit {
    gap: 20px;
}

.booktransfer-form .form-submit__confirm {
    gap: 10px;
}

.booktransfer-form .btn-color {
    width: 100%;
}

.booktransfer-note {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #f4f9ff;
    color: #1f354f;
}

.booktransfer-note__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.booktransfer-note__text {
    font-size: 14px;
    line-height: 1.45;
}

.booktransfer-note__text a {
    color: inherit;
}

@media (max-width: 767.98px) {
    .booktransfer-card {
        padding: 16px;
    }

    .booktransfer-card__head h2 {
        font-size: 26px;
    }

    .booktransfer-form__grid {
        grid-template-columns: 1fr;
    }

    .booktransfer-form select {
        min-height: 64px;
        border-radius: 12px;
    }

    .booktransfer-note {
        padding: 14px 16px;
    }
}
