:root {
    --bg-dark: #E0E0E0;
    --bg-light: #F5F5F5;
    --card: #FFFFFF;
    --head: #2B2525;
    --main-text: #5C5C5C;
    --primary: #0DCAF0;
    --stroke: #C2C2C2;
}

#booking-block .booking_holder {
    background: var(--head, #2B2525);
    border-radius: 10px;
    padding: 60px 20px 60px 40px;
    position: relative;
    margin-bottom: 80px;
}

#booking-block .booking_holder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 373px;
    width: 2px;
    background: var(--card, #FFF);
    height: 100%;
}

#booking-block {
    margin-top: 80px;
}

#booking-block .booking_title {
    color: var(--card, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

#booking-block input {
    display: flex;
    padding: 15px 20px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 100px;
    background: var(--bg-light);
    border: 1px solid var(--bg-light);
    color: var(--main-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    width: 100%;
}

#booking-block input.error {
    border-color: red;
}

#booking-block input:focus {
    border: 1px solid var(--primary, #0DCAF0);
    background: var(--card, #FFF);
    color: var(--primary, #0DCAF0);
}

#booking-block .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    padding-top: 40px;
}

#booking-block .markup_one {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#booking-block .markup_free input {
    min-width: 100%;
}

#booking-block .markup_four {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#booking-block .send {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

#booking-block .privacy-policy {
    color: var(--card, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 360px;
    max-height: 42px;
    cursor: pointer;
}

#booking-block #btn-sbm {
    display: flex;
    padding: 19px 40px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    border-radius: 100px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--card);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    max-width: 298px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

#booking-block #btn-sbm:hover {
    background-color: var(--main-text);
    border: 1px solid var(--main-text);
}

#booking-block .booking_wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

#booking-block .social_text {
    color: var(--card, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 347px;
    width: 100%;
    flex-shrink: 0;
}

#booking-block .soc-item {
    justify-content: center;
    display: flex;
    position: relative;
    background: var(--primary, #0DCAF0);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    align-items: center;
}

#booking-block .soc-item img {
    max-width: 80%;
    max-height: 80%;
    display: block;
    object-fit: cover;
}

#booking-block .social_up {
    display: flex;
    max-width: 616px;
    justify-content: space-between;
    align-items: center;
}

#booking-block .rectangle {
    width: 2px;
    height: 585px;
    flex-shrink: 0;
    background: var(--card, #FFF);
    display: flex;
}

#booking-block .keycount {
    color: var(--card, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: var(--primary, #0DCAF0);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#booking-block .right_side_text {
    color: var(--card, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    /* 21.6px */
    max-width: 256px;
}

#booking-block .right_side_wrapper {
    display: flex;
    align-items: center;
    gap: 29px;
    padding: 20px;
    border-radius: 10px;
    background: var(--main-text, #5C5C5C);
}

#booking-block .right_side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (max-width: 1180px) {
    #booking-block .booking_holder::before {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    #booking-block .privacy-policy {
        font-size: 12px;
    }
}

@media screen and (max-width: 1000px) {
    #booking-block .booking_wrapper {
        display: unset;
    }

    #booking-block .right_side {
        padding-top: 20px;
    }

    #booking-block .markup_one {
        flex-direction: column;
    }

    #booking-block .markup_four {
        flex-direction: column;
    }
}

@media screen and (max-width: 660px) {
    #booking-block input {
        font-size: 12px;
    }

    #booking-block .social_text {
        font-size: 12px;
    }
}

@media screen and (max-width: 670px) {
    #booking-block .social_up {
        flex-direction: column;
        align-items: center;
    }
    #booking-block .send {
        display: unset;
    }
}

@media screen and (max-width: 670px) {
    #booking-block .privacy-policy {
        font-size: 10px;
    }
}

@media screen and (max-width: 670px) {
    #booking-block .keycount {
        width: 50px;
        height: 50px;
    }

    #booking-block #btn-sbm {
        margin-top: 20px;
    }
}

@media screen and (max-width: 360px) {
    #booking-block .right_side_text {
        font-size: 11px;
    }

    #booking-block input {
        font-size: 9px;
    }
}

@media screen and (max-width: 460px) {
    #booking-block .booking_title {
        font-size: 26px;
    }
}