/* Micado Ext. - FlippingBook 1.0 - Buttons */

.micExtFlippingBook > .viewport > .buttons {
	display: flex;
	bottom: 25px;
	height: 40px;
	justify-content: center;
	left: 0;
	opacity: 1;
	position: absolute;
	text-align: center;
	transition: bottom 500ms ease, opacity 500ms ease;
	width: 100%;
	z-index: 3;
}
.micExtFlippingBook > .viewport > .buttons.hide {
	opacity: 0;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}
.micExtFlippingBook > .viewport > .buttons > a {
	align-items: center;
	background: #ffffff;
	display: inline-flex;
	font-family: "Material Icons";
	font-size: 24px;
	font-weight: normal;
	height: 40px;
	justify-content: center;
	margin: 0 5px;
	position: relative;
	transition: opacity 300ms ease;
	width: 40px;
}
.micExtFlippingBook > .viewport > .buttons > a.prev {
	align-items: center;
	background: rgba(32, 48, 61, 0.5);
	color: #ffffff;
	display: flex;
	font-family: "Material Icons";
	font-size: 32px;
	height: 100px;
	margin: 0;
	justify-content: center;
	left: 0;
	position: fixed;
	transform: translate(0, -50%);
	transition: background 500ms ease;
	top: 50%;
	width: 55px;
}
.micExtFlippingBook > .viewport > .buttons > a.next {
	align-items: center;
	background: rgba(32, 48, 61, 0.5);
	color: #ffffff;
	display: flex;
	font-family: "Material Icons";
	font-size: 32px;
	height: 100px;
	margin: 0;
	justify-content: center;
	position: fixed;
	transform: translate(0, -50%);
	transition: background 500ms ease;
	right: 0;
	top: 50%;
	width: 55px;
}
.micExtFlippingBook > .viewport > .buttons > a.prev:hover,
.micExtFlippingBook > .viewport > .buttons > a.next:hover {
	background: rgba(32, 48, 61, 1);
}
.micExtFlippingBook > .viewport > .buttons > a.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

@media all and (max-width: 1420px) {
	.micExtFlippingBook > .viewport > .buttons > a.prev {
		background: #ffffff;
		color: var(--ebook-color-primary-main);
		font-size: 24px;
		height: 40px;
		left: auto;
		margin: 0 5px;
		position: relative;
		transform: unset;
		top: auto;
		width: 40px;
	}
	.micExtFlippingBook > .viewport > .buttons > a.next {
		background: #ffffff;
		color: var(--ebook-color-primary-main);
		font-size: 24px;
		height: 40px;
		margin: 0 5px;
		position: relative;
		transform: unset;
		right: auto;
		top: auto;
		width: 40px;
	}
	.micExtFlippingBook > .viewport > .buttons > a.prev:hover,
	.micExtFlippingBook > .viewport > .buttons > a.next:hover {
		background: #ffffff;
	}
}
@media all and (max-width: 400px) {
	.micExtFlippingBook > .viewport > .buttons > a.fullscreen {
		margin-right: 2.5px;
	}
}
