/*
 * author : Dwikky Maradhiza Yudakusuma
 * email : dwikkymaradhiza@yahoo.com
 * filename : D-Slide Plugin
 */

#D-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
#D-slide > div.slider {
    position: absolute;
    width: 100%;
    height: 100%;

}
/* buat text di dlm slide */
#D-slide > div > div.in-slide{
    text-align: right;
    color: #AAA;
    font-size: 20px;
    font-weight: bold;
    background: rgba(255,255,255,0.8);
    margin: 10px;
    padding: 5px 10px;
}

/* Loader */
#D-slide #cycle-loader{
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
}
/* Custom Indicator */
#D-slide .indicator{
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 5%;
}
#D-slide .indicator a{
    cursor: pointer;
    width:10px;
    height: 10px;
    display: block;
    background: #FFF;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    float: left;
    bottom: 0;
    margin: 0 3px;
    border: 3px solid #CCC;
    opacity: 0.6;
}
#D-slide .indicator a.active{
    opacity: 1;
}
