.modal-disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-disclaimer .modal-content {
    background: white;
    padding: 30px;
    border-radius: 5px;
    max-width: 500px;
    text-align: center;
}

.modal-disclaimer .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.modal-disclaimer button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.modal-disclaimer .btn-continue {
    background: #e88f35;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    min-width: 134px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 35px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    font-family: "SofiaProMedium", sans-serif;
    font-weight: normal;
    background-color: #e88f35;
    border-radius: 32px;
    color: #ffffff;
    text-transform: uppercase;
}

.modal-disclaimer .btn-close {
    background-color: #5c499e;
    border-color: #5c499e;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    min-width: 134px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 35px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    font-family: "SofiaProMedium", sans-serif;
    font-weight: normal;
    border-radius: 32px;
    color: #ffffff;
    text-transform: uppercase;
}

.modal-disclaimer .btn-continue:hover {
    background: #9b6024;
}

.modal-disclaimer .btn-close:hover {
    background: #3a2f64;
}