#reservation-form {
    display: none;
}

#reservation-form * {
    box-sizing: border-box;
}

#reservation-form .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0007;
    z-index: 1000000001;
}

#reservation-form .close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 1;
}

#reservation-form .form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    max-width: 94vw;
    padding: 1rem;
    z-index: 1000000002;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 3px 5px 0 #0003;
    text-align: left !important;
}

#reservation-form label {
    margin: 0 !important;
    font-size: 12px !important;
}

#reservation-form input,
#reservation-form textarea {
    width: 100%;
    height: auto;
    margin-bottom: .5rem;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 6px;
    resize: none;
}

#reservation-form button {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    background: -webkit-linear-gradient(top, #ffa500 0%, #e59341 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f58744', endColorstr='#ff6547', GradientType=0);
    padding: .5rem 1rem .5rem .5rem;
    font-size: 1rem;
    font-family: myriadpro-regular;
    font-weight: bold;
    border: 1px solid #bd742a;
    color: #fff;
    text-shadow: none;
}

#reservation-form .errors {
    color: #e43f3f;
    font-family: myriadpro-regular;
    font-size: 13px;
    margin: .5rem 0;
}

#reservation-form .errors:empty {
    margin: 0;
}

#reservation-form .success {
    font-size: 15px;
    margin: .5rem 0;
    color: #0a263c;
    line-height: 1.4;
    font-weight: normal;
}

#reservation-form .success strong {
    font-weight: normal;
    font-family: MyriadPro-regular;
    margin-bottom: .5rem;
}

#reservation-form .success:empty {
    margin: 0;
}

#reserve-btn.btn-reserve span {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-align: center;
    font-weight: normal;
}

.product-image .rx-required {
    position: absolute;
    left: 0;
    border-radius: .25rem;
    padding: .5rem 1rem;
    color: #fff;
    font: 14px MyriadPro-Regular;
    opacity: .9;
}

.product-image .rx-required.rx-red {
    background: #ea3323;
    top: 10px;
}

.product-image .rx-required.rx-green {
    background: #3b7e2c;
    top: 50px;
}

@media (max-width: 979px) {
    .box-account .orders-item .flex {
        display: block;
    }

    .box-account .btn {
        display: inline-block !important;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0;
        padding: .25rem;
        margin-top: .5rem;
        float: none;
    }
}

@media (min-width: 769px) and (max-width: 979px) {
    #reserve-btn.btn-reserve {
        padding: 0 !important;
    }

    #reserve-btn.btn-reserve span {
        font-size: 14px;
        padding: .5rem .25rem;
        height: auto;
        white-space: normal;
    }
}

@media (min-width: 979px) and (max-width: 1200px) {
    #reserve-btn.btn-reserve {
        padding: 0 !important;
    }

    #reserve-btn.btn-reserve span {
        font-size: 15px;
        padding: .5rem .25rem;
        height: auto;
    }
}