.container_slider {
width: 100%;
margin: 0 auto;
max-width: 800px;
}
.slider__wrapper {
overflow: hidden;
} .slider__item {
flex: 0 0 50%;
max-width: 50%; display: flex;
justify-content: center;
align-items: center;
font-size: 7rem;
}
.slider__items_remove {
transform: none !important;
transition: none !important;
}
.slider {
position: relative;
}
.slider__container {
overflow: hidden;
}
.slider__wrapper { }
.slider__items {
display: flex;
transition: transform 0.5s ease;
}
.slider_disable-transition {
transition: none;
}  .slider__control {
transition: all 0.5s ease;
position: absolute;
top: 40%;
display: flex;
justify-content: center;
align-items: center;
width: 50px !important;
height: 50px !important;
text-align: center;
border: 1px solid #eee;
background: #fff !important;
border-radius: 100%;
aspect-ratio: 1 !important;
transform: translateY(-50%);
cursor: pointer;
display: block;
}
.slider__control_hide {
display: block;
}
@media (min-width: 550px) {
.slider__control[data-slide="prev"] {
left: -8px;
}
.slider__control[data-slide="next"] {
right: -10px;
}
}
.slider__control:hover {
text-decoration: none;
transition: all 0.5s ease;
background: #eaeaea;
outline: 0;
}
.slider__control::before {
content: "";
display: inline-block;
width: 15px !important;
height: 15px !important;
transition: all 0.5s ease;
background: transparent no-repeat center center;
border-radius: full;
background-size: 100% 100%;
}
.slider__control[data-slide="prev"]::before {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff4d4d' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.slider__control[data-slide="next"]::before {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff4d4d' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
} .slider__indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 15;
display: flex;
justify-content: center;
margin-top: 0;
margin-right: 15%;
margin-bottom: 0;
margin-left: 15%;
padding-left: 0;
list-style: none;
}
.slider__indicators li {
flex: 0 1 auto;
box-sizing: content-box;
width: 30px;
height: 5px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
background-color: rgba(255, 255, 255, 0.5);
background-clip: padding-box;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
cursor: pointer;
}
.slider__indicators li.active {
background-color: rgb(255 255 255 / 90%);
}
@media (max-width: 550px) {
.slider__item {
flex: 0 0 100%;
max-width: 100%;
}
}