/**
 * Diaporama.
 *
 */
#diaporama
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	color: white;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 10000;
	display: flex;
	justify-content: center;
}
#diaporama_inner
{
	margin-right: auto;
	touch-action: none;
}

/* Barres de défilement. */
@media (min-width: 800px)
{
	#diaporama .diaporama_sidebar::-webkit-scrollbar
	{
		width: 15px;
		background: #E0E0E0;
	}
	#diaporama .diaporama_sidebar::-webkit-scrollbar-thumb
	{
		background: #909090;
	}
	#diaporama .diaporama_sidebar::-webkit-scrollbar-thumb:hover
	{
		background: #707070;
	}
	#diaporama .diaporama_sidebar::-webkit-scrollbar-thumb:active
	{
		background: #505050;
	}
	#diaporama_description::-webkit-scrollbar,
	#diaporama_keyboard_inner::-webkit-scrollbar
	{
		width: 10px;
		background: #202020;
	}
	#diaporama_description::-webkit-scrollbar-thumb,
	#diaporama_keyboard_inner::-webkit-scrollbar-thumb
	{
		background: #707070;
	}
	#diaporama_description::-webkit-scrollbar-thumb:hover,
	#diaporama_keyboard_inner::-webkit-scrollbar-thumb:hover
	{
		background: #606060;
	}
	#diaporama_description::-webkit-scrollbar-thumb:active,
	#diaporama_keyboard_inner::-webkit-scrollbar-thumb:active
	{
		background: #3D3D3D;
	}
}

/* Barres de contrôle. */
#diaporama_top,
#diaporama_bottom
{
	position: absolute;
	left: 0;
	width: 100%;
	background: #404040;
	font-size: 130%;
	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: 200%;
	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"],
.diaporama_icon[data-name="selection"]
{
	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 .2em 0;
	transform: scale(1.25, 1.0);
	display: block;
	text-align: center;
	width: 32px;
}

/* Bouton de switch. */
#diaporama_switch
{
	position: relative;
	margin: 0 .1em;
	display: block;
	width: 32px;
	height: 32px;
	cursor: pointer;
	text-align: center;
}
#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;
	}
}

/* Texte affiché sur l'image */
#diaporama_text
{
	position: absolute;
	z-index: 1;
	bottom: 140px;
	display: none;
	max-width: 100%;
}
#diaporama_text_inner
{
	display: flex;
	flex-direction: column;
}
#diaporama_text p
{
	display: inline-block;
	max-width: 850px;
	margin: 0 auto;
	padding: 5px 8px;
	line-height: 1.5em;
	color: #eee;
	background: rgba(17,17,17,0.9);
}
#diaporama_title
{
	overflow: hidden;
	text-align: center;
	font-size: 140%;
	max-height: 3em;
}
#diaporama_description
{
	overflow-y: auto;
	scrollbar-width: thin;
	padding-right: 10px;
	font-size: 110%;
	max-height: 6em;
}

/* 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 #404040;
	background: #C0C0C0;
	overflow: auto;
	color: black;
	z-index: 4;
}
.diaporama_sidebar a
{
	color: black;
}
.diaporama_sidebar h1
{
	color: #C0C0C0;
	font-weight: bold;
	background: #404040;
	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_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: #404040;
	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 #404040;
}
.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: #404040;
	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"] *[data-mobile="0"]
{
	display: none;
}
.diaporama_sidebar[data-name="settings"] input[type="text"]
{
	display: block;
}
.diaporama_settings_blocs
{
	margin-bottom: 30px;
}
.diaporama_settings_blocs h2
{
	font-size: 110%;
	font-weight: bold;
}
#diaporama_transitions_effect
{
	display: block;
}

/* Durée d'affichage des fichiers (sur mobile). */
#diaporama_auto_duration_option
{
	display: flex;
	margin: 10px 0;
}
#diaporama_auto_duration_option span
{
	font-size: 180%;
	font-weight: bold;
	margin-left: 15px;
	color: #646464;
	white-space: nowrap;
	margin-top: -1px;
	width: 4em;
	text-align: right;
}
.diaporama_sidebar input[type="range"]
{
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	cursor: pointer;
	width: 100%;
}
.diaporama_sidebar input[type="range"]::-ms-track
{
	background: #646464;
	height: 4px;
}
.diaporama_sidebar input[type="range"]::-moz-range-track
{
	background: #646464;
	height: 4px;
}
.diaporama_sidebar input[type="range"]::-webkit-slider-runnable-track
{
	background: #646464;
	height: 4px;
}
.diaporama_sidebar input[type="range"]::-ms-thumb
{
	background: #646464;
	border: 0;
	width: 24px;
	height: 24px;
	border-radius: 24px;
}
.diaporama_sidebar input[type="range"]::-moz-range-thumb
{
	background: #646464;
	border: 0;
	width: 24px;
	height: 24px;
	border-radius: 24px;
}
.diaporama_sidebar input[type="range"]::-webkit-slider-thumb
{
	-webkit-appearance: none;
	background: #646464;
	border: 0;
	width: 24px;
	height: 24px;
	border-radius: 24px;
	margin-top: -10px;
}

/* 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 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: 0 5px;
	white-space: nowrap;
	font-size: 80%
}

/* Favori et sélection. */
#diaporama_favorite,
#diaporama_selection
{
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
}
#diaporama_favorite.in::before,
#diaporama_selection.in::before
{
	font-family: "IcoMoon";
	position: absolute;
	top: 48px;
	right: 20px;
	color: white;
	background: #3B5EB5;
	z-index: 1;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
}
#diaporama_favorite.in::before
{
	content: '\e910';
	font-size: 200%;
}
#diaporama_selection.in::before
{
	content: '\ea52';
	font-size: 170%;
}
#diaporama_favorite.in + #diaporama_selection.in::before
{
	top: 110px;
}

/* Liste des touches pour le contrôle clavier. */
#diaporama_keyboard_k p
{
	line-height: 1.8em;
}
#diaporama_keyboard_k kbd
{
	padding: 3px 6px;
	border: 1px solid #555;
	border-width: 1px 1px 3px 1px;
	border-radius: 3px;
	font-size: 130%;
}
#diaporama_keyboard
{
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: rgba(50,50,50,0.5);
	z-index: 5;
}
#diaporama_keyboard_inner
{
	background: rgba(17,17,17,0.9);
	max-height: 100%;
	overflow: auto;
	scrollbar-width: thin;
}
#diaporama_keyboard_keys
{
	display: grid;
	padding-top: 20px;
}
@media (min-width: 1000px)
{
	#diaporama_keyboard_keys
	{
		grid-template-columns: auto auto;
	}
}
@media (min-width: 1400px)
{
	#diaporama_keyboard_keys
	{
		grid-template-columns: auto auto auto;
	}
}
#diaporama_keyboard h1
{
	font-size: 160%;
	font-weight: bold;
	padding: 15px 20px 10px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eee;
}
#diaporama_keyboard h1 span:first-child
{
	margin: -10px 15px 0 0;
	font-family: "IcoMoon";
	font-size: 250%;
	font-weight: normal;
}
#diaporama_keyboard h2
{
	font-size: 140%;
	font-weight: normal;
	letter-spacing: .05em;
	margin: 0 25px 15px 25px;
}
#diaporama_keyboard ul
{
	margin: 20px 25px;
}
#diaporama_keyboard li
{
	margin-top: 10px;
	line-height: 1.5em;
	color: #eee;
	font-size: 110%;
}
#diaporama_keyboard kbd
{
	display: inline-block;
	margin: 0 5px 5px 0;
	padding: 5px 10px;
	border: 1px solid silver;
	border-width: 1px 1px 3px 1px;
	border-radius: 4px;
	font-size: 150%;
	white-space: nowrap;
	background: #111;
}



@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
	{
		font-size: 100%;
		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;
	}
	#diaporama_navigation a
	{
		margin: -1px .25em 0;
		width: 1em;
	}

	/* 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;
		font-size: 110%;
	}
	#diaporama_carousel
	{
		bottom: 28px;
	}
	.diaporama_sidebar
	{
		top: 28px;
	}

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

	/* Favori et sélection. */
	#diaporama_favorite.in::before,
	#diaporama_selection.in::before
	{
		top: 58px;
		right: 30px;
		width: 74px;
		height: 74px;
	}
	#diaporama_favorite.in::before
	{
		font-size: 300%;
	}
	#diaporama_selection.in::before
	{
		font-size: 240%;
	}
	#diaporama_favorite.in + #diaporama_selection.in::before
	{
		top: 154px;
	}

	/* Texte affiché sur l'image */
	#diaporama_title
	{
		font-size: 160%;
	}
	#diaporama_description
	{
		font-size: 130%;
	}

	/* Bouton de switch. */
	#diaporama_switch
	{
		margin: 0 .3em;
		width: 24px;
		height: 24px;
	}

	/* Sidebars : options. */
	.diaporama_sidebar[data-name="settings"] *[data-mobile="0"]
	{
		display: block;
	}
	.diaporama_sidebar[data-name="settings"] *[data-mobile="1"]
	{
		display: none;
	}
}
