/*Стрелки слайдера*/
.slider-arrows button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.slider-arrows img {
    display: block;
    width: 40px;
    height: auto;
}

/*настройки точек*/
.slick-dots {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    margin-top: 15px;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    background-color: #C6C6C6;
    border-radius: 10px;
}

.slick-dots li {
    display: flex;
    list-style: none;
}

.slick-dots li.slick-active button {
    background-color: var(--NoElectricBlue);
}

.slick-dots button {
    padding: 0;
    width: 6px !important;
    height: 6px !important;
    background-color: var(--SuperWhite);
    border-radius: 50%;
    border: none;
    font-size: 0;
}

@media (min-width: 768px) {
    .slick-dots {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .slider-arrows {
        display: none;
    }
}
