@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 8px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background: url(../../../img/icon/arr2.svg) center/cover no-repeat;
    bottom: 5%
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled
{
    opacity: .6;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 0%;
    transform: rotateY(180deg)
}
[dir='rtl'] .slick-prev
{
    left: 0;
}

.slick-next
{
    right: 0%; 
}

/* Dots */
.slick-dotted.slick-slider
{
/*    margin-bottom: 30px;*/
}

.slick-dots
{
    position: absolute;
    bottom: 5%;
    right: 1%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    width: 90%;
    left: 5%
}
@media screen and (max-width:768px) {
    .slick-prev,
    .slick-next {
/*        top: 120px*/
        bottom: 0px;
    }
    .slick-prev
{
    left: 0;
}
    .slick-next
{
    left: calc(100% - 50px); 
}
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    list-style: none;
    border-radius: 50%;
    background: rgba(34, 93, 94, 0.2)
}
.slick-dots li button
{
    display: none;
    cursor: pointer;
    border: 0;
    outline: none;
    background: none;
    color: #fff;
    font-size: 18px;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}

.slick-dots li.slick-active {
    background: #225D5E;
}