.vote-popup div#swal2-html-container {
    padding: 0;
}

.vote-popup {
    padding-bottom: 0.25rem;
    box-shadow: 0px 3px 6px #00000029;
    width: auto;
}

/* Swipe-up animation for show */
.swal-swipe-up-show {
    animation: swipeUpShow 0.3s ease-out forwards;
}

@keyframes swipeUpShow {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Swipe-up animation for hide */
.swal-swipe-up-hide {
    animation: swipeUpHide 0.3s ease-in forwards;
}

@keyframes swipeUpHide {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}


@media screen and (min-width: 1200px) {
    .vote-popup {
        min-width: 1100px;
    }
}