
.slider-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-viewport{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow:hidden
}
.slider-viewport.dragging {
  cursor: grabbing;
}
.slider-list{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.slider-item{
    width: 100%;
    height: 100%;
}
.some-slider-item{
    width: 200px;
    height: 200px;
}
.some-slider-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.slider-control-buttons{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 7;
}

.slider-control-buttons{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 7;
    transform: translate(0,-50%);
    padding: 0 8px;
    box-sizing: border-box;
}

.slider-control-buttons button{
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: none;
    background-color: var(--color-dark);
    fill: var(--color-white);
    color: var(--color-white);
    transition: background-color 0.4s ease;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

}
.slider-control-buttons svg{
    width: 16px;
    height: 12px;
    fill: var(--color-white);
    color: var(--color-white);
}
.slider-control-buttons button:first-child{
    transform: rotate(180deg);
   
}
.slider-control-buttons button:disabled{
    background-color: #b3b3b3;
}
.slider-control-buttons button:not(:disabled):hover svg {
    transform: scale(1.15) translateX(2px);
}

.slider-indicator-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background: #6C757D;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 32px;
  background: #007BFF;
}

.slider-dot-primary{
    background: #FFFFFF;
    opacity: 0.3;
}
.slider-dot-primary.active{
    background: #FFFFFF;
    opacity: 1;
}


.bottom-buttons{
    position: absolute;
    justify-content: center;
    gap: 4px;
    bottom:0;
    top: auto;
    transform: none;
}

@media (max-width:  600px) {
  .bottom-buttons{
    position: absolute;
    visibility: hidden;
  }

  .slider-indicator-dots{
    position: absolute;
    justify-content: center;
    visibility: visible;
    bottom: 0;
  }
}
