.ogs-v2-half-modal {
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 9999;
    position: fixed;
    pointer-events: none;
}

.ogs-v2-half-modal-overlay {
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    opacity: 0;
}

.ogs-v2-half-modal-container {
    padding: 20px 10px;
    background-color: var(--COLOR_DEFAULT);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    transition: all 300ms 0s ease;
    bottom: -100vh;
    right: 0px;
    left: 0px;
    z-index: 1;
    position: absolute;
}

.ogs-v2-half-modal.active {
    pointer-events: auto;
}

.ogs-v2-half-modal.active .ogs-v2-half-modal-overlay {
    opacity: 1;
}

.ogs-v2-half-modal.active .ogs-v2-half-modal-container {
    bottom: 0px;
}

@media screen and (min-width:720px) {}