@charset 'UTF-8';
/* Slider 
.slick-loading .slick-list
{
    background: #fff url('../images/common/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;

    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;
}

@media screen and (min-width: 1000px) {
    .slick-prev,
    .slick-next {
        width: 36px;
        height: 22px;
        margin: auto;
        left: 0;
        right: 0;
    }
}

@media screen and (max-width: 999px) {
    .slick-prev,
    .slick-next {
        width: 22px;
        height: 36px;
    }
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}


.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;

    opacity: .75;
    color: #666;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: .7;
}

.slick-prev
{
    background: url(../images/items/ico_arrow_prev.png) no-repeat center;
    z-index: 10;
}

[dir='rtl'] .slick-prev
{
    right: 0;
    left: auto;
}
.slick-prev:before
{
    content: '';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}
#movie .slick-prev:before
{
    content: '';
}

.slick-next
{
    background: url(../images/items/ico_arrow_next.png) no-repeat center;
    z-index: 10; 
}
@media screen and (min-width: 1000px){
    .slick-prev {
      top: -20px;
    }
    .slick-next {
      bottom: -40px;
    }
  }

@media screen and (max-width: 999px){
  .slick-prev {
    left: -6vw;
    background-size: 100%;
    transform: rotateZ(-90deg);
  }
  .slick-next {
    right: -6vw;
    background-size: 100%;
    transform: rotateZ(-90deg);
  }
}

[dir='rtl'] .slick-next
{
    right: auto;
    left: 0;
}
.slick-next:before
{
    content: '';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}
#movie .slick-next:before
{
    content: '';
}


/* Dots */

.slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -36px;
    display: flex;
    justify-content: center;
    width: auto;
    padding: 0;
    margin: auto;
    list-style: none;
}
.slick-dots li {
    position: relative;
    width: 140px;
    height: 6px;
    margin-right:20px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li:last-child {
  margin-right:0;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.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 button:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 6px;
    content: '';
    text-align: center;
    background: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background: #0055be;
}
.slick-dots li button:hover:before {
    background: #0055be;
}
@media screen and (max-width: 960px) {
  .slick-dots {
    bottom: -5vw; 
  }
  .slick-dots li {
    width: 15vw;
    height: 1.5vw;
    margin-right:2vw;
  }
  .slick-dots li button {
    width: 100%;
    height: 100%;
  }
  .slick-dots li button:before {
    width: 100%;
    height: 1.5vw;
  }
}
