.film_roll_wrapper {
    display: block;
    text-align: center;
    float: none;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: auto;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    z-index: 0;
}

.film_roll_shuttle {
    text-align: left;
    float: none;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    margin: 0 !important;
    padding: 0 !important;
    z-index: auto;
}

@media only screen and (max-width:1280px) {
    .film_roll_pager {
        position: absolute;
        text-align: center;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 1000px;
        z-index: 100;
    }

    .slide.film_roll_child {
        position: relative;
        display: inline-block;
        opacity: 0.1 !important;
        transition: 0.8s ease !important;
    }

    .slide.film_roll_child.active {
        opacity: 1 !important;
    }
}

@media only screen and (min-width:1281px) {
    .film_roll_pager {
        position: absolute;
        text-align: center;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100%;
        z-index: 100;
    }

    .slide.film_roll_child {
        position: relative;
        display: inline-block;
        opacity: 0 !important;
        transition: 0.8s ease !important;
    }

    .slide.film_roll_child.active {
        opacity: 1 !important;
    }
}

.film_roll_pager a,
a.film_roll_prev,
a.film_roll_next {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.film_roll_pager a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: 0.3s ease;
}

.film_roll_pager a:hover::before {
    opacity: 0;
}

.film_roll_pager a.active::before {
    opacity: 0;
}