.bs-popup {
    width: 100vw;
    height: 100vh;
    z-index: 99999999999999;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 128, 128, 0.705);
}

.bs-popup--default {
    position: fixed;
    top: -200%;
    left: 0;
}

.bs-popup--add-animation {
    transition: all 1s ease-in-out;
}

.bs-popup--slide-in-top {
    position: fixed;
    top: -200%;
    left: 0;
}

.bs-popup--slide-in-left {
    position: fixed;
    top: 0;
    left: -200%;
}

.bs-popup--slide-in-right {
    position: fixed;
    top: 0;
    left: 300%;
}

.bs-popup--slide-in-bottom {
    position: fixed;
    top: 200%;
    left: 0;
}

.bs-popup__main {
    background-color: #fff;
    min-width: 30%;
    padding: 1vh 3vh;
    height: auto !important;
}

.bs-popup__topbar {
    width: 100%;
    background-color: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.bs-popup__close-button {
    font-family: 'Roboto';
    font-weight: 600;
}

/* UTILS */

[data-bs-popup-show='true'] {
    top: 0;
    left: 0;
}
