a {
    color: #1063B0;
}

.catalog-filter {
    margin: 0 16px;
    font-family: "Rajdhani", Sans-serif;
}
.catalog-filter .selects {
    display: flex;
    gap: 42px;
    align-items: flex-end;
    padding-bottom: 32px;
    border-bottom: 2px solid black;
    margin-bottom: 32px;
}
.catalog-filter .select {
    flex: 1 1 0;
}
.catalog-filter .select h3 {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}
.catalog-filter .select-input {
    position: relative;
}
.catalog-filter .select-input::before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 16px;
    height: 16px;
    border-left: 3px solid black;
    border-bottom: 3px solid black;
    transform: rotate(-45deg);
    pointer-events: none;
}
.catalog-filter .selects select {
    background: white;
    border: 2px solid black;
    border-radius: 0;
    font-size: 17px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    padding: 12px 16px;
    cursor: pointer;
    appearance: none;
}
.catalog-filter .selects option {
    color: black;
    font-weight: bold;
}
.catalog-filter .selects select:not(.selected), .catalog-filter .selects option:first-child {
    color: gray;
}
.catalog-filter .sliders {
    display: flex;
    gap: 55px;
    margin-bottom: 32px;
}
.catalog-filter .slider {
    flex: 1 1 0;
}
.catalog-filter .slider h3 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
}
.catalog-filter .slider .container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.catalog-filter .slider .number {
    font-weight: bold;
    font-size: 20px;
}
.catalog-filter .slider .number.min {
    text-align: right;
}
.catalog-filter .slider .bar {
    flex-grow: 1;
    background: white;
    box-shadow: 0 0 2px gray;
    height: 8px;
    border-radius: 4px;
    position: relative;
}
.catalog-filter .slider .button {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    border: 1px solid white;
    background: black;
    margin-left: -8px;
    margin-top: -4px;
    cursor: pointer;
}
.catalog-filter .slider .button.min {
    left: 0;
}
.catalog-filter .slider .button.max {
    left: 100%;
}
.catalog-filter .slider .fill {
    position: absolute;
    background: black;
    height: 10px;
    left: 0;
    width: 100%;
    margin-top: -1px;
}
.catalog-filter .actions {
    margin-top: 50px;
}
.catalog-filter .actions button {
    border-radius: 0;
    color: white;
    border-color: #1063B0;
    background: #1063B0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 30px;
}
.catalog-filter .actions button:hover {
    background: white;
    color: #1063B0;
}
.active-filters {
    font-family: "Rajdhani", Sans-serif;
    font-weight: bold;
    margin: 50px 16px 16px;
    font-size: 16px;
}
.active-filters h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: bold;
}

.paging {
    font-family: "Rajdhani", Sans-serif;
    text-align: center;
    font-size: 20px;
}
.paging .page {
    display: inline-block;
    padding: 0 10px;
}

@media (max-width: 1280px) {
    .catalog-filter .selects {
        flex-wrap: wrap;
    }
    .catalog-filter .select {
        min-width: 200px;
    }
}


@media (max-width: 768px) {
    .catalog-filter .sliders {
        flex-direction: column;
    }
}