.vp-modal-header{
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
}
.vp-modal-container .fa-solid.fa-xmark{
    color: red;
    scale: 1.4;
    display: grid;
    place-items: center;
}
.vp-modal-container {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.vp-modal-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
    max-width: 100%;
    padding: 2rem;
    border-radius: 1.25rem;
    background-color: var(--color-bg);
    border: var(--border);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(1rem + 0.2vw);
}
.vp-modal-content .vp-modal-close{
    width: 2rem;
    aspect-ratio: 1;
    background-color: transparent;
    border: 0;
    padding: 0;
    display: grid;
    place-content: center;
}
.vp-modal-content button[type="submit"]{
    font-size: 1.5rem;
    margin: 0;
    margin-top: 2rem;
    width: 100%;
}
.vp-modal-header-text{
    font-size: calc(1rem + 0.5vw);
}
@media screen and (max-width: 800px) {
    .vp-modal-content {
        padding-block: 2rem;
    }
    .vp-modal-content button[type="submit"]{
        font-size: 1rem;
        margin-top: 1rem;
    }
}

.vp-modal-inputs, .vp-modal-column{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    overflow: visible !important;
}
.vp-modal-column{
    gap: 0.5rem;
}
.vp-modal-column label{
    font-size: 1rem;
}
.slideUp{
    animation: slideUp 1s ease-out forwards;
}
.slideDown{
    animation: slideUp 1s ease-in forwards reverse;
}
@keyframes slideUp{
    from{
        top: 25%;
    }
    to{
        top: -100%;
    }
}