.flickitybee:not(.flickitybee-enabled) {
    flex-wrap: nowrap;
    overflow: hidden;
    width: auto;
}

.flickitybee-enabled {
    display: block;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.flickitybee-enabled:focus {
    outline: 0;
    box-shadow: none;
}

.flickitybee-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.flickitybee-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.flickitybee-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.flickitybee-enabled.is-draggable .flickitybee-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.flickitybee-enabled.is-draggable .flickitybee-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.flickitybee-button,
.flickitybee-page-dots {
    display: none;
}

.flickitybee-enabled.is-fade .flickitybee-slider > * {
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .35s ease-in-out, visibility .35s ease-in-out;
}

.flickitybee-enabled.is-fade .flickitybee-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
    opacity: 1;
}

.bee-enabled .flickitybee-viewport {
    transition: height .35s ease;
}

.flickitybee-button {
    position: absolute;
    border: none;
}

.flickitybee-button:hover {
    cursor: pointer;
}

.flickitybee-button:active {
    opacity: .75;
}

.flickitybee-button:disabled {
    opacity: .3 !important;
    cursor: auto;
}

.flickitybee_prev_disable.flickitybee_next_disable .flickitybee-button:disabled,
.flickitybee_prev_disable.flickitybee_next_disable .flickitybee-page-dots {
    display: none !important;
}

.flickitybee-button-icon {
    fill: currentColor;
}

/* Right / left arrows */
.flickitybee-prev-next-button {
    top: var(--prev-next-top, 50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .96);
    color: #111;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.flickitybee-prev-next-button.previous {
    left: 24px;
}

.flickitybee-prev-next-button.next {
    right: 24px;
}

.flickitybee-rtl .flickitybee-prev-next-button.previous {
    left: auto;
    right: 24px;
}

.flickitybee-rtl .flickitybee-prev-next-button.next {
    right: auto;
    left: 24px;
}

.flickitybee-prev-next-button .flickitybee-button-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: currentColor;
}

.flickitybee-prev-next-button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.flickitybee-page-dots {
    position: relative;
    width: 100%;
    bottom: 0;
    z-index: 2;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.flickitybee-rtl .flickitybee-page-dots {
    direction: rtl;
}

.flickitybee:after {
    content: "flickitybee";
    display: none;
}

@media (min-width: 768px) {
    .carousel-disable-md:after {
        content: "";
    }

    .carousel-disable-md.flickitybee:not(.flickitybee-enabled) {
        flex-wrap: wrap;
    }
}

@media (min-width: 1025px) {
    .carousel-disable-lg:after {
        content: "";
    }

    .carousel-disable-lg.flickitybee:not(.flickitybee-enabled) {
        flex-wrap: wrap;
    }

    .bee-carousel__nav-scroller:not(.is__position-bottom) {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-x: visible;
        overflow-y: scroll;
    }

    .bee-carousel__nav {
        flex-wrap: wrap;
    }
}

.flickitybee-enabled,
.flickitybee-slider > .bee-col-item {
    margin-top: 0 !important;
}

.no-js .bee-slideshow-item:not(:first-child) {
    display: none;
}

.bee-carousel__nav-scroller {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.bee-carousel__nav-scroller img {
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.bee-carousel__nav-scroller img.lazyloadbeeed {
    opacity: 1;
}

.bee-carousel__nav {
    flex-wrap: nowrap;
}

.bee-carousel__nav-scroller::-webkit-scrollbar {
    height: 0;
    width: 0;
}

@media (max-width: 767px) {
    .flickitybee-prev-next-button {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }

    .flickitybee-prev-next-button.previous {
        left: 12px;
    }

    .flickitybee-prev-next-button.next {
        right: 12px;
    }

    .flickitybee-rtl .flickitybee-prev-next-button.previous {
        right: 12px;
    }

    .flickitybee-rtl .flickitybee-prev-next-button.next {
        left: 12px;
    }

    .flickitybee-prev-next-button .flickitybee-button-icon {
        width: 14px;
        height: 14px;
    }
}