/**
 * Popup Gallery
 */
#popup-gallery .modal-dialog {
    height: 720px;
    width: 920px;
}

#popup-gallery .modal-content {
    border: none;
    border-radius: 0;
}

#popup-gallery .modal-content .close {
    display: block;
    background-image: url('../images/gallery/popup-gallery-close.png');
    height: 30px;
    width: 30px;
    margin-right: 25px;
    margin-top: 15px;
    position: relative;
    opacity: 1;
    z-index: 100;
    float: right;
}

#popup-gallery .modal-body {
    padding: 60px;
}

#popup-gallery .carousel .carousel-inner {
    height: 600px;
    width: 800px;
}

#popup-gallery .carousel .carousel-button {
    margin: 250px 10px 0;
    z-index: 10;
}

#popup-gallery .carousel .position {
    font-size: 14px;
    margin-top: 10px;
    float: right;
}

/**
 * Hover
 */
.photo .photo-hover {
    background-image: url('../images/gallery/photo-hover-background.png');
    background-color: rgba(255,255,255,0.75);
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    -o-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.photo:hover .photo-hover {
    opacity: 1;
}