.slider_wrapper,
.slider_wrapper *{
    -webkit-box-sizing: border-box; 
       -moz-box-sizing: border-box; 
            box-sizing: border-box;
}
ul.slider{
    margin: 0; padding:0;
}
ul.slider li{
    list-style-type: none;
}
.slider-wrapper{
    position: relative;
    width:100%;
    /*height: 210px;*/
    height: 100%;
    min-height: 210px;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: #fff url('../img/loader.gif') center no-repeat;
    background-size: 32px;
}
.slider-wrapper{
}
ul.slider{
    position: absolute;
    top: 0;
    left: 0;
    width:3000px;
    height:100%;
}
.slider li{
    opacity: 0;
    background: #fff url('../img/loader.gif') center center no-repeat;
    background-size: 32px;
    position: relative;
    display: block;
    float: left;
    height: 100%;
    width: auto;
    overflow: hidden;
}
.slider li img{
    height: 100%;
    /*width: 100%;*/
    opacity: 0;
}
.slider-pager{
    position: absolute;
    right: 10%;
    bottom: 10px;
    z-index: 3;
}
.slider-pager li{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: .5em;
    background: rgba(255,255,255,0.75);
    cursor: pointer;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-transition: all .4s ease;
       -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
         -o-transition: all .4s ease;
            transition: all .4s ease;
}
.slider-pager li:hover{
    background-color: rgba(255,255,255,0.90);
}
.slider-pager li.active{
    background-color: rgba(165, 152, 114, 1);
}

.slider-arrow{
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}
.slider-arrow .slider-arrow-icon{
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: -25px;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.5) url('../img/slider-arrow-inv.png') center center no-repeat;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-transition: all .4s ease;
       -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
         -o-transition: all .4s ease;
            transition: all .4s ease;
}
.slider-arrow .slider-arrow-icon:hover{
    background-color: rgba(255,255,255,1);
}
.slider-arrow.slider-arrow-right{
    left: auto;
    right: 0;   
}
.slider-arrow.slider-arrow-right .slider-arrow-icon{
    background-image: url(../img/slider-arrow.png);
}

.slider-item-label{
    position: absolute;
    display: block;
    padding: .2em 1em;
    color: #424242;
    background-color: rgba(255, 255, 255, .8);
    left: 12%;
    top: auto;
    bottom: 10%;
    z-index: 3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}
.slider.slider-touch-enabled{
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.slider.slider-touch-enabled.slider-touch-grabbing{
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

@media (max-width:479px){
    .slider-pager,
    .slider-item-label{
        display: none;
    }
}