/**
 * Diaporama.
 *
 */
#diaporama
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	color: white;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 10000;
}
#diaporama_inner
{
	position: relative;
	height: 100%;
}

/* Barres de contrôle. */
#diaporama_top,
#diaporama_bottom
{
	position: absolute;
	left: 0;
	width: 100%;
	background: #404040;
	font-size: 110%;
	display: flex;
	align-items: center;
	z-index: 5;
	height: 32px;
}
#diaporama_top
{
	top: 0;
}
#diaporama_bottom
{
	bottom: 0;
}
#diaporama_position,
#diaporama_auto_mode
{
	width: 20%;
}

/* Fil d'Ariane. */
#diaporama_breadcrumb
{
	flex: 1;
	line-height: 1.7em;
	height: 1.7em;
	overflow: hidden;
	margin-left: 5px;
}
#diaporama_breadcrumb a
{
	color: white;
	border-color: white;
}
#diaporama_breadcrumb .current
{
	font-weight: bold;
}
#diaporama_home,
#diaporama_breadcrumb > a:first-child,
#diaporama_breadcrumb *:not(.current)
{
	display: none;
}

/* Message du mode automatique. */
#diaporama_auto_message
{
	position: absolute;
	top: 53px;
	left: 20px;
	display: none;
	z-index: 1;
	padding: 10px;
	font-size: 150%;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .05em;
	background: #2E2E2E;
	text-align: center;
	line-height: 3em;
	width: 3em;
	height: 3em;
	border-radius: 50%;
	box-shadow: 0 0 20px #2E2E2E;
}

/* Icônes. */
.diaporama_icon
{
	position: relative;
	color: #fff;
	font-family: "IcoMoon";
	font-size: 160%;
	border: none;
	padding: 0;
	margin: 4px 0 4px 20px;
	display: block;
	cursor: pointer;
}
@-moz-document url-prefix()
{
	.diaporama_icon
	{
		margin: 1px 0 1px 20px;
	}
}
.diaporama_icon.active[data-name="edit"],
.diaporama_icon.active[data-name="informations"],
.diaporama_icon.active[data-name="settings"],
.diaporama_icon:not(.disabled):hover
{
	color: #dcdcdc;
}
.diaporama_icon[data-name="download"],
.diaporama_icon[data-name="edit"]
{
	display: none;
}
.diaporama_icon[data-name="edit"]
{
	font-size: 140%;
}

/* Icônes d'outils. */
#diaporama_tools
{
	display: flex;
	align-items: center;
	margin-right: 10px;
}
#diaporama_tools a
{
	margin-top: 0;
	margin-bottom: 0;
}
#diaporama_tools a[data-name="close"]
{
	font-size: 130%;
}

/* Icônes du mode auto. */
#diaporama_auto_mode
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 10px;
}
#diaporama_auto_mode a[data-name="start"],
#diaporama_auto_mode a[data-name="stop"]
{
	font-size: 140%;
	margin: 4px 0;
}
#diaporama_auto_mode a[data-name="minus"]
{
	margin: 0 0 0 15px;
}
#diaporama_auto_mode a[data-name="plus"]
{
	margin: 0 0 0 15px;
}
#diaporama_auto_duration
{
	margin-left: 15px;
}
#diaporama_auto_mode > *:nth-last-child(-n+3)
{
	display: none;
}

/* Icônes de navigation. */
#diaporama_navigation
{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#diaporama_navigation a
{
	font-size: 190%;
	margin: -1px 11px 0;
	transform: scale(1.25, 1.0);
}

/* Bouton de switch. */
#diaporama_switch
{
	position: relative;
	margin: 0 10px;
	display: block;
	width: 24px;
	height: 24px;
	cursor: pointer;
}
#diaporama_switch::after
{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5.5px 0 0 -5.5px;
	width: 11px;
	height: 11px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
}
#diaporama_switch.fullsize::after
{
	margin: -7.5px 0 0 -7.5px;
	width: 15px;
	height: 15px;
}
#diaporama_switch:hover::after
{
	background: #dcdcdc;
}

/* Boutons désactivés */
.diaporama_icon.disabled
{
	cursor: default;
	color: #858585;
}
#diaporama_switch.disabled
{
	cursor: default;
}
#diaporama_switch.disabled::after
{
	cursor: default;
	background: #858585;
}

/* Icône de chargement */
#diaporama_loading
{
	position: absolute;
	top: 0;
	left: 0;
}
#diaporama_loading::before
{
	content: '';
	background: #aaa;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	border-radius: 50%;
	transform: scale(0);
	opacity: 1;
	animation: diaporama-loading 0.8s ease-out infinite;
}
@keyframes diaporama-loading
{
	100%
	{
		transform: scale(1.0);
		opacity: 0;
	}
}

/* Fil d'Ariane */
#diaporama_breadcrumb a
{
	border-width: 0;
}
#diaporama_breadcrumb a:hover
{
	border-width: 2px;
}

/* Image. */
#diaporama_item
{
	flex: 1;
}
#diaporama_item img,
#diaporama_item video
{
	position: absolute;
}
#diaporama_item img:not([data-type="image/jpeg"])
{
	background: white;
}

/* Sidebars. */
.diaporama_sidebar
{
	display: none;
	position: absolute;
	top: 32px;
	right: 0;
	width: 100%;
	height: calc(100% - 56px);
	border-left: 5px solid #454545;
	background: #C0C0C0;
	overflow: auto;
	color: black;
	z-index: 4;
}
.diaporama_sidebar a
{
	color: black;
}
.diaporama_sidebar h1
{
	color: #C0C0C0;
	font-weight: bold;
	background: #454545;
	margin: 10px 8px 20px;
	padding: 3px 10px 4px 0;
	font-size: 125%;
	letter-spacing: .05em;
	text-align: right;
	border-radius: 12px;
	position: relative;
}
.diaporama_sidebar_inner
{
	margin: 15px;
}

/* Sidebars : bouton de fermeture. */
.diaporama_sidebar_close
{
	position: absolute;
	display: flex;
	height: 100%;
	width: 32px;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 1;
}
.diaporama_sidebar_close_icon
{
	position: absolute;
	display: inline-block;
	height: 0;
	width: 0;
	top: 50%;
	left: 18px;
	margin-top: -7px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 12px solid #C0C0C0;
}
.diaporama_sidebar_close_icon::before
{
	content: '';
	position: absolute;
	background: #C0C0C0;
	width: 18px;
	height: 4px;
	margin-top: -2px;
	top: 50%;
	left: -30px;
}

/* Sidebars : contenu. */
.diaporama_sidebar h2
{
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 120%;
	color: #333;
}
.diaporama_sidebar h2 span
{
	cursor: pointer;
}
.diaporama_sidebar_inner > ul
{
	margin-left: 10px;
	color: #333;
}
.diaporama_sidebar_inner > ul > li::before
{
	content: '\25A0';
	color: #333;
	width: 1em;
	margin-left: -1em;
	display: inline-block;
	position: absolute;
}
.diaporama_sidebar select,
.diaporama_sidebar input[type="text"],
.diaporama_sidebar textarea,
.diaporama_sidebar select:focus,
.diaporama_sidebar input[type="text"]:focus,
.diaporama_sidebar textarea:focus
{
	background: #eee;
	border: 1px solid #777;
}
.diaporama_sidebar select:hover,
.diaporama_sidebar select:focus,
.diaporama_sidebar input[type="text"]:focus,
.diaporama_sidebar textarea:focus
{
	background: #fff;
}
#diaporama_transitions_effect
{
	display: block;
}
.diaporama_sidebar_content
{
	padding-bottom: 25px;
}
.diaporama_sidebar_content li
{
	padding: 3px 0;
	font-weight: bold;
	color: #333;
}
.diaporama_sidebar_content li span
{
	font-weight: normal;
	color: black;
}
.diaporama_sidebar a:hover
{
	color: black;
	border-color: black;
}
#diaporama_sidebar_description p
{
	line-height: 1.5em;
}
#diaporama_sidebar_description p .emoji
{
	font-size: 130%;
}

/* Sidebars : cases à cocher. */
#diaporama input[type="checkbox"],
#diaporama input[type="radio"]
{
	filter: grayscale(1);
}
@-moz-document url-prefix()
{
	#diaporama input[type="checkbox"],
	#diaporama input[type="radio"]
	{
		top: 0;
		filter: grayscale(1) brightness(1.3);
	}
}

/* Sidebars : note. */
#diaporama_sidebar_stats_rating
{
	position: relative;
}
#diaporama_sidebar_stats_rating span
{
	font-family: "IcoMoon";
	font-size: 110%;
	color: #555;
	position: absolute;
	top: 1px;
}
#diaporama_sidebar_stats_rating span:nth-child(1)
{
	margin-left: .2em;
}
#diaporama_sidebar_stats_rating span:nth-child(2)
{
	margin-left: 1.2em;
}
#diaporama_sidebar_stats_rating span:nth-child(3)
{
	margin-left: 2.2em;
}
#diaporama_sidebar_stats_rating span:nth-child(4)
{
	margin-left: 3.2em;
}
#diaporama_sidebar_stats_rating span:nth-child(5)
{
	margin-left: 4.2em;
}

/* Sidebars : utilisateur. */
#diaporama_sidebar_owner .diaporama_sidebar_content > a
{
	border: 0;
	margin: 0;
	display: inline-block;
}
#diaporama_sidebar_owner .diaporama_sidebar_content
{
	display: flex;
}
#diaporama_sidebar_owner .diaporama_sidebar_content img
{
	object-fit: cover;
	margin: 0;
	border-radius: 50%;
	background: #eee;
}
#diaporama_sidebar_owner .diaporama_sidebar_content > p
{
	line-height: 1.8em;
}
#diaporama_sidebar_owner .diaporama_sidebar_content > p a
{
	color: black;
}
#diaporama_owner_avatar
{
	margin-right: 10px;
}
#diaporama_owner_name,
#diaporama_owner_name a
{
	color: #333;
}

/* Sidebars : tags. */
#diaporama_sidebar_tags ul li
{
	display: inline-block;
	margin: 5px 10px 5px 0;
}
#diaporama_sidebar_tags ul li a
{
	display: inline-block;
	padding: 8px 10px;
	border: 0;
	border-radius: 6px;
	font-size: 110%;
	border: 1px solid silver;
	margin: 0;
	background: #555;
	color: white;
}
#diaporama_sidebar_tags ul li a:hover
{
	background: #777;
}

/* Sidebars : édition. */
.diaporama_sidebar[data-name="edit"] .large
{
	margin-top: 2px;
}
.diaporama_sidebar[data-name="edit"] input[type="text"],
.diaporama_sidebar[data-name="edit"] textarea
{
	width: 96%;
	min-width: 96%;
	max-width: 96%;
}

/* Sidebars : bouton submit. */
.diaporama_buttons
{
	margin-top: 30px;
	display: flex;
	align-items: center;
	position: relative;
}
.diaporama_buttons input[type="submit"]
{
	background: #454545;
	color: white;
	padding: 6px 10px;
	border: none;
	font-size: 120%;
	border: 1px solid #C0C0C0;
	cursor: pointer;
}
.diaporama_buttons input[type="submit"]:not([disabled]):focus
{
	outline: 1px dotted #454545;
}
.diaporama_buttons input[type="submit"]:not([disabled]):active
{
	padding: 7px 9px 5px 11px;
}
.diaporama_buttons input[type="submit"]:not([disabled]):hover
{
	background: #353535;
}
.diaporama_buttons input[type="submit"][disabled]
{
	cursor: default;
	background: #aaa;
	color: #656565;
}

/* Sidebars : icône de chargement. */
#diaporama_edit_loading
{
	margin: 0 0 0 10px;
	width: 24px;
	height: 24px;
}
#diaporama_edit_loading::after
{
	content: '';
	background: #454545;
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	transform: scale(0);
	opacity: 1;
	animation: diaporama-edit-loading 0.8s ease-out infinite;
}
@keyframes diaporama-edit-loading
{
	100%
	{
		transform: scale(1.0);
		opacity: 0;
	}
}

/* Sidebars : messages de rapport. */
*[class^="diaporama_report_"]
{
	font-size: 120%;
	display: inline-block;
	line-height: 1.5em;
	color: #333;
	position: absolute;
	top: 0;
	left: 2em;
}
*[class^="diaporama_report_"] span
{
	font-family: "IcoMoon";
	font-size: 150%;
	position: relative;
	display: inline-block;
	text-align: right;
	width: 1.5em;
	margin-left: -1.9em;
	padding-right: 0.4em;
	top: 4px;
}

/* Sidebars : options. */
.diaporama_sidebar[data-name="settings"] input[type="text"]
{
	display: block;
}

/* Carrousel. */
#diaporama_carousel
{
	position: absolute;
	left: 0;
	bottom: 32px;
	overflow: hidden;
	z-index: 1;
	width: 20000px;
	background: black url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAaUlEQVQ4ja3VORLAMAhDUSrd/8akcOKMxxsgFWpfqW8AHICbGbXPAeCmBl9PC9LoBqyjB7CGXsA8GgBzaBCMowkwhibBO1oAz2gR3KMEuEZJcEYF4IiKwB8Vgg0Vg+2kpeAKZcGeE3WnHgcNvrlq9x8vAAAAAElFTkSuQmCC);
}
#diaporama_carousel_thumbs
{
	border-top: 2px solid #111;
	padding: 0 0 0 38px;
	height: 100%;
}
#diaporama_carousel > a
{
	width: 32px;
	height: calc(100% - 2px);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 250%;
	background: black;
	border: 2px solid #111;
	position: absolute;
	left: 0;
	bottom: -2px;
	z-index: 2;
}
#diaporama_carousel > a:first-child
{
	border-left: 0;
}
#diaporama_carousel > a:last-child::after
{
	content: '';
	position: absolute;
	top: -2px;
	right: -802px;
	height: calc(100% + 2px);
	width: 800px;
	background: black;
}
#diaporama_carousel > a span
{
	transform: scale(1.0, 2.0);
	margin-top: -5px;
}
#diaporama_carousel > a.disabled
{
	color: #525252;
}

/* Carrousel : vignettes */
#diaporama_carousel dl
{
	display: block;
	float: left;
    vertical-align: top;
	margin: 8px 4px;
	padding: 0;
	border: 1px solid #646464;
	background: #151515;
	border-radius: 3px;
	cursor: pointer;
}
#diaporama_carousel dl:hover,
#diaporama_carousel dl.current:hover
{
	border-color: white;
}
#diaporama_carousel dl.current
{
	position: relative;
	border: 2px solid white;
	margin: 7px 3px;
}
#diaporama_carousel dt
{
    position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#diaporama_carousel .duration
{
	position: absolute;
	z-index: 1;
	bottom: 5px;
	right: 0;
	display: flex;
	align-items: center;
	padding: 2px 5px;
	background: #222;
	color: #fff;
	opacity: 0.8;
}
#diaporama_carousel .duration span
{
	font-family: "IcoMoon";
	margin-right: 3px;
}
#diaporama_carousel dt a,
#diaporama_carousel dt a:hover
{
    border: 0;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#diaporama_carousel dt a img
{
	margin: 0;
	padding: 0;
	border: 0;
	max-width: 100%;
	max-height: 100%;
	image-rendering: pixelated;
}

/* Position dans la série. */
#diaporama_position
{
	padding-left: 5px;
	white-space: nowrap;
}

/* Aide pour la navigation au clavier. */
#diaporama_keyboard
{
	display: none;
}

/* Favori. */
#diaporama_favorite
{
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
}
#diaporama_favorite.in::before
{
	content: '\e910';
	font-family: "IcoMoon";
	position: absolute;
	font-size: 150%;
	top: 48px;
	right: 20px;
	color: white;
	background: #3B5EB5;
	z-index: 1;
	border-radius: 50%;
	padding: 1px 0 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
}


@media (min-width: 600px)
{
	/* Sidebars. */
	.diaporama_sidebar
	{
		width: 350px;
	}
}



@media (min-width: 800px)
{
	#diaporama_breadcrumb *:not(.current)
	{
		display: inline;
	}
	#diaporama_position,
	#diaporama_auto_mode
	{
		display: flex;
		width: 30%;
	}
	#diaporama_position
	{
		padding-left: 10px;
	}
	#diaporama_auto_mode > *:nth-last-child(-n+3)
	{
		display: inline;
	}
	#diaporama_auto_message
	{
		top: 78px;
		left: 50px;
		padding: 20px;
		font-size: 350%;
		width: 3em;
		height: 3em;
	}
	#diaporama_navigation
	{
		margin-left: -3px;
	}

	/* Icônes home. */
	#diaporama_home
	{
		display: flex;
		align-items: center;
	}
	#diaporama_home a
	{
		margin: 0 2px 0 10px;
		font-size: 170%;
	}

	/* Hauteurs des barres de contrôle. */
	#diaporama_top,
	#diaporama_bottom
	{
		height: 28px;
	}
	#diaporama_carousel
	{
		bottom: 28px;
	}
	.diaporama_sidebar
	{
		top: 28px;
	}

	/* Aide pour la navigation au clavier. */
	#diaporama_keyboard
	{
		display: block;
	}
	#diaporama_keyboard
	{
		margin-top: 35px;
	}
	#diaporama_keyboard ul
	{
		margin: 15px 0 0 20px;
	}
	#diaporama_keyboard li
	{
		margin-bottom: 8px;
		line-height: 1.4em;
		position: relative;
	}
	#diaporama_keyboard li::before
	{
		content: '';
		position: absolute;
		background: #454545;
		height: 5px;
		width: 5px;
		top: .5em;
		left: -12px;
	}

	/* Icônes. */
	.diaporama_icon
	{
		margin: 4px 0 4px 15px;
	}
	@-moz-document url-prefix()
	{
		.diaporama_icon
		{
			margin: 1px 0 1px 15px;
		}
	}

	/* Favori. */
	#diaporama_favorite.in::before
	{
		font-size: 300%;
		top: 58px;
		right: 30px;
		padding: 4px 2px 0px;
		width: 70px;
		height: 70px;
	}
}
