/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17.06.2020, 14:18:41
    Author     : Damian
*/
.slides{
    list-style: none;
    height: 250px;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    position: relative;
}

.slides li{
    width: 731px;
    float: left;
}

.sliderElement{
    margin: 0 10px;
}

.inactiveElement{
    opacity: 0.5;
}

.slider_btn_left{
    position: absolute;
    height: 250px;
    width: 110px;
    top: 0px;
}

.slider_btn_right{
    position: absolute;
    height: 250px;
    width: 110px;
    top: 0px;
    left: 880px;
}

.slides > li .text_wrap{
    transition: all .3s ease-out;
    bottom: -96px;
}

.slides > li:hover .text_wrap{
    transition: all .3s ease-out;
    bottom: 0px;
}