.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto; 
        align-items: center;
}

.modal-content {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 1050px;
    overflow-y: auto; 
    position: relative;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

#modalTitle{
    color: #000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal; 
    font-weight: 800;
    line-height: 120%; 
    margin-bottom: 16px;
    padding-right: 40px; 
}

#modalBody h2{
    color: #000;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 42px */
    margin-bottom: 16px;
}

#modalBody p{
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 20px;
}

#modalBody a{
    color: #E81B23;
}

.date{
    color: #000;
    font-family: Inter;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 120% !important; /* 19.2px */
}

.shipping_container .answer{ display:none; }
.question_container.open .answer{ display:block; }


@media (max-width: 480px) {
    .modal-content{
        width: 90%;
    }
    #modalTitle{
        font-size: 30px;
    }
    #modalBody h2{
        font-size: 24px;
    }
    #modalBody p{
        font-size: 16px;
    }
}