.main-slider__container {
    position: relative;
    overflow: hidden;
}

.main-slider__wrapper {
    position: relative;
    width: 100%;
    transition: height 0.5s ease-in-out;
}

.main-slider__item {
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.main-slider__item.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.main-slider__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.main-slider__bottom-arrow {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

.main-slider__bottom-prev {
    transform: rotate(180deg);
}

.main-slider__bottom-next {
    transform: rotate(0deg);
}

.main-slider__counter {
    margin: 0 20px;
    font-size: 1rem;
    color: #333;
}
