/* -------------- HOVER ZOOM -------------- */

.hover-zoom {
    transition: 0.2s;
}

.hover-zoom:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* -------------- RESULTS LOADER -------------- */
.bentral-search-loader{
    width: 100%;
    text-align: center;
    padding: 40px;
}

.bentral-animation {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.bentral-animation div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: rgba(0, 0, 0, 0.2);
    animation: bentral-animation 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.bentral-animation div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}
.bentral-animation div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}
.bentral-animation div:nth-child(3) {
    left: 56px;
    animation-delay: 0ms;
}

@keyframes bentral-animation {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

.bentra-empty-search-result{
    text-align: center;
    padding: 40px;
}

.bentra-error-search-result {
    text-align: center;
    padding: 40px;
}


/* -------------------- SWIPER ------------------- */
.story__slider {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}
.story__slide {
    position: relative;
}
.story__slide video,
.story__slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.story__pagination {
    bottom: unset !important;
    top: 8px !important;
    display: flex;
    padding: 0 4px;
}
.story__pagination .swiper-pagination-bullet {
    flex-grow: 1;
    border-radius: 100vh;
    height: 3px;
    margin: 0 2px !important;
    background-color: rgba(247, 247, 245, 0.4);
    opacity: 1;
}
.story__pagination .swiper-pagination-bullet .swiper-pagination-progress {
    height: 100%;
    width: 0%;
    border-radius: 100vh;
    background-color: #f7f7f5;
}
.story__prev, .story__next {
    height: 100%;
    width: 50%;
    top: 0;
    margin-top: 0;
}
.story__prev::after, .story__next::after {
    content: none;
}
.story__prev {
    left: 0;
}
.story__next {
    right: 0;
}

.story__slider .slider-image {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(0 0 0 / 50%)!important;
}

.bentral-result {
    visibility: hidden;
    -webkit-transition: border-color .25s ease-in;
    -moz-transition: border-color .25s ease-in;
    -o-transition: border-color .25s ease-in;
    transition: border-color .25s ease-in;
}

.bentral-result.visible {
    visibility: visible;
}