.carousel-button{
    position: absolute;
    z-index: 100;
    top: calc((269px - 20px)/2 );
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #b1b1b1;
    border: 0;
    opacity: 0.8;

}

.carousel-button:hover, .carousel-button:focus{
    opacity: 1;
    cursor: pointer;
    background-color: rgb(75, 75, 75);
}

#go-left{
    left: 20px;
}

#go-right{
    right: 20px;
}


#go-left::after{
    content: ' ';
    position: absolute;
    top: 50%;
    left: calc( 50% - 3px );
    height: 1px;
    width: 1px;
    transform: translate(-50%, -50%);
    border-right: 10px solid #fff ;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

#go-right::after{
    content: ' ';
    position: absolute;
    top: 50%;
    left: calc( 50% + 3px );
    height: 1px;
    width: 1px;
    transform: translate(-50%, -50%);
    border-left: 10px solid #fff ;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.more-items ul li a {
    display: block;
}



.more-items{
    position: relative;
    height: 100%;
}

.more-items ul li{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    visibility: hidden;    
}


.more-items ul li:nth-child(1){
    visibility: visible;
    z-index: 1;
}

.slider-dot{
    position:absolute;
    z-index: 100;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    bottom: 10px;
    margin: 0 5px;         
}