.ae-slider {
    position: relative;
	width: 100%;
	min-height: 180px;
    margin-bottom: 40px;
	background-color: #dfdfdf;
}
.ae-slider .slick-slide {
	font-size: 0;
}
.ae-slider__slide {
    overflow: hidden;
    position: relative;
}
.ae-slider__image {
    display: block;
    height: auto;
	width: 100%;
}

.ae-slider__list {
	display: none; /* Скрываем изначально */
	opacity: 0;    /* Дополнительно для надежности */
	transition: opacity .3s ease;
}
.ae-slider__list.slick-initialized {
	display: block; /* Показываем только после инициализации */
	opacity: 1;
}

.ae-slider__link {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ae-slider__arrows {
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ae-slider__arrow {
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50%;
    height: 35px;
    outline: none;
    pointer-events: auto;
    position: relative;
    transition: .3s;
    width: 35px;
}

.ae-slider__arrow.slick-disabled {
	opacity: 0;
}
.ae-slider__arrow:focus {
    box-shadow: 0 0 1px 2px #000, 0 0 1px 3px #FFF;
}
.ae-slider__arrow::before {
    background: transparent;
    border-left: 3px solid var(--color-gray-1);
    border-top: 3px solid var(--color-gray-1);
    content: '';
    height: 10px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 10px;
}
.ae-slider__prev {
    float: left;
    left: 10px;
    transform: rotate(-45deg);
}
.ae-slider__next {
    float: right;
    right: 10px;
    transform: rotate(135deg);
}

.ae-slider__dots {
    box-sizing: border-box;
    font-size: 0;
    left: 50%;
    padding: 0 10px;
    position: absolute;
	top: 100%;
	transform: translateX(-50%);
    width: 100%;
    text-align: center;
    margin: 10px auto;
}
.ae-slider__dots > li {
    display: inline-block;
    list-style: none;
    margin: 0 3px;
    pointer-events: auto;
}
.ae-slider__dots > li > button {
	background-color: var(--color-gray-1);
	border: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    height: 14px;
	opacity: .6;
    outline: none;
    padding: 0;
    transition: .2s;
    width: 14px;
}
@media (max-width: 767px) {
    .ae-slider__dots > li {
        margin: 0 2px;
    }
    .ae-slider__dots > li > button {
        height: 12px;
        width: 12px;
    }
}
.ae-slider__dots > li.slick-active > button,
.ae-slider__dots > li > button:hover {
    opacity: 1;
}

.ae-slider__button {
    background-color: #000;
    border-radius: 3px;
    color: #FFF;
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    padding: 7px 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .1s linear;
}

.ae-slider__feedback-form-container {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}