#video_widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    border-radius: 6px;
    width: 135px;
    height: 180px;
    box-sizing: border-box;
}

.video_widget_content {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: border-radius 0.3s ease-out, box-shadow 0.2s ease-out, background-color 0.3s ease, border-color 0.3s ease;
    transition: border-radius 0.3s ease-out, box-shadow 0.2s ease-out, background-color 0.3s ease, border-color 0.3s ease;
    border-radius: 20px;
    z-index: 100;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 20%);
    box-shadow: 0px 5px 15px 0px rgb(12 12 38 / 20%);
}

#video_widget:not(.open) .video_widget_content {
    cursor: pointer;
}

#video_widget.open .video_widget_content {
    background: rgba(0, 0, 0, 0.3);
}

a.video_widget_close {
    height: 25px;
    width: 25px;
    position: absolute;
    right: 7px;
    top: 14px;
    z-index: 200;
    background: #656565;
    display: flex;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    align-items: center;
}

a.video_widget_close:before {
    content: '\e9ce';
    text-decoration: none;
    font-family: 'krz-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 8px;
}

.video_widget_content video {
    z-index: 2;
    box-sizing: border-box;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s ease, border-radius 0.3s ease;
    transition: opacity 0.5s ease, border-radius 0.3s ease;
    width: 100%;
    height: 100%;
}

#video_widget.open {
    height: 500px;
    width: 270px;
    max-height: 80%;
}

#video_widget .volume {
    height: 25px;
    width: 25px;
    position: absolute;
    right: 7px;
    top: 50px;
    z-index: 200;
    background: #656565;
    display: flex;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    align-items: center;
}

#video_widget:not(.open) .volume {
    display: none;
}

#video_widget .volume:before {
    content: '';
    background: url(/b/alias/video_widget/icons/volume.svg) no-repeat;
    width: 15px;
    height: 15px;
}

#video_widget video::-webkit-media-controls {
    display: none;
}

#video_widget .layout {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 200;
}

#video_widget:not(.open) .layout {
    cursor: pointer;
}

#video_widget .volume.mute:before {
    background: url(/b/alias/video_widget/icons/volume-muted.svg) no-repeat;
}

@media screen and (max-width: 780px) {
    #video_widget {
        bottom: 70px;
    }
}