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

/* Arrows */
.slick-prev{position:absolute; top: 50%; left:50px; font-size:15px; color:#bbb;  transform: translate(0, -50%); -webkit-transform: translate(0, -50%); z-index:2; cursor: pointer;-webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; cursor:pointer;}
.slick-prev:hover{left:40px;}
.slick-next{position:absolute; top: 50%; right:50px; font-size:15px; color:#bbb;  transform: translate(0, -50%); -webkit-transform: translate(0, -50%); z-index:2; cursor: pointer;-webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; cursor:pointer;}
.slick-next:hover{right:40px;}

/* Dots */
.slick-dotted.slick-slider{position:relative;}
.slick-dots{position: absolute; bottom: 45px; left:20%;}
.slick-dots li{position: relative; display: inline-block;}
.slick-dots li button{font-size:0; line-height:0; display:nline-block; float:left; width:15px; height:15px; border-radius:15px; margin:3px; background:rgba(255,255,255,0.5); cursor: pointer;}
.slick-dots li button:hover, .slick-dots li button:focus{outline: none;}
.slick-dots li button:hover:before, .slick-dots li button:focus:before{}
.slick-dots li.slick-active button{border:3px solid #fff; background:none;}




/* 슬라이드 프로그래스 바 시작 */
.progress-bar{position:absolute; width:100%; height:5px; bottom:0px;  left:0px; padding:0px; margin:0px; background:rgba(255,255,255,.20);}
.progress-bar p{position:absolute; float:left; width:0px; height:5px; background:#00b0ff; left:0px; bottom:0px;}
.slick-active .progress-bar p{width:100%; animation:progress-bar 2s both;}

@-webkit-keyframes progress-bar{from{width:0px;}to{width:100%;}}
@keyframes progress-bar{from{width:0px;}to{width:100%;}}
/* 슬라이드 프로그래스 바 끝 */ 