@-webkit-keyframes loading {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.page-header__content {
    font-family: Pangea;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 41px;
    color: #000;
    background: #fbff00;
    padding: 10px;
    text-align: center;
}

.page__content {
    font-size: 16px;
    line-height: 1.5em
}

.filter-select {
    display: flex;
    margin-left: -8px;
    margin-right: -8px
}

.filter-select__item {
    padding: 0 8px
}

.filter-select__item .custom-select {
    width: 150px
}

.filter-popup {
    position: relative;
    padding: 16px 9px;
    border-bottom: 1px solid #d9d9d9
}

.filter-popup__close {
    display: block;
    position: absolute;
    top: 15px;
    right: -10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0)
}

.filter-popup__close:after,
.filter-popup__close:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #000;
    transform: translate3d(-50%, -50%, 0);
    transition: all .3s;
    border-radius: 100px
}

.filter-popup__close:after {
    top: calc(50% - 1px);
    left: calc(50% - 7px);
    transform: translateZ(0) rotate(45deg)
}

.filter-popup__close:before {
    top: calc(50% - 1px);
    left: calc(50% - 7px);
    transform: translateZ(0) rotate(-45deg)
}

.filter-popup__wrapper {
    display: flex;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: 10px
}

.filter-popup__title {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: .03em;
    color: #000;
    margin-bottom: 4px
}

.filter-popup__select {
    padding: 4px;
    cursor: pointer;
    min-width: 64px
}

.filter-popup__select .checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 30px;
    padding: 0 7px;
    border-radius: 12px;
    background-color: #d9d9d9;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #000;
    transition: all .3s;
    overflow: hidden;
    position: relative;
    white-space: nowrap
}

.filter-popup__select input {
    display: none!important
}

.filter-popup__select input:checked~.checkmark {
    background-color: #000;
    color: #fff
}

.filter-popup__select input:checked~.checkmark--color:after,
.filter-popup__select input:checked~.checkmark--color:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.filter-popup__select input:checked~.checkmark--color:after {
    border: 2px solid #2f5acf;
    border-radius: 12px
}

.filter-popup__select input:checked~.checkmark--color:before {
    border: 4px solid #fff;
    border-radius: 12px
}

.product-filter-block {
    margin-bottom: 1rem
}

.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
    line-height: 1.25em
}