.owl-theme .owl-controls {
    margin-top: -25px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 35px 5px 5px 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-controls .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline
}

.owl-theme .owl-dots .owl-dot span  {
    width: 15px;
    height: 15px;
    margin: 5px 0px 0px 3px;
    background: #acacac;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* nkj 추가  */

/* 현재 실행되는 슬라이드와 실행되지 않는 슬라이드의 아이콘 사이즈 및 색상 설정  */

.owl-dots{
    text-align: left;
    position:relative;
    width:200px;
    top:-50px;
    left:20px;
}
/*.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span*/
.owl-theme .owl-dots .owl-dot.active span {
    width: 35px;
    height: 15px;
    margin: 5px 0px 0px 3px;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #acacac;
    transition: 0.5s;
}

/* 화면 사이즈별 아이콘 사이즈 조정및 위치 조정*/

@media only screen and (max-width: 1024px) {
    .owl-theme .owl-dots .owl-dot span{
        width:12px;
        height:12px;
    }
    .owl-theme .owl-dots .owl-dot.active span {
        width:25px;
        height:12px;
    }
    .owl-dots{
        text-align: left;

        left:10px;
        top:-20px;
    }
}

@media only screen and (max-width: 640px) {
    .owl-theme .owl-dots .owl-dot span{
        width:10px;
        height:10px;
    }
    .owl-theme .owl-dots .owl-dot.active span{
        width:20px;
        height:10px;
    }
    .owl-dots{
        text-align: left;
    }
}


