.xFade {
    position: relative;
}

.xFade picture {
    display: block;
}

.xFade picture:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.xFade picture img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.xFade picture img.pointer {
    cursor: pointer;
}

/* */
.xFade .items:not(.dots) { display: none; }

.xFade .items.dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.xFade .items.dots a {
    display: inline-block;
    border: 1px solid #999;
    background-color: #FFF3;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    margin: 5px;

    transition: width 0.3s ease;
}

.xFade .items.dots a.current {
    background-color: #FFF6;
    width: 30px;
}

.xFade .items.dots a:not(.current):hover {
    background-color: #FFF6;
    cursor: pointer;
}
/* <<< */

/* --- */
.xFade .items.dots > div {
    display: inline-block;
}

.xFade .items.dots section {
    display: none;
}
/* <<< */

/* Mobile */
@media (orientation: portrait) {
    .xFade .items.dots {
        bottom: -20px;
    }
}

/* Desktop */
@media (orientation: landscape) {
    .xFade .items.dots {
        bottom: 50px;
    }
}