.error-popup-container {
    opacity: 0;
    position: fixed;
    pointer-events: none;
    bottom: 0;
    width: 100vw;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    transition: opacity 0.2s ease-in-out;
}

.error-popup-container.open {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.2s ease-in-out;
}

.error-popup-container > .error-popup {
    padding: 15px 30px 15px 25px;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.error-popup-container > .error-popup > .error-popup-close {
    content: '';
    position: absolute;
    bottom: 35%;
    right: 10px;
    background-image: url('/static/images/close.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
