﻿*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    /*font-family: Arial, Helvetica, sans-serif;*/
}

html {
    background: rgb(30, 30, 30);
    height: 100%;
}

#wrapper-sliderTv {
    position: relative;
    margin: 0 auto;
   padding-top: 40px;
    width: 1100px;
    height: 545px;
    overflow: hidden;
    
}
#app {
    width: 100%;
    height: 100%;
    background-color: #394957;
}

#sliderTV {
   position: relative;
   margin: 0 auto;
    width: 900px;
    height: 500px;
}

.sliderTV__item {
    width: 300px;
    height: inherit;
    padding: 10px;
}

    .sliderTV__item img {
        width: 260px;
        height: 380px;
        cursor: pointer;
    }

    .sliderTV__item h6 {
        font-size: 14px;
        text-align: center;
        color: whitesmoke;
        position: relative;
        top: 20px;
        text-shadow: 1px 1px 2px rgba(20, 20, 20, 1);
    }

.sliderTV--focus img {
    border: 5px rgba(255, 89, 0, 1) solid;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 2px 2px 40px -8px rgba(255,255,255,0.6);
    -moz-box-shadow: 2px 2px 40px -8px rgba(255,255,255,0.6);
    box-shadow: 2px 2px 40px -8px rgba(255,255,255,0.6);
}

.movie img {
    width: 280px;
}

.sliderTV__bullets {
    position: absolute;
    top: 470px;
    width: inherit;
    height: 25px;
    text-align: center;
}

.sliderTV__bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 4px;
    border-radius: 2px;
    background-color: darkgray;
    -webkit-box-shadow: inset 2px 2px 10px 2px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 2px 2px 10px 2px rgba(0,0,0,0.5);
    box-shadow: inset 2px 2px 10px 2px rgba(0,0,0,0.5);
}

.sliderTV__bullet--active {
    background-color: rgb(255, 106, 26);
}

.sliderTV__prev,
.sliderTV__next {
    font-size: 100px;
    font-weight: 100;
    color: rgb(128, 128, 128);
    cursor: pointer;
    
    

}

.sliderTV__prev {
    position: absolute;
    top: 110px;
    left: -100px;
    width: 50px;
}

.sliderTV__next {
    position: absolute;
    top: 110px;
    left: 950px;
    width: 50px;
}

#sliderTV__mask-left {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 100px;
    height: 550px;
    /*background: -moz-linear-gradient(left, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);
    background: linear-gradient(to right, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0) 100%);*/
}

#sliderTV__mask-right {
    position: absolute;
    top: -50px;
    /*background: -moz-linear-gradient(left, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 1) 100%);
    background: linear-gradient(to right, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 1) 100%);*/
    left: 900px;
    width: 100px;
    height: 550px;
}



@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

