.preview-open {
	overflow: hidden;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}


.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.box {
	position: relative;
}

.box__text {
	margin: 0;
}

.box__text-inner {
	position: relative;
	display: block;
}


.box__img {
	display: block;
	border-radius: 100%;
}

.box__text_content {
	position: absolute;
	top: 50%;
	left: 66%;
}

.box__content {
	position: absolute;
	max-width: 195px;
	font-size: 0.9rem;
	text-align: right;
	display: none;
}

.box__content strong {
	white-space: nowrap;
}

.overlaymotion {
	pointer-events: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.overlaymotion--open {
	pointer-events: auto;
}

.overlaymotion__reveal {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	position: absolute;
	z-index: 100;
	transform: translate3d(100%,0,0);
}

.overlaymotion__item {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem 5vw;
	justify-content: center;
}

.overlaymotion__item .box {
	max-height: 100%;
	margin: 0;
}

.overlaymotion__item .box__title {
	bottom: 0;
}

.box__img--original {
	max-height: calc(100vh - 10rem);
	filter: none;
}

.overlaymotion__close {
	position: absolute;
	top: 0;
	right: 0;
	background: transparent;
	cursor: pointer;
	border: 0;
	margin: 1rem;
	opacity: 0;
}
.overlaymotion__close .text-close {
	position: relative;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	right: 15px;
	top: 5px;
}

.overlaymotion__close:hover .text-close {
	color: #00E1FF;
}

.overlaymotion__close:focus {
	outline: none;
}

.overlaymotion__content {
	font-size: 1rem;
	line-height: 1.5;
	max-width: 25rem;
}