.boosts {
    min-height: 100vh;
    height: auto;
}

.boosts__content {
    display: flex;
    margin: 10px;
}

@media (width < 1206px) {
    .boosts__content {
        flex-wrap: wrap;
    }
}

.boosts__filters {
    background-color: #1a1a1a;
    border-radius: 10px;
    min-width: 20%;
    height: 100%;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (width < 1206px) {
    .boosts__filters {
        margin: 0;
        display: none;
    }

    .boosts__filters.active {
        display: block;
    }
}

@media (width < 487px) {
    .boosts__filters {
        width: 100%;
    }
}

.boosts__filters label:nth-child(6) {
    margin-bottom: 0;
}

.boosts__filters h1 {
    line-height: 1;
    font-size: 2ch;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #3c3c3c;
}

.filters__container {
    background-color: #0f0f0f;
    padding: 10px;
    border-radius: 5px;
}

.boosts__filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1.5ch;
    transition: .3s;
    background-color: #1a1a1a6b;
    border-radius: 5px;
    padding: 5px;
}

.boosts__filter-item:hover {
    color: #a3a3a3;
}

.boosts__filter-item input {
    display: none;
}

.boosts__filter-item .check {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    border: 2px solid #3c3c3c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boosts__filter-item input:checked+.check {
    background: #3c3c3c;
    border-color: #272727;
}

.boosts__filter-item input:checked+.check::after {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #a1a1a1;
}

#applyFilter {
    margin-top: 10px;
    padding: 7px 20px;
    border-radius: 5px;
    border: none;
    background-color: #2c2c2c;
    cursor: pointer;
    color: inherit;
    transition: .3s;
}

#applyFilter:hover {
    background-color: #414141;
    color: #dadada;
}

#applyFilter:active {
    background-color: #a5a5a5;
    color: #dadada;
}

.mobile__filters-buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 10px;
}

@media (width > 1206px) {
    .mobile__filters-buttons {
        display: none;
    }
}

@media (width < 259px) {
    .mobile__filters-buttons {
        margin: 0;
    }
}

#filters__button {
    background-color: transparent;
    border: 1px solid #666666;
    border-radius: 7px;
    color: #666666;
    padding: 8px 20px;
    cursor: pointer;
    transition: .3s;
}

@media (width < 299px) {
    #filters__button {
        padding: 8px 10px;
    }
}

#filters__button:hover {
    border: 1px solid #7e7e7e;
    color: #7e7e7e;
}

#filters__button i {
    margin-right: 10px;
}

@media (width < 259px) {
    #filters__button i {
        display: none;
    }
}

#filters__reset-button {
    background-color: transparent;
    border: 1px solid #666666;
    border-radius: 7px;
    color: #666666;
    padding: 8px 20px;
    cursor: pointer;
    transition: .3s;
}

@media (width < 299px) {
    #filters__reset-button {
        padding: 8px 10px;
    }
}

#filters__reset-button:hover {
    border: 1px solid #7e7e7e;
    color: #7e7e7e;
}

.boosts__catalog {
    margin: 10px;
    display: flex;
    flex-direction: column;
    width: 80%;
}

@media (width < 1206px) {
    .boosts__catalog {
        width: 100%;
    }
}

@media (width < 400px) {
    .boosts__catalog {
        margin-inline: 0;
    }
}

.boosts__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 16px;
    width: 100%;
    justify-content: start;
    justify-items: start;
    box-sizing: border-box;
}

@media (width < 416px) {
    .boosts__cards {
        grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
    }
}

.catalog__title {
    line-height: 1;
    margin-bottom: 20px;
    margin-left: 10px;
    font-weight: 600;
    font-size: 3ch;
    position: relative;
}

.catalog__title::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 5px;
    border-radius: 10px;
    background-color: #3c3c3c;
    left: -15px;
}

.boosts__card {
    height: 240px;
    width: 100%;
    max-width: 180px;
    min-width: 0;
    box-sizing: border-box;
    background-color: #1a1a1a;
    border: 1px solid #3c3c3c;
    border-radius: 10px;
    flex-shrink: 0;
    transition: .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.06);
}

.boosts__card:hover {
    opacity: .9;
    background-color: #838383;
    border: 1px solid #c0c0c0;
}

.boosts__card:active {
    scale: 0.97;
}

.card__content {
    display: flex;
    flex-direction: column;
    padding: 5px;
    height: 100%;
    width: 100%;
}

.card__image {
    width: 100%;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #3c3c3c50;
}

.card__title {
    font-size: 1.5ch;
    text-wrap: nowrap;
}

.card__price {
    font-size: 1.5ch;
    padding: 5px;
    background-color: #3c3c3c50;
    border-radius: 5px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
}

.card__price span {
    margin-left: 5px;
    color: #414141;
    font-size: 1.2ch;
    text-decoration: line-through;
}