body{
    position:relative;
}
#crossPhotoOverlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    z-index:9999;
    display:none;
}

.crossPhotoImage{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width:100%;
    max-height:100%;
    opacity:0;
    transition: opacity 0.3s;
}

.crossPhotoImage.active {
    z-index:10;
    opacity:1;
}

#crossPhotoClose{
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 2em;
    height: 50px;
    line-height: 1em;
    padding:6px 0;
    position: fixed;
    right: 30px;
    text-align: center;
    font-family: arial;
    top: 30px;
    font-weight:700;
    width: 50px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index:11;
}

#crossPhotoClose:hover{
    border: 2px solid #E5007E;
    background: #9A227D;
    color: #fff;
}

#crossPhotoClose.active{
    border: 2px solid #E5007E;
    background: #9A227D;
    color: #fff;
}

#crossPhotoPrev{
    top: 50%;
    left: 30px;
    color:#fff;
    width: 50px;
    text-align:center;
    border: 2px solid #fff;
    line-height: 1em;
    font-family: arial;
    font-size: 2em;
    font-weight: 700;
    position: fixed;
    padding:7px 0;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index:11;
}

#crossPhotoPrev:hover{
    color: #fff;
    background: #9A227D;
    border: 2px solid #E5007E;
}

#crossPhotoPrev.active {
    color: #fff;
    background: #9A227D;
    border: 2px solid #E5007E;
}

#crossPhotoNext{
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    font-family: arial;
    font-size: 2em;
    font-weight: 700;
    line-height: 1em;
    padding: 7px 0;
    position: fixed;
    right: 30px;
    text-align: center;
    top: 50%;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s;
    width: 50px;
    z-index:11;
}

#crossPhotoNext:hover{
    color: #fff;
    background: #9A227D;
    border: 2px solid #E5007E;
}


#crossPhotoNext.active {
    color: #fff;
    background: #9A227D;
    border: 2px solid #E5007E;
}