.fx-modal-overlay {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 10000000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.fx-modal-container {
    position: fixed;
    z-index: 10000000001;
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid black;
    width: 60%;
}

.fx-modal-container {
    max-height: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 260px;
}

@media (max-width: 768px) {
    .fx-modal-container {
        width: 80%;
    }
}

.fx-close-modal-button {
    position: absolute;
    top: 15px;
    right: 20px;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.fx-modal-section-1 h2 {
    margin-bottom: 0 !important;
}

.fx-modal-section-2 {
    display: none;
    padding: 30px;
    text-align: center;
    align-items: center;
    height: 628px;
    justify-content: center;
}

.fx-modal-section-2 h2 {
    margin-bottom: 30px;
}
