#cboxOverlay {
    background: #00529c;
    opacity: 0.5;
    filter: alpha(opacity=90);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
#colorbox
{

    color: #fff !important;
    background: #fff url("images/loader.svg") center center no-repeat;
    border-radius:6px;
    position: fixed;
    z-index: 1001;
    font-size: 0 !important;
}
#colorbox .cboxPhoto
{
    border: 5px solid transparent;
}
#cboxTitle
{

    position: absolute;
    font-weight: 500;
    left: 0px;
    font-size: 15px !important;
    bottom: -28px;
    z-index: 3;
}

#cboxCurrent
{
    font-size: 15px !important;
    border: none;
    background: transparent;
    line-height: 18px;
    display: block;
    width: 100%;
    font-weight: 500;
    text-align: right;
    position: absolute;
    bottom: -26px;

}

#cboxClose
{
    font-size: 0;
    width: 98px;
    height: 36px;
    position: absolute;
    top: 0px;
    right: 3px;
    background: url("images/icons.svg") center top no-repeat;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    border: none !important;
    transition: all 300ms ease-in-out;
}

#cboxClose:hover
{
    top: 5px;
}
#cboxPrevious, #cboxNext
{
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    border: none !important;
    transition: all 300ms ease-in-out;
    top: 50%;
    margin-top: -63px;
    width: 33px;
    height: 126px;
    font-size: 0;
}

#cboxPrevious
{
    left: 0;
    background: url("images/icons.svg") center left no-repeat;
}


#cboxNext
{
    right: 0;
    background: url("images/icons.svg") center right no-repeat;
}

#cboxPrevious:hover
{
    left: 5px;
}

#cboxNext:hover
{
    right: 5px;
}