/* Carousel Container */
.ashwered-label-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.ashwered-label-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}

/* Active Slide */
.ashwered-label-slide.active {
    opacity: 1;
    visibility: visible;
}

/* "+N" Badge */
.ashwered-label-more-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #333;
    color: #fff;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1;
    z-index: 10;
}
