/* PHOTOGALLERY SLIDER */

.photogallery-slider {
    background: #FFF;
    padding-top: 0;
}

.fr-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.photogallery-slider ul {
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.photogallery-slider ul .photogallery-item {
    display: inline-block;
    min-width: 71vw;
    width: 71vw;
    margin: 0 1.5vw 0 0;
    height: 45vw;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

.photogallery-item {
    cursor: pointer;
}

.photogallery-item.active {
    cursor: ew-resize;
}

.photogallery-slider ul li:first-child {
    margin-left: 5vw;
    cursor: ew-resize;
}

.photogallery-item:before {
    display: none;
}

.notslide .photogallery-slider ul {
    height: auto;
    display: block;
}

.notslide .photogallery-slider ul li:first-child,
.notslide .photogallery-slider ul .photogallery-item {
    min-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    cursor: default;
}



.scrollbar {
    width: 90%;
    max-width: 2000px;
    box-sizing: border-box;
    margin: 55px 5%;
    height: 1px;
    background: #c9c9c9;
    line-height: 0;
    position: relative;
    left: 0vw;
}

.scrollbar .handle {
    width: 100px;
    height: 100%;
    background: #292a33;
    cursor: pointer;
    height: 3px;
    position: relative;
    top: -1px;
}

.scrollbar .handle .mousearea {
    position: absolute;
    top: -9px;
    left: 0;
    width: 100%;
    height: 20px
}

.pg-slider-controls {
    display: none;
}

.notslide .scrollbar {
    display: none;
}

/*    .notslide {
        margin-bottom: 70px;
    }*/

.show-more {
    display: none;
}

.notslide .show-more {
    display: block;
    text-align: center;
}

.photogallery-slider .show-more a {
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    margin: 30px auto;
    display: inline-block;
    padding: 7px 30px;
    outline: none;
}

@media screen and (max-width: 900px) {
    .photogallery-slider ul .photogallery-item {
        min-width: 81vw;
        width: 81vw;
        height: 55vw;
    }

    .scrollbar {
        margin: 35px 5% 55px;
    }

    .photogallery-slider .show-more a {
        font-size: 14px;
    }
}