/* ----------------------------------------------------------------------------- *
 *     Angepasstes Slider-CSS für Gutenberg-Blöcke (Gruppe > Gruppe > Bilder)     *
 * ----------------------------------------------------------------------------- */

.rslides-wrapper {
    position: relative;
}

.rslides {
	font-size: 0.8em;
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    margin: 30px 0 0 0;
	padding: 0;
}

/* .slide ist hier direkt das <figure>-Element (Bild-Block) */
.rslides .slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none !important;
    width: 100%;
    left: 0;
    margin: 0;
}

.rslides .slide:first-child {
    position: relative;
    display: block !important;
    float: left;
    margin: 0;
}

.rslides .slide img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.caption {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4em 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    margin: 0;
    font-size: 0.8em;
    line-height: 1.2em;
}

.caption a:link, .caption a:visited{
    color: #C2D2E5;
}
.caption a:hover, .caption a:active, .caption a:focus {
    color: darkorange;
}

.rslides_nav:focus {
    outline: none;
}

/* Wird von responsiveslides.js selbst als echtes <ul><li> ins DOM geschrieben */
.rslides_tabs {
	display: none;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
}

.rslides_tabs li {
    display: inline;
    margin: 0 5px 0 0;
}

.rslides_tabs a {
	font-size: 20px;
    overflow: hidden;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.3);
	border: 1px solid black;
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 2005;
}

.rslides_here a {
    background: rgba(240, 240, 255, 1);
    z-index: 2010;
}

.rslides_nav {
    overflow: hidden;
    position: absolute;
    text-indent: -9999px;
    top: 0;
    width: 40%;
	height: 99%;
    z-index: 100;
}

.rslides_nav.next {
    left: auto;
    right: 0;
}


/* ----------------------------------------------------------------------------- * 
 *                              800px / 16px/em = 50em                           *
 * ----------------------------------------------------------------------------- */

@media only screen and (min-width: 50em) {
    .rslides {
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    }

    .rslides_nav {
        opacity: 1;
		width: 40%;
    }

    .rslides_nav:hover {
		cursor: url("../graphics/back.png"), auto;
    }

    .rslides_nav.next:hover {
		cursor: url("../graphics/next.png"), auto;
    }
}