/* Overlay */
#overlay.overlay-1 .overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

/* Modal Wrapper */
#overlay.overlay-1 .modal-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 50;
}

/* Modal */
#overlay.overlay-1 .modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 50;
}

#overlay.overlay-1 .modal-title{
    color: var(--text-title);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Modal Content */
#overlay.overlay-1 .modal-content {
    position: relative;
    max-width: 600px;
    padding: 2.5rem 1.5rem 2rem;
}

#overlay.overlay-1 .modal-text{
    color: #000;
    text-align: center;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

/* Button Wrapper */
#overlay.overlay-1 .button-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#overlay.overlay-1 .back-button{
    padding: 12px 24px;
    color: var(--secondary);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 16px;
    font-weight: 700;
}