#cboxOverlay {
    left: 0;
    height: 100%;
    position: fixed;
    width: 100vw;
    background: #000;
    opacity: 0.85;
    cursor: pointer;
    z-index: 9999;
    top: 0;
}

#colorbox {
    position: fixed;
    outline: none;
    z-index: 10000;
}

#cboxWrapper {
    position: relative;
}

/* Border elements */
#cboxTopLeft, #cboxTopRight, #cboxBottomLeft, #cboxBottomRight {
    width: 21px;
    height: 21px;
    background: #fff;
}

#cboxTopCenter, #cboxBottomCenter {
    height: 21px;
    background: #fff;
}

#cboxMiddleLeft, #cboxMiddleRight {
    width: 21px;
    background: #fff;
}

#cboxContent {
    background: #fff;
    margin: 0;
    overflow: visible;
    position: relative;
}

#cboxLoadedContent {
    margin-bottom: 28px;
    overflow: auto;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    cursor: default;
}

/* Navigation controls */
#cboxPrevious, #cboxNext, #cboxClose {
    position: absolute;
    bottom: 0;
    background: url(../images/controls.png) no-repeat 0 0;
    width: 23px;
    height: 23px;
    text-indent: -9999px;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
        margin-bottom: -19px;
}

#cboxPrevious {
    left: 0;
    background-position: -75px 0;
}

#cboxPrevious:hover {
    background-position: -75px -25px;
}

#cboxNext {
    left: 27px;
    background-position: -50px 0;
}

#cboxNext:hover {
    background-position: -50px -25px;
}

#cboxClose {
    right: 0;
    background-position: -25px 0;
}

#cboxClose:hover {
    background-position: -25px -25px;
}

#cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 58px;
    color: #999;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

#cboxTitle {
    margin: 0;
    position: absolute;
    bottom: 4px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #999;
    display: none;
}

#cboxLoadingOverlay {
    background: #fff;
}

#cboxLoadingGraphic {
    background: url(../images/loading.gif) no-repeat center center;
}

/* Clear floats */
#cboxWrapper > div:nth-child(2),
#cboxWrapper > div:nth-child(4) {
    clear: left;
}

/* Mobile responsiveness */
/* @media screen and (max-width: 768px) {
    #colorbox {
        width: 90% !important;
        left: 5% !important;
        transform: none;
    }
    
    #cboxContent,
    #cboxLoadedContent,
    #cboxTopCenter,
    #cboxBottomCenter {
        width: 100% !important;
    }
}  */

@media screen and (max-width: 480px) {
    #cboxTitle{
        display: none !important;
    }
}
 