/*@charset 'UTF-8';*/
 /*Slider */
.slick-loading .slick-list
{
    background: #fff url('/pic/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'Glyphicons Halflings';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/glyphicons-halflings-regular.eot');
    src: url('./fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('./fonts/glyphicons-halflings-regular.woff') format('woff'), url('./fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('./fonts/glyphicons-halflings-regular.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    position: absolute;
    top: 50%;

    display: block;

    width: 22px;
    height: 45px;
	
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 0.8;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .0;
}

.slick-prev:before,
.slick-next:before
{
    opacity: 1;
   

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -20px;
}
[dir='rtl'] .slick-prev
{
    right: -20px;
    left: auto;
}

.slick-prev:before
{
   content: '';
   position:absolute;
   bottom:10px;
   right:0px;
   width:22px;
   height:35px;
   
   background:url('./pic/prev-submenu.svg');
	
}
[dir='rtl'] .slick-prev:before
{
   content: '';
   position:absolute;
   bottom:10px;
   right:0px;
   width:22px;
   height:35px;
   
   background:url('./pic/prev-submenu.svg');
	
}

.slick-next
{
	right: -22px;
	
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -22px;
}

.slick-next:before
{
    content: '';
   position:absolute;
   bottom:10px;
   right:0px;
   width:22px;
   height:35px;
  
   background:url('./pic/next-submenu.svg');
}
[dir='rtl'] .slick-next:before
{
     content: '';
   position:absolute;
  	bottom:10px;
   right:0px;
   width:22px;
   height:35px;
 
   background:url('./pic/next-submenu.svg');
}

