.flex-carousel {
    --fixed-width: unset;
    display: flex;
    align-items: center;
    position: relative;
}
.flex-carousel.fixed .track-container, .flex-carousel.fixed .track > * {
    max-width: var(--fixed-width)!important;
}
.flex-carousel.fixed .track-container {
    margin-inline: auto;
}
.flex-carousel .prev-btn,
.flex-carousel .next-btn {
    cursor: pointer;
    position: absolute;
    display: flex;
    height: 100%;
    align-self: stretch;
    align-items: center;
    background: var(--bg-color);
    z-index: 1;
}
.flex-carousel .prev-btn[data-hidden="1"],
.flex-carousel .next-btn[data-hidden="1"] {
    opacity: 0;
    pointer-events: none;
    touch-action: none;
}
.flex-carousel .prev-btn {
    left: 0; 
    margin-left: -0.4rem;
    box-shadow: 10px 0 5px 0  var(--bg-color);
}
.flex-carousel .next-btn {
    right: 0; 
    margin-right: -0.4rem;
    box-shadow: -10px 0 5px 0  var(--bg-color);
}
.flex-carousel .prev-btn > span,
.flex-carousel .next-btn > span {
    background-color: var(--scndr);
    border-radius: 50%;  
}
.flex-carousel img.arrow {
    filter: var(--fc-f);
}
.flex-carousel .prev-btn > span:hover,
.flex-carousel .next-btn > span:hover {
    background-color: var(--scndr-hov);
}
.flex-carousel .track-container {
    flex: 1 1 auto;
    align-self: stretch;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
    position: relative;
    scroll-behavior: smooth;
    display: flex;
    scroll-padding-inline: 2rem;
}
.flex-carousel .track-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.flex-carousel .track {
    position: absolute;
    display: flex!important;
    flex: 1 1 0;
    flex-flow: row nowrap!important;
    align-items: center;
    scroll-behavior: smooth;
    opacity: 1;
    transition: opacity ease-in-out 0s;
    z-index: 0;
}
.flex-carousel .track > * {
    flex: 0 0 auto;
}
.flex-carousel .prev-btn .arrow {
    transform: scaleX(-1);
}