html, body {
    margin: 0;
    padding: 0;
    height:100%;
    width: 100%;
    font-family: "canada-type-gibson",sans-serif;
    font-weight: 300;
}


/*-----   icons   -----*/
.arrow{
    display: inline-block; width: 14px; height: 32px;
    background-size: cover;
    background: no-repeat 50% 50%;
}
.arrow.arrow-left{
    background-image: url("/images/arrow-left.png");
}
.arrow.arrow-right{
    background-image: url("/images/arrow-right.png");
}
.arrow.arrow-white.arrow-left{
    background-image: url("/images/arrow-left-w.png");
}.arrow.arrow-black.arrow-left{
    background-image: url("/images/arrow-left.png");
}
.arrow.arrow-white.arrow-right{
    background-image: url("/images/arrow-right-w.png");
}
.arrow.arrow-black.arrow-right{
    background-image: url("/images/arrow-right.png");
}

/*-----   end of icons   -----*/


#gallery{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #dedede;
}
#gallery .close-btn{
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 25px;
    width: 25px;
    height: 25px;
    background: url('../images/gallery_close.png') no-repeat center;
}
#gallery .close-btn .fa{
    margin-right: 5px;
}
#gallery .close-btn i{
    margin-right: 5px;
}
#gallery .close-btn:hover{
}

#gallery .img-container{
    position: absolute;
    left: 0; right: 270px;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
}
#gallery .desc-container{
    position: absolute;
    right: 0; width: 270px;
    height: 100%;
    background: #fff;
    padding: 25px;
}
#gallery .desc-container .title{
    color: #000;
    margin-top: 30px;
    text-transform: uppercase;
    display: block;
    font-size: 26px;

}
#gallery .desc-container .author{
    color: #878c8e;
    font-size: 12px;
}
#gallery .desc-container .desc{
    color: #646464;
    font-size: 14px;
}

#gallery .img-container div.img-c{
    height: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
#gallery .img-container img#image{
    position: absolute; top: 0; left: 0; bottom: 0; right: 0;
    margin: auto;
    max-width: 1024px;
    max-height: 755px;
}
#gallery .nav-left,
#gallery .nav-right
{
    position: absolute;
    top: 0; width: 40%;
    bottom: 0;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.3s;-moz-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;transition: all 0.3s;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
#gallery .nav-right{
    right: 0;
}
#gallery .nav-left{
    left: 0;
}
#gallery .nav-left .img,
#gallery .nav-right .img
{
    display: block;
    position: absolute;
    margin-top: -39px;
    top: 50%;
    width: 78px;
    height: 78px;
    text-align: center;
    color: #000;
    background: rgba(255,255,255, 0.3);
}
#gallery .nav-left .img i,
#gallery .nav-right .img i
{
    position: relative; top: 50%;
    margin-top: -18px;
}
#gallery .img img{
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -20px;
}
#gallery .nav-left .img{
    left: 0;
}
#gallery .nav-right .img{
    right: 0;
}
#gallery .img-container:hover .nav-left,
#gallery .img-container:hover .nav-right{
    opacity: 0.5;
}
#gallery .img-container .nav-left:hover,
#gallery .img-container .nav-right:hover
{
    opacity: 1;
}
#gallery .img-container .status-bar{
    position: absolute;
    background: url('/images/gallery-bar-bg.png');
    bottom: 0; width: 100%; left: 0;
    padding: 20px 30px;
    opacity: 0;
    -webkit-transition: all 0.3s;-moz-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;transition: all 0.3s;
}
#gallery .img-container .play-pause{
    display: inline-block;
    width: 28px; height: 26px;
    text-align: center;
    background: #ffffff;
    border-radius: 2px;
    color: #000;
    cursor: pointer;
}
#gallery .img-container .play-pause .fa{
    margin-top: 6px;
}
#gallery .img-container .play-pause .fa-pause{
    display: none;
}
#gallery .img-container .play-pause.playing .fa-play{
    display: none;
}
#gallery .img-container .play-pause.playing .fa-pause{
    display: inherit;
}

#gallery .img-container .status{
    font-size: 12px;
    color: #000;
    vertical-align: middle;
}

#gallery .img-container:hover .status-bar{
    opacity: 1;
}
.social_links{
    margin-left: 20px;
    color: #000;
    display: inline-block;
    vertical-align: middle;
}
.social_links a{
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    text-align: center;
}
.social_links a i{
    color: #000;
}
.social_links a:hover i{
    color: #525252;
}
.social_links span{
    margin-right: 10px;
    font-size: 10px;
}

@media (max-width: 768px){
    #gallery .desc-container{
        display: none;
    }
    #gallery .img-container{
        right: 0;
    }
    #gallery .img-container .play-pause{
        display: none;
    }
    .social_links{
        margin-left: 0;
    }
    #gallery .img-container .status-bar{
        padding: 10px 15px;
        opacity: 1;
    }
}
