.download-link {
    color: $film-genre-color;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;

    img {
        margin-left: 5px;
    }

    &:hover {
        color: $film-genre-color;
        text-decoration: none;
    }
}

.stills-scroller {
    position: relative;
    margin-top: 10px;

    .outer-scroller {
        width: 100%;
        overflow-x: hidden;

        @include lt992 {
            overflow-x: auto;
        }

        .inner-scroller {
            position: relative;
            width: 9999px;
            left: 0px;

            @include lt992 {
                left: 0px !important;
            }

            .thumb {
                cursor: pointer;
                float: left;
                padding-right: 25px;
            }
        }
    }

    .arrow-left {
        background-image: linear-gradient(to left, rgba(39, 44, 56, 0.0), $home-container-background);
        bottom: 0;
        cursor: pointer;
        left: 0;
        position: absolute;
        text-align: center;
        top: 0;
        width: 62px;
        z-index: 2;

        img {
            height: 24px;
            left: 15px;
            position: absolute;
            top: calc(50% - 12px);
            width: 12px;
        }
    }

    .arrow-right {
        background-image: linear-gradient(to right, rgba(39, 44, 56, 0.0), $home-container-background);
        bottom: 0;
        cursor: pointer;
        position: absolute;
        right: 0;
        text-align: center;
        top: 0;
        width: 62px;
        z-index: 2;

        img {
            height: 24px;
            position: absolute;
            right: 15px;
            top: calc(50% - 12px);
            width: 12px;
        }
    }

    &:hover .arrow-right,
    &:hover .arrow-left {
        @include lt992 {
            display: none;
        }
    }
}
