#slider_container
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/slider_container_bg.png);
    background-repeat: repeat;
    z-index: 15000;
    text-align: center;
    overflow-y: auto;
    display: none;
}

#slider_outter
{
    position:relative;
    /*top:20%;*/
    margin: 0 auto;
    width: 95%;
    max-width: 1600px;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.8);
    padding-top: 0px;
    padding-bottom: 10px;
    margin-top: 10%;
    border-radius: 5px;
    overflow: hidden;
}

.slider_close
{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    width: 15px;
    height: 16px;
    background-image: url(../images/slider_close.png);
    opacity: 0.5;
    transition: all, 0.3s;
}

.slider_close:hover
{
    opacity: 1;
}

#slider_content
{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.one_slide
{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    max-height: 500px;
    border-radius: 5px;
    overflow: hidden;
}

.one_slide>h2
{
    position: relative;
    top: 0px;
    width: 100%;
    background: rgb(245,245,245);
    background: -moz-linear-gradient(top,  rgba(245,245,245,1) 0%, rgba(232,232,232,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(245,245,245,1) 0%,rgba(232,232,232,1) 100%);
    background: linear-gradient(to bottom,  rgba(245,245,245,1) 0%,rgba(232,232,232,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e8e8e8',GradientType=0 );
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.one_slide>img
{
    position: relative;
    top: 0px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    border: 1px solid #DDDDDD;
}

.owl-buttons div
{
    background-color: none !important;
}

.owl-prev
{
    position: absolute;
    top: 225px;
    left: 15px;
    width: 52px;
    height: 87px;
    background-color: none;
    background-image: url(../images/arrow_left.png);
}

.owl-next
{
    position: absolute;
    top: 225px;
    right: 15px;
    width: 52px;
    height: 87px;
    background-color: none;
    background-image: url(../images/arrow_right.png);
}