.catalog__title {

}

.catalog__filter {

}

.catalog__section {

}

.catalog__links {

}

.catalog-container {
    max-width: 1143px;
    width: calc(100% - 120px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}
@media screen and (max-width: 767px) {
    .catalog-container {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
}

.catalog-container-fluid {
    max-width: 100%;
}

.d-none {
    display: none !important;
}

:root {
    --placehodler-color: #9c9c9c;
    --placehodler-color-active: #d6a84f;
    --placehodler-opacity: 0.5;
    --placehodler-cursor: wait;
    --placehodler-animation: placeholder-glow 2s ease-in-out infinite;;
    --placehodler-radius: 0.25em;;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    opacity: 1;
    border-radius: var(--placehodler-radius);
}

.placeholder_width_1 {
    width: 50px;
}

.placeholder_width_2 {
    width: 60px;
}

.placeholder_width_3 {
    width: 70px;
}

.placeholder_width_4 {
    width: 80px;
}

.placeholder_width_5 {
    width: 90px;
}

.placeholder_width_6 {
    width: 100px;
}

.placeholder_width_7 {
    width: 110px;
}


.loading .placeholder {
    opacity: var(--placehodler-opacity);
    color: transparent;
    cursor: var(--placehodler-cursor);
    /*background-color: currentcolor;*/
    background-color: var(--placehodler-color);
    animation: var(--placehodler-animation);
}

@keyframes placeholder-glow {
    /*0%,*/
    /*100% {*/
    /*    opacity: .5;*/
    /*}*/

    50% {
        opacity: .3;
    }
}


/* ===================== */
/*        CHECKBOX
/* ===================== */
.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    padding-left: 28px; /* место под квадрат */
}

/* прячем нативный checkbox, но оставляем доступность */
.custom-checkbox__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    left: 0;
    top: 0;
}

/* квадрат */
.custom-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border: 1px solid #77767D;
    border-radius: 5px;
    background: transparent;
    transition: background .2s ease, border-color .2s ease;
}

/* галочка */
.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) scale(0);
    transition: transform .15s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;

    /* белая галочка */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.custom-checkbox__input:checked + .custom-checkbox__text {
    /* если захочешь менять текст при checked */
}

.custom-checkbox__input:checked ~ .custom-checkbox__text {
}

/* checked состояние: фон + показать галочку */
.custom-checkbox:has(.custom-checkbox__input:checked)::before {
    background: #19191B;
    border-color: #19191B;
}

.custom-checkbox:has(.custom-checkbox__input:checked)::after {
    transform: translateY(-50%) scale(1);
}

/* фокус с клавиатуры */
.custom-checkbox__input:focus-visible + .custom-checkbox__text {
    outline: 2px solid rgba(25, 25, 27, .25);
    outline-offset: 3px;
    border-radius: 6px;
}

.filter-sidebar-bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    display: none;
    background: rgba(0, 0, 0, 0.11);

    z-index: 500;

}