@charset 'UTF-8';
/* Slider */

/* Arrows */


.slick-prev,
.slick-next{
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 12.3vw;
  height: 12.3vw;
  padding: 0;
  z-index: 9;
  cursor: pointer;
  color: transparent;
  outline: none;
  z-index:5;
  transition: all .25s;
  background: #EC1234;
  border:none;
  right:6.1vw;
  bottom:-21vw;
  margin:auto;
  display:flex;
  justify-content:center;
  align-items: center;
}

.slick-prev {
  right:22vw;
}


.slick-prev:before {
  background:url("../images/common/icon-nav-arrow-white.svg")no-repeat;
  background-size: contain;
  background-position: center;
  width:4.1vw;
  height:4.1vw;
  content:"";
  position: absolute;
  right: 0;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
  transform: rotate(180deg);
}

.slick-next:before {
  background:url("../images/common/icon-nav-arrow-white.svg")no-repeat;
  background-size: contain;
  background-position: center;
  width:4.1vw;
  height:4.1vw;
  content:"";
  position: absolute;
  right: 0;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
  
}

@media screen and (min-width:769px) {
  .slick-prev {
    left:initial;
    right:200px;
    top:0;
    bottom:initial;
  }

  .slick-next {
    left:initial;
    right:120px;
    top:0;
    bottom:initial;
  }
  .slick-prev,
  .slick-next{
      width: 64px;
      height: 64px;
  }
  .slick-prev:before,
  .slick-next:before {
      width:24px;
      height:24px;
  }
}


[dir='rtl'] .slick-prev {
    right: 90px;
}

.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}




[dir='rtl'] .slick-next
{
    bottom:0;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */


.slick-dots {
  position: absolute;
  bottom: 4vw;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 3;
  right: 6vw;
}

.slick-dots li {
    position: relative;
    display: block;
    width: 3.07vw;
    height: 3.07vw;
    border-radius: 3.07vw;
    margin: 0 0 0 6vw;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 3.07vw;
    height: 3.07vw;
    border-radius: 3.07vw;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.07vw;
  height: 3.07vw;
  border-radius: 3.07vw;
  content: '';
  text-align: center;
  opacity: 1;
  background: #fff;
}

.slick-dots li.slick-active button:before {
    content: '';
    opacity: 1;
    background: #20B8D4;
}

@media screen and (min-width:769px) {
    .slick-dots {
      bottom: 24px;
      right: 40px;
    }
    .slick-dots li {
      width: 12px;
      height: 12px;
      border-radius: 12px;
      margin: 0 0 0 24px;
    }
  .slick-dots li button {
      width: 12px;
      height: 12px;
      border-radius: 12px;
  }
  .slick-dots li button:before {
    width: 12px;
    height: 12px;
    border-radius: 12px;
  }

}