.popupContainer {
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000b3;
    backdrop-filter: blur(2px);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popupContainer.show {
    opacity: 1;
    visibility: visible;
}

.popupContent {
    margin: 0 auto;
    border: 1px solid #22222285;
    border-radius: 10px;
    padding: 20px;
    background-color: #080808 !important;
    position: relative;
    max-width: 90%;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 2%), 0 2px 4px 2px rgb(4 4 4 / 30%);
    margin: 0 10px 0 10px
}

.popupFooter {
    display: flex;
    align-items: center;
}

.popupContainer.show .popupContent {
    animation: popupFadeIn 0.3s ease forwards;
}

.close-btn {
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #b7b7b7;
}

.close-btn:hover {
    color: #fffdfd;
}

@keyframes popupFadeIn {
    0% {
        /* transform: scale(0.7);*/
        opacity: 0;
    }

    70% {
        /*transform: scale(1.05);*/
        opacity: 0.7;
    }

    100% {
        /*transform: scale(1);*/
        opacity: 1;
    }
}