/* ARROWS */

.ce_kiwislider_start.defaultlayout .navi_arrow {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    -ms-filter: "alpha(opacity=50)"; /* IE 8 */
    transition: 0.3s;
}
.ce_kiwislider_start.defaultlayout .navi_arrow:hover {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"; /* IE 8 */
    background-color: rgba(255,255,255,0.15);
}
.ce_kiwislider_start.defaultlayout.horizontal .navi_arrow {
    background-size: 80%;
    height: 100%;
    width: 10%;
    top: 0;
}
.ce_kiwislider_start.defaultlayout.horizontal .navi_arrow.prev {
    left: 0;
    background-image: url('arrow_left.png');
}
.ce_kiwislider_start.defaultlayout.horizontal .navi_arrow.next {
    right: 0;
    background-image: url('arrow_right.png');
}
.ce_kiwislider_start.defaultlayout.vertical .navi_arrow {
    background-size: auto 80%;
    height: 10%;
    width: 100%;
    left: 0;
}
.ce_kiwislider_start.defaultlayout.vertical .navi_arrow.prev {
    top: 0;
    background-image: url('arrow_up.png');
}
.ce_kiwislider_start.defaultlayout.vertical .navi_arrow.next {
    bottom: 0;
    background-image: url('arrow_down.png');
}
/* DOTS */
.ce_kiwislider_start.defaultlayout .navi_dots {
    position: absolute;
    z-index: 10;
}
.ce_kiwislider_start.defaultlayout .navi_dot {
    cursor: pointer;
    display: inline-block;
    height: 12px;
    width: 12px;
    border: 3px solid #000;
    -moz-border-radius: 9px;
    border-radius: 9px;
    opacity: 0.5;
    -ms-filter: "alpha(opacity=50)"; /* IE 8 */
    transition: 0.4s;
}
.ie8 .ce_kiwislider_start.defaultlayout .navi_dot {
    background-color: #fff;
    overflow: hidden;
}
.ce_kiwislider_start.defaultlayout .navi_dot:hover {
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"; /* IE 8 */
}
.ce_kiwislider_start.defaultlayout .navi_dot {
    margin: 0 9px;
}
.ce_kiwislider_start.defaultlayout.vertical .navi_dot {
    display: block;
    margin: 9px 0;
}
.ce_kiwislider_start.defaultlayout .navi_dot.active {
    background-color: #000;
    opacity: 1;
    -ms-filter: "alpha(opacity=100)"; /* IE 8 */
}
.ce_kiwislider_start.defaultlayout .navi_dots {
    bottom: 5%;
    width: 100%;
    text-align: center;
}
.ce_kiwislider_start.defaultlayout.vertical .navi_dots {
    bottom: 0;
    width: auto;
    right: 5%;
    margin-bottom: 5%;
}
/* TIMER */
.ce_kiwislider_start.defaultlayout .timer_container {
    position: absolute;
    z-index: 10;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px;
}
.ce_kiwislider_start.defaultlayout.horizontal .timer_container {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    max-height: 5%;
}
.ce_kiwislider_start.defaultlayout.vertical .timer_container {
    right: 0;
    top: 0;
    height: 100%;
    width: 10px;
    max-width: 5%;
}
.ce_kiwislider_start.defaultlayout .timer {
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.ce_kiwislider_start.defaultlayout.horizontal .timer {
    height: 100%;
    min-height: 3px;
}
.ce_kiwislider_start.defaultlayout.vertical .timer {
    width: 100%;
    min-width: 3px;
}