.gallery {
    padding: 64px 0 55px 0;
}
.gallery__list {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1px;
}
.gallery__container {
    display: none;
}
.gallery__container--default {
    display: block;
}
.gallery__item {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.gallery__link::before {
    position: absolute;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    content: '';
}
.gallery__link:hover::before {
    background: none;
}
.gallery__image {
    width: 100%;
    display: block;
}
@media (min-width: 767px) {
    .gallery__list {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery__list {
        grid-template-columns: repeat(10, 1fr);
    }
}
.gallery__filters {
    padding-bottom: 42px;
    display: flex;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .gallery__filters {
        justify-content: left;
    }
}

.gallery__buttons {
    display: none;
}
@media (min-width: 767px) {
    .gallery__buttons {
        display: block;
    }
}
.gallery__buttons button,
.gallery__dropdown {
    background-color: #e3e3e3;
    border: 0;
    font-size: 12px;
    color: #707070;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
    padding: 9px;
    margin: 0 3px 0 0;
    float: left;
    border-radius: 0;
}
.gallery__buttons button:hover,
.gallery__buttons .gallery__button--active {
    color: #fff;
    background-color: #00aeef;
}

.gallery__dropdown {
    background: url('../img/gallery/caret.png') no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fafafa;
    border: 1px solid #eee;
    font-size: 18px;
    width: 90%;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    color: #707070 !important;
}
.gallery__dropdown:focus {
    color: #707070 !important;
}

@media (min-width: 767px) {
    .gallery__buttons button,
    .gallery__dropdown {
        height: 32px;
    }

    .gallery__dropdown {
        width: auto;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .gallery__buttons button,
    .gallery__dropdown {
        font-size: 14px;
        min-width: 105px;
        height: 36px;
    }

    .gallery__dropdown {
        min-width: 188px;
    }
}

@media (min-width: 1200px) {
    .gallery__buttons button,
    .gallery__dropdown {
        font-size: 18px;
        min-width: 136px;
    }

    .gallery__dropdown {
        min-width: 188px;
    }
}
