.booking-form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin: 30px auto 0;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    color: #333;
}

.booking-form input:focus {
    border-color: #FF8B3E;
}

.booking-form .form-group {
    width: 100%;
}

.form-date-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.form-date-group .form-group {
    width: 45%;
}

.form-options {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.radiogroup {
    width: 45%;
}

.radio {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    top: -12px;
}

.radio label {
    margin: 0;
    padding: 10px 8px;
    font-size: 18px;
}

.radio input[type=radio]:checked + label {
    color: #FF8B3E;
}

.radiogroup {
    border: 1px solid #FF8B3E;
    border-radius: 20px;
    padding: 0 10px;
}
.radiogroup-title {
    position: relative;
    top: -12px;
    font-weight: bold;
    background: #fff;
    display: inline;
    padding: 0 10px;
}

.form-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 10px;
    color: #333;
    padding: 20px 25px;
    transition: all .3s;
    font-size: 18px;
}
.form-modal--active {
    opacity: 1;
    z-index: 10;
    visibility: visible;
}

.booking-message {
    margin-bottom: 20px;
    display: none;
    text-align: left;
}
.booking-message--success {
}
.booking-message--error {
}
.booking-message--active {
    display: block;
}

.booking-message span {
    font-weight: bold;
    color: #FF8B3E;
}
.booking-message strong {
    font-size: 20px;
}

.passport input {
    margin-bottom: 10px;
}

.booking-page {
    display: none;
}
.booking-page--active {
    display: flex;
    flex-direction: column;
}

.booking-title {
    margin-bottom: 20px;
}

.booking-form-contacts {
    margin-top: 15px;
    display: none;
}

#date-error {
    display: none;
    width: 100%;
    margin-bottom: 0;
}


@media (max-width: 540px) {
    .booking-form {
        width: 100%;
    }
    .form-date-group {
        flex-direction: column;
    }
    .form-date-group .form-group {
        width: 100%;
    }
    .form-options {
        flex-direction: column;
    }
    .radiogroup {
        margin-bottom: 20px;
        width: 100%;
    }
}
