.customCarousel-inner {
    height: 90%;
    overflow: auto;
}

.customCarousel-indicators {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    align-items: baseline;
}

.customCarousel-indicators.carouselIndicatorsNumbers{
    position: sticky;
    bottom:0
}

.customCarousel-indicators.carouselIndicatorsNumbers > * {
    color: #134058;
    text-indent: 0;
    font-size: large;
    background: none;
    border: none;
    cursor: pointer;
}

.customCarousel-indicators.carouselIndicatorsNumbers > .active {
    font-size: x-large;
    font-weight: bold;
    text-decoration: underline;
}

.customItem {
    display: none;
    position: absolute;
    left:0;
    text-overflow: clip;
    width: 100%;
}

.customItem.active {
    display: contents;
}

.customCarousel-indicators.carouselIndicatorsNumbers > .customCarousel-left {
    padding-right: 10px;
}

.customCarousel-indicators.carouselIndicatorsNumbers > .customCarousel-right {
    padding-left: 10px;
}