.react-i-slider {
    position: relative;
}

.react-i-slider ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.react-i-slider-prev,
.react-i-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: transparent;
    outline: 0;
    border: 0;
    cursor: pointer;
}

.react-i-slider-prev svg,
.react-i-slider-next svg {
    color: var(--color-highlight);
    width: 25px;
    height: 25px;
}

.react-i-slider-prev {
    left: 0;
}

.react-i-slider-next {
    right: 0;
}

.react-i-slider-list {
    transition: all ease-in;
}

.react-i-slider-list > ul {
    position: relative;
}
.react-i-slider-list > ul > li {
    display: inline-block;
}

.react-i-slider-pager {
    position: absolute;
    text-align: center;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.react-i-slider-pager li {
    display: inline-block;
    margin: 0 5px;
}

.react-i-slider-pager button {
    padding: 0;
    outline: 0;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-alt-bg);
    cursor: pointer;
}

.react-i-slider-pager .is-active {
    background: var(--color-highlight);
}

.test {
    box-sizing: border-box;
    padding: 10px;
}

.react-i-slider img {
    width: 100%;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
