.front_stories .item {
    cursor: pointer;
}

.front_stories .item .img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.stories .swiper {
    padding-top: 6px;
}

.front_stories.ROUND .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.front_stories.ROUND .item .img {
    transition: opacity .2s ease-in-out;
}

.front_stories.ROUND .item:hover .img {
    opacity: .7;
}

.front_stories.ROUND .item .img span {
    border-radius: 50%;
}

#main .front_stories.RECTANGLE .tab_slider_wrapp.stories {
    padding-bottom: 72px;
}

.front_stories.RECTANGLE .item .img {
    padding-top: 145%;
}

.front_stories.RECTANGLE .item .img span {
    border-radius: 5px;
}

.front_stories.RECTANGLE .item .img span:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: 0;
    border-radius: 5px;
    transition: opacity .2s ease-in-out;
}

.front_stories.RECTANGLE .item .name {
    visibility: hidden;
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    color: #fff;
    font-size: 1em;
    line-height: 1.2em;
    transition: visibility .2s ease-in-out;
}

@media (min-width:601px) {
    .front_stories.RECTANGLE .item:hover .img span:before {
        opacity: .35
    }

    .front_stories.RECTANGLE .item:hover .name {
        visibility: visible
    }
}

@media (max-width:600px) {
    .front_stories.RECTANGLE .item {
        width: 152px !important
    }

    .front_stories.RECTANGLE .item .img span:before {
        opacity: .35;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
        top: 45.45%
    }

    .front_stories.RECTANGLE .item .name {
        visibility: visible;
        bottom: 14px;
        font-size: 14px;
        line-height: 16px
    }
}

.stories-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

.stories-popup:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: .8;
}

.stories-popup--visible {
    display: block;
}

.stories-popup__close {
    position: absolute;
    right: 23px;
    top: 27px;
    cursor: pointer;
    transition: opacity .1s ease-in-out;
    z-index: 2;
    width: 50px;
    height: 50px;
    text-align: center;
}

.stories-popup__close svg {
    position: relative;
    top: 4px;
}

.stories-popup__close:hover {
    opacity: .8;
}

.aspro_slider_init .stories-popup__section-slider-loader {
    display: none;
}

.stories-popup__section-slider:not(.aspro_slider_init) .stories-popup__section-slider-inner {
    opacity: 0;
}

.stories-popup__section-slider-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -27px;
    margin-left: -24px;
}

.stories-popup__section-slider-loader svg path {
    fill: #fff;
}

.stories-popup__section-slider {
    display: flex;
    align-items: center;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    right: 0;
}

.stories-popup__section-slider-inner {
    height: 100%;
}

.stories-popup__element-slider {
    width: 345px;
    max-width: 100vw;
    position: relative;
    height: 100%;
    width: 462px;
    transform: scale(.75);
    transition: transform .25s ease-out, margin .25s ease-out;
    will-change: transform, margin;
    border-radius: 5px;
    overflow: hidden;
}

.stories-popup__element-slider-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    opacity: 0;
}

.stories-popup__element-slider-panel:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 70px;
}

.stories-popup__element-slider--active .stories-popup__element-slider-panel {
    opacity: 1;
}

.stories-popup__element-slider-panel-element {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .5);
}

.stories-popup__element-slider-panel-element--active .stories-popup__element-slider-panel-element-line {
    animation: story-bar-progressing forwards linear;
}

.stories-popup__element-slider-panel-element--finishied .stories-popup__element-slider-panel-element-line {
    transform: scaleX(1);
    animation: none;
}

.stories-popup__element-slider--paused .stories-popup__element-slider-panel-element-line {
    animation-play-state: paused;
}

.stories-popup__element-slider-panel-element-line {
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    animation-duration: 5s;
}

.stories-popup__element-slider-panel-element+.stories-popup__element-slider-panel-element {
    margin: 0 0 0 2px;
}

.stories-popup__element-slider-header {
    position: absolute;
    top: 22px;
    left: 10px;
    display: flex;
    align-items: center;
}

.stories-popup__element-slider-header-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 9px;
    flex-shrink: 0;
    background-size: cover !important;
}

.stories-popup__element-slider-header-name {
    color: #fff;
    font-size: 13px;
    margin: -1px 0 0 0;
}

.stories-popup__element-slider--active {
    width: 462px;
    transform: scale(1);
    margin-left: 8vw;
    margin-right: 8vw;
}

.stories-popup__element {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease-out, visibility .25s ease-out;
    will-change: opacity, visibility;
}

.stories-popup__element-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover !important;
}

.stories-popup__element-btn {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.stories-popup__element-slider-navs {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
}

.stories-popup__element-slider-navs-prev,
.stories-popup__element-slider-navs-next {
    width: 50%;
    cursor: pointer;
}

.stories-popup__element--active {
    opacity: 1;
    visibility: visible;
}

@keyframes story-bar-progressing {
    0% {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@media (max-width:1025px) {
    .stories-popup__element-slider--active {
        margin-left: 4vw;
        margin-right: 4vw
    }
}

@media (max-width:566px) {
    .stories-popup__section-slider {
        top: 0;
        bottom: 0
    }

    .stories-popup__element-slider--active {
        margin: 0;
        border-radius: 0
    }

    .stories-popup__element-slider {
        width: 100vw;
        transform: none;
        border-radius: 0
    }

    .stories-popup__close {
        right: 4px;
        top: 19px
    }
}

.stories-item__image {
    max-width: 120px;
    width: 100%;
}

.stories-slider:not(.swiper-initialized) .stories-slider__item {
    width: calc(100% / 8);
}

@media screen and (max-width:1199px) {
    .stories-slider:not(.swiper-initialized) .stories-slider__item {
        width: calc(100% / 6)
    }
}

@media screen and (max-width:1099px) {
    .stories-slider:not(.swiper-initialized) .stories-slider__item {
        width: calc(100% / 5)
    }
}

@media screen and (max-width:991px) {
    .stories-slider:not(.swiper-initialized) .stories-slider__item {
        width: calc(100% / 4)
    }
}

@media screen and (max-width:600px) {
    .stories-slider:not(.swiper-initialized) .stories-slider__item {
        width: calc(100% / 3)
    }
}

@media screen and (max-width:424px) {
    .stories-slider:not(.swiper-initialized) .stories-slider__item {
        width: calc(100% / 2)
    }
}