.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 4px;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--Grey-Light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav.prev {
    left: 16px;
    box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.24);
    border: 2px solid var(--Primary);
    transition: 0.3s ease all;
}

.carousel-nav.next {
    right: 16px;
    box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.24);
    border: 2px solid var(--Primary);
    transition: 0.3s ease all;
}

.carousel-nav.prev:hover, .carousel-nav.next:hover {
    background-color: var(--WhiteDark);
}

.carousel-nav.hidden {
    display: none;
}

.carousel-nav.next .material-symbols-outlined {
    font-size: 30px;
    margin-left: 4px;
}

.carousel-nav.prev .material-symbols-outlined {
    font-size: 30px;
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin: 0px 4px;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    height: 100%;
    background: var(--Primary);
    opacity: 0.333;
    border-radius: 2px;
    width: 20%;
    left: 0;
    transition: transform 0.3s ease;
}