 div[iframe-parent-template-type='viasocket-embed'] {
    display: block;
    position: fixed;
    background-color: rgba(0, 0, 0, .75);
    top: 0px;
    right: 0px;
    width: 100%;
    top: 0px;
    right: 0px;
    height: 100%;
    animation: parent-div-animation 0.3s ease-in-out 0s 1 forwards;
}

div[iframe-template-type='viasocket-embed'] {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 85vw;
    top: 0px;
    right: 0px;
    height: 100vh;
    animation: slider-right-to-left 0.6s ease-in-out 0s 1 forwards;
    border-radius: 15px 0px 0px 15px;
}

.wc-slider-close-btn {
    position: absolute;
    top: 5px;
    left: -27px;
    cursor: pointer;
}

iframe {
    outline: none;
    border: 1px solid grey;
    border-radius: 15px 0px 0px 15px;
}

@keyframes slider-right-to-left {
    0% {
        transform: translateX(700px);
        opacity: 0;
    }

    50% {
        transform: 0.5;
    }

    100% {
        transform: translateX(0%);
        transform: 1;
    }
}

@keyframes parent-div-animation {
    0% {
        opacity: 0;
    }

    50% {
        transform: 0.5;
    }

    100% {
        transform: 1;
    }
}