#liveto-embed-container {

    display: none;
    opacity: 0;
    transform: translate(100%, -25%);
    max-width: 1400px;
    top: 50%;
    border-radius: 16px;

    --animation-length: .3s;

    transition-property: overlay display opacity;
    transition-duration: var(--animation-length);
    transition-timing-function: ease-in-out;
}

#liveto-embed-container[open] {
    transition-property: display opacity;
    transition-duration: var(--animation-length);
    transition-timing-function: ease-in-out;
    overflow: hidden;
    border-radius: 1rem;



    display: flex;
    opacity: 1;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    height: 95%;
    right: 0%;
    padding: 0;
    overflow: hidden;
    border: none;
    transform: translate(0%, -25%);
    z-index: 2147483647;


    &::backdrop {
        --backdrop-animation-length: .5s;
        transition-property: overlay display opacity;
        transition-delay: .2s;
        transition-duration: var(--backdrop-animation-length);
        transition-behavior: allow-discrete;
        transition-timing-function: cubic-bezier(0, .2, .7, 1);
        background-color: #000;
        opacity: 0.8;
    }
}

#liveto-embed-container iframe {
    border: none;
}

@media screen and (max-width: 600px) {
    #liveto-embed-container[open] {
        height: 100dvh;
        max-height: 100%;
        border-radius: 0;
    }
}