.brass_preloader {
    opacity: .6;
    /*фиксированное позиционирование*/
    position: absolute;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #fff;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 1001;
}

.brass_preloader__row {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.brass_preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #7E227B;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.brass_preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}



.loaded .brass_preloader {
    display: none;
}
.gallery{
    position: relative;
}
.center-btn{
    position: relative;
    top: 50%;
    left: 50%;
    padding: 10px 30px !important;
}
.js-showmore{
    opacity: 0;
}