/* <<< --- Clubs --- >>> */

#clubs .section-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.clubs-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 390px;
    padding: 40px 0;
}



#clubs .pattern {
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 1160px;
    max-width: var(--max-width);
    height: auto;
}

.distance {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    background-color: var(--white);
    border: 1px solid var(--white-2);
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    height: 40px;
}
@media screen and (hover: hover) {
    .distance:hover {
        border: 1px solid var(--color);
    }
}

.distance-range {
    z-index: 10;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    -webkit-appearance: none;
    background: var(--black);
    cursor: pointer;
}
.distance-range::-webkit-slider-runnable-track, .distance-range::-moz-range-track, .distance-range::-ms-track {
    height: 2px;
    border-radius: 4px;
    background: var(--black);
}

.distance-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color);
    border: 1px solid var(--black);
    border-radius: 50%;
    cursor: pointer;
}
.distance-range::-moz-range-thumb, .distance-range::-ms-thumb {
    width: 20px;
    height: 20px;
    background: var(--color);
    border: 1px solid var(--black);
    border-radius: 50%;
    cursor: pointer;
}
.distance-range-ticks {
    position: absolute;
    z-index: 1;
    top: calc(50% - 3px);
    left: 20px;
    width: calc(100% - 100px);
    height: auto;
    padding: 0 7px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.distance-range-ticks * {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--black);
}

.distance-value {
    width: 40px;
    min-width: 40px;
    height: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: var(--black);
}

.filter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    height: auto;
    overflow: visible;
}

.filter button {
    width: 110px;
    height: 80px;
    padding: 15px 0;
    background-color: var(--white);
    border: 1px solid var(--white-2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    line-height: 15px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
}
.filter button.active {
    background-color: var(--color);
    border: 1px solid var(--color);
    pointer-events: none;
}
@media screen and (hover: hover) {
    .filter button:hover {
        border: 1px solid var(--color);
    }
}

.filter button img {
    width: auto;
    height: 22px;
    filter: var(--filter-black);
}

@media screen and (max-width: 600px) {
    .clubs-content {
        height: auto;
        margin-bottom: 60px;
    }
    .filter button {
        width: calc(50% - 10px);
    }
}