body {
    --color-text: #767676;
    --color-bg: #000;
    --color-link: #c35340;
    --color-link-hover: #fff;
    --color-cover: #ddc64f;
    --color-copy: #767676;
    --color-content-title: #c35340;
    --color-indicator: #1b1b1b;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#divprolati .cursor {
	display: none;
}

/* Page Loader */
#divprolati .js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

#divprolati .js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: calc(50% - 30px);
	left: calc(50% - 25px);
	width: 50px;
	height: 60px;
	pointer-events: none;
	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);
	}
}

#divprolati .strip__item-number a {
	text-align: center;
	text-decoration: none;
	color: #ddc64f;
	outline: none;
	font-size: .8em;
}

#divprolati main {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

#divprolati .message {
	background: var(--color-text);
	color: var(--color-bg);
	padding: 1rem;
	text-align: center;
}

#divprolati .frame {
	padding: 1.5rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
}

	#divprolati .frame a {
		pointer-events: auto;
	}

#divprolati .frame__title {
	font-size: 1rem;
	margin: 0 0 0.5rem;
	font-weight: normal;
}

#divprolati .frame__links {
	display: flex;
	margin: 0.5rem 0;
}

	#divprolati .frame__links a {
		margin: 0 0.35rem;
		padding: 0 0.35rem;
		position: relative;
	}

		#divprolati .frame__links a:first-child {
			margin-left: 0;
			padding-left: 0;
		}

		#divprolati .frame__links a:not(:last-child)::after {
			content: '';
			width: 1px;
			height: 1rem;
			background: var(--color-link);
			position: absolute;
			left: calc(100% + 0.35rem);
			top: calc(50% - 0.5rem);
			pointer-events: none;
		}

#divprolati .frame__subtitle {
	font-weight: normal;
	font-size: 1rem;
	margin: 0.5rem 0 1rem;
}

#divprolati .frame__indicator {
	width: 3rem;
	transform-origin: 0 50%;
}

#divprolati .strip-outer {
	width: 100%;
	height: 100vh;
	margin: auto;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: none;
}

#divprolati .strip-inner {
	position: relative;
	top: 0;
	background: #000;
	height: 100%;
	width: -moz-fit-content;
	width: fit-content;
}

#divprolati .draggable {
	height: 500px;
	top: calc(50% - 250px);
	width: 100%;
	position: absolute;
	cursor: grab;
}

	#divprolati .draggable:active {
		cursor: grabbing;
	}

#divprolati .strip {
	height: 100%;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: start;
	position: relative;
	pointer-events: none;
}

#divprolati .strip__item {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
}

#divprolati .img-outer {
	--imgheight: 450px;
	height: var(--imgheight);
	width: calc(var(--imgheight) * 0.7);
	overflow: hidden;
	position: relative;
	flex: none;
}

#divprolati .img-outer--size-s {
	--imgheight: 300px;
}

#divprolati .img-outer--size-m {
	--imgheight: 360px;
}

#divprolati .img-outer--size-l {
	--imgheight: 390px;
}

#divprolati .img-outer--size-xl {
	--imgheight: 420px;
}

#divprolati .img-inner {
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	left: -20px;
	top: -20px;
	background-size: cover;
	background-position: 50% 50%;
	position: absolute;
}

#divprolati .strip__item-number {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#divprolati .strip__item-link {
	pointer-events: auto;
	cursor: pointer;
	display: block;
	position: relative;
	margin: 0 auto;
}

	#divprolati .strip__item-link::before {
		content: '';
		position: absolute;
		width: 160%;
		height: 120%;
		left: -30%;
		top: -10%;
	}



	#divprolati .strip__item-link span {
		display: block;
	}

#divprolati .strip__item-plus {
	display: none;
	width: 13px;
	height: 13px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 6h6v1H7v6H6V7H0V6h6V0h1v6z' fill='%23505050'/%3e%3c/svg%3e");
	background-size: 100%;
}

#divprolati .strip__item-link:hover + .strip__item-plus {
	display: block;
}

#divprolati .strip-cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #ddc64f;
	pointer-events: none;
	opacity: 0;
}

#divprolati .strip-cover__title {
	font-family: fleisch-wolf, sans-serif;
	font-weight: 400;
	font-size: 12vw;
	margin: 0;
	line-height: 1;
	-webkit-text-stroke: 2px var(--color-cover);
	text-stroke: 2px var(--color-cover);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	color: #ddc64f;
}
	#divprolati .strip-cover__title h2 {
		color: #ddc64f !important;
	}

#divprolati .strip-cover__subtitle {
	font-size: 1.5rem;
	margin: 0;
}

#divprolati .content {
	top: 0;
	position: absolute;
	height: 100vh;
	width: 100%;
	z-index: 1000;
}

#divprolati .js .content {
	pointer-events: none;
}

#divprolati .content__item {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100vh;
	display: grid;
	align-items: center;
	grid-template-rows: 50% 40% 10%;
	grid-column-gap: 0;
	grid-template-areas: 'content-img' 'content-copy' '...';
	display: none;
}

#divprolati .js .content__item {
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.js .content__item--current {
	pointer-events: auto;
	opacity: 1;
	top: 0;
	display: grid;
}

.img-outer--content {
	height: 100%;
	width: auto;
	grid-area: content-img;
}

.img-inner--content {
	background-position: 50% 35%;
}

.content__item-title {
	font-weight: normal;
	color: var(--color-content-title);
}

.content__item-copy {
	grid-area: content-copy;
	padding: 1.5rem 2rem;
	color: var(--color-copy);
}

.content__item-text {
	margin: 0;
}

.content__close {
	display: block;
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
	color: inherit;
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
	position: absolute;
	bottom: 1.5rem;
	left: 3rem;
}

.content__item--current ~ .content__close {
	pointer-events: auto;
}

.content__close svg {
	fill: currentColor;
}

.content__close:focus,
.content__close:hover {
	outline: none;
	color: #fff;
}

/* Will-change */
.strip,
.strip__item,
.cursor__side,
.content__close,
.content__item-title,
.content__item-copy {
	will-change: transform;
}


@media screen and (min-width: 53em) {
	.frame {
		position: fixed;
		text-align: left;
		z-index: 10000;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 1.25rem 3rem;
		pointer-events: none;
		grid-template-columns: 80% 20%;
		grid-template-rows: auto auto auto;
		grid-template-areas: 'page-title links'
							'... ...'
							'indicator sub-title';
	}
	.frame__title-wrap{
		grid-area: page-title;
		display: flex;
	}
	.frame__title {
		margin: 0;
	}
	.frame__subtitle {
		grid-area: sub-title;
		justify-self: end;
		margin: 0;
	}
	.frame__links {
		padding: 0;
		margin: 0 0 0 2rem;
	}
	.frame__indicator {
		grid-area: indicator;
		margin: 0;
	}
	.content__item {
		top: 0;
		grid-template-columns: 40% 45% 15%;
		grid-template-rows: 100%;
		grid-template-areas: 'content-copy content-img ... ';
	}
	.content__item-copy {
		max-width: 240px;
		justify-self: end;
		align-self: end;
		text-align: right;
	}
	.strip-cover__title {
		font-size: 15vw;
		-webkit-text-stroke: 2px var(--color-cover);
		text-stroke: 2px var(--color-cover);
	}
	.strip-cover__subtitle {
		font-size: 3rem;
	}
}

@media (any-pointer: fine) {
	.cursor {
		display: block;
	}
	.cursor__inner {
		z-index: 9999;
		pointer-events: none;
		position: absolute;
		top: 0;
		left: 0;
		mix-blend-mode: difference;
		border-radius: 50%;
	}
	.cursor__side {
		position: absolute;
		top: 50%;
		width: 5px;
		height: 1px;
		background: #fff;
		opacity: 0;
	}
	.cursor__side--left {
		right: calc(100% + 5px);
	}
	.cursor__side--right {
		left: calc(100% + 5px);
	}
	.cursor__inner--circle {
		width: 25px;
		height: 25px;
		border: 1px solid #fff;
	}
}
@media only screen and (max-width:550px) {
    .img-outer--size-s {
        --imgheight: 100px;
    }

    .img-outer--size-m {
        --imgheight: 160px;
    }

    .img-outer--size-l {
        --imgheight: 190px;
    }

    .img-outer--size-xl {
        --imgheight: 120px;
    }
    .strip__item-number a {
    text-align: center;
    text-decoration: none;
    color: #ddc64f;
    outline: none;
    font-size: .55em;
}
    .strip-inner {
        position: relative;
        top: 0;
        background: #000;
        height: 60%;
        width: -moz-fit-content;
        width: fit-content;
    }
}