#cboxOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
}

#colorbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
    z-index: 999999;

    opacity: 0;
    transition: opacity 0.25s ease;
}
#colorbox.show {
    opacity: 1;
}

#cboxContent {
    background: transparent;
    overflow: visible;
}
#cboxLoadedContent {
    margin: 0;
    overflow: visible !important;
}
#cboxLoadedContent > div,
#cboxLoadedContent video {
    width: 100%;
    height: 100%;
}


#cboxClose {
    position: absolute;
    top: 0;
    right: -30px;
    background: url(../images/close.svg) no-repeat center center;
    width: 29px;
    height: 29px;
    border: none;
    cursor: pointer;
}
#cboxClose:hover {
    opacity: .5;
    transition: all .3s;
}
