/***************************************************************************************
ZOOM OVERLAY
 */

.zoom-link {
    cursor: pointer;
}
#zoom-overlay {
    z-index: 99999999;
    background-color: #222;
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height: 100%;
    max-height: 100vh;
    flex-direction: column;
    display: none;
}

#zoom-header {
    width: 100%;
    min-height: 54px;
    background-color: #999999;
    border-bottom: 0;
    text-align: center;
    position: relative;
}
@media only screen and (max-width: 850px) {
    #zoom-header {
        min-height: 38px;
    }
}
#zoom-header #gettyLogo {
    top:20px;
    left:20px;
}
@media only screen and (max-width: 850px) {
    #zoom-header #gettyLogo {
        top:12px;
    }
}
#zoom-header .center {
    font-weight: 700;
    font-family: 'APHont','Syntax Next W01','Neue Helvetica W01',Helvetica,Arial,sans-serif;
    font-size: 30px;
    color:#fff;
}
@media only screen and (max-width: 850px) {
    #zoom-header .center {
        font-size: 20px;
        top:8px;
    }
}
#zoom-header .close {
    position: absolute;
    top:15px;
    right:20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 850px) {
    #zoom-header .close {
        top: 4px;
    }
}
#zoom-header .close::before,
#zoom-header .close::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    transform-origin: center;
    transition: all 350ms ease;
}
#zoom-header .close::before {
    transform: rotate(45deg);
}
#zoom-header .close::after {
    transform: rotate(-45deg);
}
#zoom-header .close:hover::after,
#zoom-header .close:hover::before {
    transform: rotate(0);
}


#zoom-center, #zoom-content, #zoom-loading {
    width: 100%;
    height: 100%;
    background-color: #777777;
    position: relative;
}
#zoom-loading {
    position: absolute;
    top:0;
    left:0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
#zoom-loading img {
    width:70px;
}



#zoom-footer {
    width: 100%;
    background-color: #ffffff;
    color: #777777;
}
#zoom-footer .info {
    padding:10px 20px;
    max-width: 1700px;
    margin: 0 auto;
}
#zoom-footer .info * {
    font-family:Verdana, Arial, Helvetica, sans-serif;
    color:#777777;
    font-size: 13px;
    line-height: 1.0em;
}
#zoom-footer .info strong {
    font-weight: bold;
}
#zoom-footer .download {
    text-align: right;
}
#zoom-footer .download a:hover {
    text-decoration: underline;
}
#zoom-footer .line {
    margin: 10px 0;
}
body.page-return #zoom-footer .line.credits {
    margin-top:20px;
}

#zoom-controls {
    position: absolute;
    top:15px;
    left:15px;
    z-index: 2;
    display: flex;
}
#zoom-controls .zoom-control {
    cursor: pointer;
    color:rgba(255,255,255,0.7);
    transition: all 350ms ease;
    /*
    width:30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

     */
    line-height: 30px;
    font-size: 30px;
    margin-right: 10px;
}
#zoom-controls .zoom-control:hover {
    color:#fff;
}

.arabic #zoom-controls {
    left:unset;
    right:15px;
    text-align: right;
}
.arabic #zoom-controls .zoom-control {
    margin-right: 0;
    margin-left: 10px;
}

.arabic #zoom-header .close {
    right: unset;
    left:20px;
}
.arabic #zoom-footer .info {
    text-align: right;
}
.arabic #zoom-footer .download {
    text-align: left;
}
.arabic #zoom-header #gettyLogo {
    right:20px;
}