/* 
=====================================================
For manual photo slider within texts
Input fields with more than one image (and/or svg) separated by ; are transformed to slider
=====================================================
*/
.img_cycler_manual {
    clear: both;
    margin-bottom: 1.25em;
}

.img_cycler_manual figure {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.img_cycler_manual figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    z-index: 0;
    cursor: zoom-in;
}

.img_cycler_manual figure img:first-child {
    position: static !important;
    opacity: 1;
    z-index: 1
}

/* 
The Slider Navigation Menu
Containsa parent UL (for navigation by arrows) 
wich in the second LI includes a child UL (for navigation by numbers) 
*/

/* Navigation by arrows - First UL
*/
.img_cycler_manual ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0.25em 0;
    margin: 0;
    opacity: 0.6;
}

.img_cycler_manual>ul:hover {
    opacity: 1;
}

.img_cycler_manual>ul>li {
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.img_cycler_manual>ul>li:first-child {
    padding: 0.25em 1em 0.25em 0.2em;
}

.img_cycler_manual>ul>li:first-child::before {
    content: '\276E\276E';
    font-size: 2em;
}

.img_cycler_manual>ul>li:last-child {
    padding: 0.25em 0.2em 0.25em 1em;
}

.img_cycler_manual>ul>li:last-child::before {
    content: '\276F\276F';
    font-size: 2em;
}

/*	Navigation by numbers or boxes - Second UL
    Set the display for SPAN to none to get Boxes instead of Numbers
*/
.img_cycler_manual ul ul {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.img_cycler_manual li li {
    font-size: 1em;
    padding: 4px 12px;
    margin: 2px;
    background: #fff;
    color: #666;
    border: 1px solid #aaa;
    border-radius: 3px;
    cursor: pointer;
}

.img_cycler_manual li li:hover,
.img_cycler_manual li li.selected {
    background: #ccc;
    color: #000;
}

.img_cycler_manual li li span {
    font-size: 0.8em;
    display: inline-block;
}

.img_cycler_manual div {
    text-align: center;
    padding: 0.5rem
}

/* Transforms the cycler to Full Window Galery
*/
.img_cycler_manual_fexed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    overflow: hidden;
    background: #f9f9f9;
    opacity: 0;
    z-index: 9000;
}

.img_cycler_manual_fexed figure img {
    cursor: zoom-out;
}

@media (min-width:992px) {
	.img_cycler_manual_fexed p {
		max-width: 75%;
		margin: 0 auto;
	}
}
