
/* POPUP */
.background_popup_lib {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    cursor: default;
}

.popup_lib {
    position: absolute;
    transition: .45s;
    transition-timing-function: cubic-bezier(.25,.8,.25,1);
    opacity: 0;
    overflow: hidden;
    z-index: 100;
}

/* @media (max-width: 700px) {
    .popup_lib {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
    }
} */