.vodal,
.vodal-mask {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.vodal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;

}

.vodal-mask {
    position: absolute;
    background: rgba(15, 23, 42, .45);
}

.vodal-dialog {
    position: relative;
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 15px;
    z-index: 3000;
    width: auto;
    max-width: 90%;
    animation: modal-fade-in 0.25s ease-out;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.vodal-close {
    position: absolute;
    cursor: pointer;
    top: 14px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    z-index: 9999;
    transition: opacity 0.2s ease;
}

.vodal-close:hover {
    opacity: 1;
}

.vodal-close:before,
.vodal-close:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    background: #6b7280;
    border-radius: 2px;
    transition: background 0.2s;
}

.vodal-close:before {
    transform: rotate(45deg);
}

.vodal-close:after {
    transform: rotate(-45deg);
}

.vodal-close:hover:before,
.vodal-close:hover:after {
    background: #111827;
}

/* Animações */
@keyframes modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modal-fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Fade padrão Vodal */
.vodal-fade-enter-active {
    animation: modal-fade-in 0.25s ease-out both;
}

.vodal-fade-leave-active {
    animation: modal-fade-out 0.25s ease-in both;
}