.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;

}

.popup-content {
    position: relative;
    background: #fff;
    text-align: left;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    max-width: 600px;
    overflow: auto;
    padding: 10px;

    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    top: 5px;
    right: 5px;
}

button.popup-button {
    position: absolute;
    top: 5px;
    right: 5px;
}

.open-popup-button {
    padding: 5px 5px;
    background: #fff;
    color: #e83b30;
    border: none;
    cursor: pointer;
    /* font-weight: 700; */
}

.open-popup-button:hover {
    background: #fff;
}

.popup.show {
    display: flex !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}