.carousel ul {overflow: auto; display: flex; flex-wrap: nowrap; scroll-snap-type: x mandatory; scroll-snap-points-y: repeat(100%); scroll-behavior: smooth;  -ms-overflow-style: none; scrollbar-width: none; margin: 0; padding: 0; flex-grow: 1; position: relative; width: 100%;}
.carousel ul::-webkit-scrollbar {display: none; /* Hide scrollbar for Chrome, Safari and Opera */} 
.carousel ul li {position: relative; min-width: 100%; list-style: none; scroll-snap-align: start;}
.carousel ol {position: absolute; bottom: 0; display: flex; left: 50%; transform: translateX(-50%); z-index: 9; gap: 0.25rem;}
.carousel ol li {list-style: none;}
.carousel ol li a {display: block; height: 0.5rem; width: 0.5rem; background: rgba(255,255,255,0.5); border-radius: 100%;}
.carousel ol li.selected a {background: white;}
.carousel .prev, .carousel .next {
    display: none; 
    user-select:none; 
    cursor: pointer; 
    font-size: 50px; 
    color: white; 
    position: absolute; 
    left: 0; 
    margin-left: -6rem;
    top: 50%; 
    transform: translateY(-150%); 
    z-index: 9; 
    line-height: 0;
    width: 0; 
    height: 0; 
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-right: 1rem solid white;
}
.carousel .next {
    left: auto; 
    right: 0;
    border-left: 1rem solid white;
    border-right: 0;
    margin-right: -6rem;
}