.fc-carousel {
    width: 100%;
    position: relative;
}


/* Visible window for the flyers */
.fc-carousel-window {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* Sliding track */
.fc-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}


/* Individual flyer */
.fc-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    text-align: center;
}


/* Flyer image */
.fc-flyer-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* Navigation arrows */
.fc-prev,
.fc-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    margin: 0;
    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);

    color: #ffffff;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    z-index: 100;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Previous */
.fc-prev {
    left: 15px;
}


/* Next */
.fc-next {
    right: 15px;
}


/* Arrow hover */
.fc-prev:hover,
.fc-next:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* Flyer counter */
.fc-counter {
    width: 100%;

    margin: 12px 0 0 0;
    padding: 0;

    text-align: center;

    font-size: 14px;
    line-height: 20px;

    font-weight: 500;

    display: block;

    box-sizing: border-box;
}