.rotation1,
.rotation2,
.rotation3,
.rotation4,
.rotation5,
.rotation6,
.rotation7,
.rotation8,
.rotation9,
.rotation10,
.rotation11,
.rotation12,
.rotation13,
.rotation14 {
    display: none
}

.rotate-content {
    display: none
}

.rotate-content.active {
    display: flex;
}


.rotating-wheel {
    /*overflow: hidden;*/
    position: relative;
    /*height: 300px;*/
    bottom: 0;
    left: 0;
    right: 0;
    /*padding-top: 2%;*/
    /*padding-left: 10%;*/
    /*padding-right: 10%*/
}

.rotating-wheel img {
    width: 100%;
    overflow: hidden
}

.rotating-wheel .mask {
    position: absolute;
    background-color: transparent;
    opacity: .7;
    width: 70%;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
}

.img-wheel {
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 400ms ease-in;
    -moz-transition: all 400ms ease-in;
    -ms-transition: all 400ms ease-in;
    -o-transition: all 400ms ease-in;
    transition: all 400ms ease-in
}


.scrollers {
    position: relative;
    width: 100%;
    /*height: 60px;*/
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.go-clockwise {
}

.go-anti-clockwise {
}
.go-clockwise, .go-anti-clockwise {
    font-size: 17px;
    padding: 0 15px;
}
.go-clockwise a,
.go-anti-clockwise a {
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: #D9D9D9;

}
.go-clockwise a:hover,
.go-anti-clockwise a:hover {
    color: #7D4EA0;
}
.go-clockwise:hover,
.go-anti-clockwise:hover,
.arrow-left:hover,
.arrow-right:hover {
}

.arrows {
    float: right;
    height: 50px;
    margin-top: 10px
}

.arrow-left {
    width: 40px;
    height: 50px;
    float: left;
    background-image: url(../img/arrow-left-white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    -moz-background-size: 50%
}

.arrow-right {
    width: 40px;
    height: 50px;
    float: left;
    margin-left: 20px;
    background-image: url(../img/arrow-right-white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    -moz-background-size: 50%
}

.arrow-left a,
.arrow-right a {
    width: 50px;
    height: 50px;
    display: block;
    border: 0;
    outline: 0
}

@media screen and (min-width:0)and (max-width:1023px) {
    .rotating-wheel {
        /*overflow: hidden;*/
        position: relative;
        top: 25%;
        bottom: auto;
        /*height: 140px;*/
        padding-left: 2%;
        padding-right: 2%;
    }

    .rotating-wheel .mask {
        width: 68%
    }
    .go-clockwise img,
    .go-anti-clockwise img {
        width: 20px;
        /*position: absolute;*/
        top: 45px;
    }

    .go-clockwise {
        left: 20px;
    }

    .go-anti-clockwise {
        right: 50px;
    }

}