.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

.callbacks_container { position: relative; }

.rslides_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 50%;
  left: 16px;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 48px;
  width: 48px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  margin-top: -24px;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.callbacks_container:hover .rslides_nav { opacity: 1; }

.rslides_nav:hover { background: rgba(255,255,255,1); }

.rslides_nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  width: 12px;
  height: 12px;
  border-left: 2.5px solid #1a1a2e;
  border-bottom: 2.5px solid #1a1a2e;
  transform: translate(-50%, -50%) rotate(45deg);
}

.rslides_nav.next {
  left: auto;
  right: 16px;
}

.rslides_nav.next::before {
  left: 46%;
  border-left: none;
  border-bottom: none;
  border-right: 2.5px solid #1a1a2e;
  border-top: 2.5px solid #1a1a2e;
}

ul.rslides_tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 999;
  margin: 0;
}

ul.rslides_tabs li {
  display: inline-block;
  font-size: 0;
  padding: 0;
}

ul.rslides_tabs li a {
  display: block;
  width: 12px;
  height: 12px;
  font-size: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.8);
}

ul.rslides_tabs li a:hover {
  background: rgba(255,255,255,0.8);
}

ul.rslides_tabs li.rslides_here a {
  background: #01aef0;
  border-color: #01aef0;
  transform: scale(1.15);
}
