#cboxOverlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 47, 51, .55);
    z-index: 999;
}
#colorbox {
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, .25);
    z-index: 9999;
}
#cboxContent {
    background: #fff;
    position: relative;
    overflow: hidden;
}
#cboxClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #0992d4;
    border: none;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
#cboxClose:hover {
    background: #2BB4F6;
}
#cboxClose::after {
    content: "\e646";
    color: white;
    font-size: 2em;
    font-family: 'themify';
    position: relative;
}
