@charset "UTF-8";
/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,#cboxOverlay,#cboxWrapper {
    position:absolute;
    top:0;
    left:0;
    z-index:100000;
/*  overflow:hidden; */
    zoom: 1;
}

#cboxOverlay {
    position:fixed;
    width:100%;
    height:100%;
}

#cboxMiddleLeft,#cboxBottomLeft {
    clear:left;
}

#cboxContent {
    position:relative;
}

#cboxLoadedContent {
    overflow:auto;
}

#cboxTitle {
    margin:0;
}

#cboxLoadingOverlay,#cboxLoadingGraphic {
    position:absolute;
    top:0;
    left:0;
    width:100%;
}

#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow {
    cursor:pointer;
}

.cboxPhoto {
    float:left;
    margin:auto;
    border:0;
    display:block;
}

.cboxIframe {
    width:100%;
    height:100%;
    display:block;
    border:0;
}



/*
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
    background:#000;
}

#colorbox {
    outline: none!important;
    border: 2px solid #FFF;
    background: #FFF;
}

/*
#cboxContent {
    margin-top:20px;
}
*/
.cboxIframe {
    background:#fff;
}

#cboxError {
    padding:50px;
    border:1px solid #FFF;
}

#cboxLoadedContent {
    background:#FFF;
}

#cboxTitle {
    position:absolute;
    top:-40px;
    left:0;
    font-size: 20px;
    text-shadow: 1px 1px 1px #000;
    color: #FFF;
}

#cboxCurrent {
    position:absolute;
    top:-20px;
    right:0;
    color:#AAA;
    display: none!important;
}

#cboxSlideshow {
    position:absolute;
    top:-20px;
    right:90px;
    color:#fff;
}

#cboxPrevious,
#cboxNext {
    position:absolute;
    top:50%;
    left: -60px;
    margin-top:-40px;
    background: transparent;
    border: 0;
    text-indent: -9999px;
    width: 42px;
    height: 80px;
    background: url(./images/colorbox_prev.png) 0 0 no-repeat;
}

#cboxNext {
    right: -60px;
    left: auto;
    background: url(./images/colorbox_next.png) 0 0 no-repeat;
}


#cboxLoadingOverlay {
    background:#FFF;
}

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

#cboxClose {
    position:absolute;
    top:5px;
    right: -40px;
    display:block;
    background: transparent;
    border: 0;
    color: #FFF;
    width:auto;
    height:auto;
    font-size: 32px;
}

#enjoy #cboxClose {
    top:-70px;
    font-size: 55px;
    font-weight: normal;
    text-shadow: 1px 1px 1px #000;
}

@media screen and (max-width: 640px) {
    #colorbox img {
        max-width: 280px;
        height: auto !important;
    }

    #cboxPrevious,
    #cboxNext {
        left: -25px;
        margin-top:-20px;
        width: 21px;
        height: 40px;
        background-size: 21px 40px;
    }
    #cboxNext {
        right: -25px;
        left: auto;
    }

    #cboxClose {
        top:-1px;
        right:5px;
        width: 20px;
        height: 20px;line-height: 20px;
        text-align: center;
        font-size: 28px;
        font-weight: normal;
    }

    #cboxTitle {
        top:-28px;
        font-size: 15px;
    }
    #enjoy #cboxClose {
        top:-35px;
        right: 0;
        font-size: 30px;
    }
}

