.stories {
    border-radius: 5px;
    background: #d4e4f2;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: #475669;
    scrollbar-width: thin;
    white-space: nowrap;
    overflow: auto;
}

.stories .bth__bold-link {
    line-height: 21px;
    max-height: 42px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.stories .stories__count {
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    padding: 5px;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2;
    display: block;
    text-align: center;
}

.stories .stories__item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.stories .stories__item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.stories .stories__item:hover .stories__img:not(.fas)::after {
    content: '';
    border-radius: inherit;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.17);
}

.stories .stories__img img {
    border-radius: 5px;
    display: block;
    transition: 0.3s;
}

.stories .stories__img.fas {
    line-height: 90px;
    font-size: 40px;
}

.stories .stories__img {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    background: #d4e4f2;
    color: #ffffff;
    overflow: hidden;
    border: 5px solid #d4e4f2;
    position: relative;
    display: block;
    margin: 0 auto 10px auto;
}

.stories .stories__abs-link {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.stories .stories__item a {
    position: relative;
    z-index: 2;
}

.stories .stories__item.stories__item--loader {
    -webkit-animation: storiesPreviewLoader 5s infinite;
    animation: storiesPreviewLoader 5s infinite;
    background: #ffffff;
}

@keyframes storiesPreviewLoader {

    0% {
        background-color: #ffffff;
    }
    50% {
        background-color: rgba(255, 255, 255, 0.71);
    }
    100% {
        background-color: #ffffff;
    }
}

.stories .stories__item {
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
    min-width: 150px;
    height: 200px;
    color: #475669;
    white-space: normal;
    background: #ffffff;
    max-width: 170px;
    padding: 10px;
    position: relative;
    border-radius: 5px;
    text-align: center;
}

@media screen and (max-width: 1405px) {
    .stories .no-transform {
        text-transform: uppercase !important;
        font-size: 10px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .stories .no-transform {
        line-height: 20px;
    }

    .stories {
        padding: 10px;
    }

    .stories .stories__item .mb5 {
        white-space: nowrap;
    }

    .stories .stories__item {
        width: 145px;
        min-width: auto;
        max-width: none;
    }
}