
.rotateslider-container {
  position: relative;
  width: 1350px;
  height: 460px;
  margin-left: auto;
  margin-right: auto;
}

.rotateslider-container .rotateslider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rotateslider-container .rotateslider-item.next {
  left: 93%;
  opacity: 1;
  width: 170px;
  height: 430px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(3px);
  border-radius: 10px;
  opacity: 0.7;
}
.rotateslider-container .rotateslider-item.next .blockInfo {
  display: none;
}
.rotateslider-container .rotateslider-item.prev .blockInfo {
  display: none;
}
.rotateslider-container .rotateslider-item.next:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.rotateslider-container .rotateslider-item.prev {
  left: 7%;
  opacity: 1;
  width: 170px;
  height: 430px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(3px);
  border-radius: 10px;
  opacity: 0.7;
}
.rotateslider-container .rotateslider-item.prev:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.rotateslider-container .rotateslider-item.now {
  width: 1000px;
  height: 460px;
  z-index: 9;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1), inset 0px 0px 500px 50px rgba(4, 14, 25, 1);
}

.rotateslider-container .arrow {
  display: block;
  height: 110px;
  width: 40px;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.3;
  transition: 0.3s;
}
.rotateslider-container .arrow:hover {
  opacity: 1;
}

.rotateslider-container .arrow.left { left: 0px; background: url(../images/arrow-left.png) center no-repeat; }

.rotateslider-container .arrow.right { right: 0px; background: url(../images/arrow-right.png) center no-repeat; }

/* Barra de rolagem para navegadores Webkit (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Largura da barra de rolagem vertical */
  height: 12px; /* Altura da barra de rolagem horizontal */
}

/* Trilho da barra de rolagem */
::-webkit-scrollbar-track {
  background: #000000; /* Cor de fundo do trilho */
  border-radius: 10px;
}

/* Handle (parte da barra que você puxa) */
::-webkit-scrollbar-thumb {
  background-color: #5f3a81; /* Cor do handle */
  border-radius: 10px; /* Bordas arredondadas */
  border: 3px solid #000000; /* Espaço ao redor do handle */
}

/* Handle ao ser focado ou pressionado */
::-webkit-scrollbar-thumb:hover {
  background-color: #4e2e68; /* Cor do handle ao passar o mouse */
}

/* Handle ao ser ativo */
::-webkit-scrollbar-thumb:active {
  background-color: #3e244f; /* Cor do handle ao clicar */
}

/* Para Firefox */
html {
  scrollbar-width: thin; /* Largura da barra de rolagem */
  scrollbar-color: #5f3a81 #000000; /* Cor do handle e trilho, respectivamente */
}