.popups-container {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    margin-top: 20px;
    margin-right: 20px;
    
    overflow: auto;
    
    overflow-x: visible;
    overflow-y: visible;
}

.popups-container .side-popup {
    margin-bottom: 1vh;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    background-color: #ffffff;
    animation: slide 0.2s ease-in-out forwards;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

    min-width: 200px;
    max-width: 20vw;
    height: auto;
    max-height: 100vh;
}

.popups-container .side-popup.hidden {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
@keyframes slide {
    0% {
        transform: translateX(-20vw);
    }
    100% {
        transform: translateX(0);
    }
}
.popups-container .side-popup .side-popup-button {
    display: block;
    text-decoration: none;
    cursor: pointer;
    color: unset;
    background-color: #186ed2;
    border-radius: 20px;
    border: 1px solid transparent;
    text-align: center;
    padding: 16px 18px;
    margin-top: 5px;
    color: #ffffff;
    user-select: none;
    text-align: center;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    line-height: 1.5;
}

.popups-container .side-popup .side-popup-content {
    padding: 0px 15px 15px 15px;
}

.popups-container .side-popup .side-popup-header {
    padding: 0px 10px 0px 10px;
    display: flex; 
    justify-content: flex-end;
}

.popups-container .side-popup .side-popup-header .close-button {
    cursor: pointer; 
    font-size:1.25em; 
    font-weight: bold;
}