#imageGallery{

    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1000;

}

#imageGallery .content{
    



    background-color: #2c2935;

    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);

    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
}

#imageGallery .backdrop{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.1);
    width: 100%;
    height: 100%;
}

#imageGallery h6{

    background-image: url("../images/camera-icon.png");
    background-position-x: 21px;
    background-position-y: 21px;
    background-repeat: no-repeat;

    display: block;
    color:white;
    font-family: "Styrene B Web",sans-serif;
    padding: 22px 25px 21px 70px;
    

    margin:0;

    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
}

#imageGallery img{
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}


@media (min-width: 576px) {

    #imageGallery img.picture{
        width:525px;
        height:280px;
    }

}


@media (min-width: 768px) and (min-height:400px){

    #imageGallery img.picture{
        width:675px;
        height:360px;
    }

}

@media (min-width: 992px) and (min-height:680px){

    #imageGallery img.picture{
        width:900px;
        height:480px;
    }

}


@media (min-width: 1200px) and (min-height:780px) {

    #imageGallery img.picture{
        width:1125px;
        height:600px;
    }

}

@media (min-width: 1400px) and (min-height:820px) {

    #imageGallery img.picture{
        width:1200px;
        height:640px;
    }

}



#imageGallery button.close{
    position: absolute;
    right:15px;
    top: 9px;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 18px;
    padding: 10px;
    float: right;
    cursor: pointer;
}

#imageGallery button.arrow{
    border: none;
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
}

#imageGallery button.left{
    left: 0px;
}

#imageGallery button.right{
    right: 0px;
}

.spinner {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    
}

.lds-ring {
    display: inline-block;    
    width: 80px;
    height: 80px;
  }
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
