.modal-overlay {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-container {
    outline: none;
    background: #FFFFFF;
    width: fit-content;
    height: fit-content;
    padding: 0;
    border-radius: 20px;
    max-height: 90vh;
    position: relative;
    margin: auto 35px;
}

.modal-container .modal-close-button {
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
}

@media screen and (max-width: 650px) {
    .modal-container .modal-close-button {
        top: 10px;
        right: 10px;
        width: 15px;
        height: 15px;
    }
    .modal-container .modal-close-button line {
        stroke: #DFE4EE;
    }
    .modal-container {
        overflow-y: scroll;
    }
}
