.video_frame {
    width: 90px;
    height: 160px;
    position: fixed;
    right: 10px;
    top: 10px;
    background-image: url("../img/videoscript/video.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 0 8px 0px #000; */
    border: 1px solid #ffd713;
}
.video_frame a{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 0px #000;
    animation: VideoscriptPulseAnimation 2s infinite;
}
.wave{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background: rgb(255, 179, 0);
    animation: VideoscriptWaveAnimation 2s infinite;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}
.wave:nth-child(2) {
    animation-delay: 1s;
}
.video_frame a img{
    width: 35px;
    height: 35px;
}
#video_modal{
    box-shadow: none;
}
#video_modal video#video_modal_item{
    border-radius: 10px;
}
#video_modal a.video_modal_close{
    position: absolute;
    height: 40px;
    width: 40px;
    background-image: url("../img/videoscript/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    right: 15px;
    top: 15px;
    opacity: 1;
    animation: VideoscriptPulseAnimation 2s infinite;
}
@keyframes VideoscriptPulseAnimation{
    0% {
        transform: scale(.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.9);
    }
}
@keyframes VideoscriptWaveAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}