:root {
	--background-color-rgb: 11, 11, 11;
	--text-color-rgb: 255, 255, 255;
	--background-color: rgba(var(--background-color-rgb), 1);
	--text-color: rgba(var(--text-color-rgb), 1);
	--header-height: 125px;
	--header-height-mobile: 70px;
	--header-item-height: 60px;
	--header-items: 5;
	--main-color-rgb: 0, 195, 161;
	/*--main-color: rgba(var(--main-color-rgb), 1);*/
	--main-color: rgb(0, 195, 161);
	--overlay-opacity: 0.7;
	--overlay-color: 17, 11, 17;
	--invalid-background: rgb(42, 42, 42);
	--gallery-post-background: rgb(22, 22, 22);
	--loading-scale: 1.3;
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

*:not(input):focus-visible {
	opacity: 1 !important;
	outline-offset: 0px;
	outline: 1px solid #d3dfe4;
}

html {
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Poppins";
	background-color: var(--background-color);
	color: var(--text-color);
}

html.noscroll,
html.noscroll body {
	position: relative !important;
	overflow: hidden !important;
}

a[href] {
	color: var(--main-color);
}


/* Scrollbars */



@media screen and (min-width: 1025px) {
	::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	* {
		scrollbar-width: thin;
		scrollbar-color: var(--main-color) var(--background-color);
	}

	::-webkit-scrollbar-track {
		background: var(--background-color);
	}

	::-webkit-scrollbar-thumb {
		background-color: var(--main-color);
	}

	::-webkit-scrollbar-thumb:active {
		background-color: rgba(var(--main-color-rgb), .8);
	}
}


/* Loader */

.loader {
	width: 50px;
	height: 50px;
	border: 6px solid rgba(var(--main-color-rgb), .1);
	border-top-color: var(--main-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite;
}

.loader.small {
	width: 25px;
	height: 25px;
	border-width: 3px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
	}
}


/* Form Items */
.form-item {
	width: 100%;
	max-width: 270px;
	margin-bottom: 25px;
}

.form-item button[type="submit"] {
	width: 270px;
}

.form-item input:not([type="checkbox"]) {
	--color: var(--main-color);
	width: 100%;
	height: 30px;
	font-size: 14px;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, .1);
	background: transparent;
	transition: .25s ease-in-out;
	-webkit-transition: .25s ease-in-out;
}

.form-item input[type="checkbox"] {
	margin-right: 5px;
}

.form-item input::-webkit-input-placeholder {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.66);
}

.form-item input::-moz-placeholder {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.66);
}

.form-item input:hover {
	border-color: var(--color);
}

.form-item input:focus {
	padding-left: 10px;
	border-color: var(--color);
	/*background-color: rgba(255, 255, 255, .075);*/
	box-shadow: 0 6px 10px -10px var(--color);
}

.form-item input:invalid:not(:placeholder-shown),
.form-item input.invalid:not(:placeholder-shown) {
	--color: #ff1b13;
	border-color: var(--color) !important;
}

.form-small {
	font-size: 14px;
	color: #d6d6d6;
}

.form-line-separator {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin: 20px 0;
	font-size: 14px;
}

.form-line-separator .form-line {
	flex: 1;
	width: 100%;
	height: 1px;
	margin: 0 12px;
	opacity: 0.8;
	border-radius: 2px;
	background: var(--text-color);
}

.form-error:not(:empty) {
	max-width: 380px;
	margin-top: 50px;
	margin-bottom: -25px;
	padding: 10px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #ff422f;
}

/* Loading Page */
.loading {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	background-color: var(--background-color);
	z-index: 1005;
	transform: scale3d(var(--loading-scale), var(--loading-scale), var(--loading-scale));
	-webkit-transform: scale3d(var(--loading-scale), var(--loading-scale), var(--loading-scale));
	transition: .5s;
	-webkit-transition: .5s;
}

.loading.active {
	opacity: 1;
	pointer-events: all;
	transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
}

.loading svg {
	height: 200px;
	filter: drop-shadow(0 0 10px var(--main-color));
	stroke: var(--main-color);
	stroke-width: 5px;
	animation: Pulse 2s ease-in-out alternate infinite;
	-webkit-animation: Pulse 2s ease-in-out alternate infinite;
}

.loading .text {
	position: relative;
	width: 600px;
	height: 36px;
	overflow: visible;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: default;
	margin-top: 31px;
}

.loading .text div {
	position: absolute;
	width: 20px;
	height: 36px;
	opacity: 0;
	animation: loading-move 2s linear infinite, loading-rotate 2s cubic-bezier(0.4, 0, 0.48, 1.02) infinite;
	-webkit-animation: loading-move 2s linear infinite, loading-rotate 2s cubic-bezier(0.4, 0, 0.48, 1.02) infinite;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	color: var(--main-color);
}

.loading .text div:nth-child(2) {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}

.loading .text div:nth-child(3) {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

.loading .text div:nth-child(4) {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.loading .text div:nth-child(5) {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}

.loading .text div:nth-child(6) {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}

.loading .text div:nth-child(7) {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}

@keyframes loading-move {
	0% {
		left: 0;
		opacity: 0;
	}

	35% {
		left: 41%;
		opacity: 1;
	}

	65% {
		left: 59%;
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

@keyframes loading-rotate {
	35% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	65% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}

@-webkit-keyframes Pulse {
	from {
		filter: drop-shadow(0 0 3px var(--main-color));
		-webkit-filter: drop-shadow(0 0 3px var(--main-color));
	}

	to {
		filter: drop-shadow(0 0 6px var(--main-color));
		-webkit-filter: drop-shadow(0 0 6px var(--main-color));
	}
}

@keyframes Pulse {
	from {
		filter: drop-shadow(0 0 3px var(--main-color));
		-webkit-filter: drop-shadow(0 0 3px var(--main-color));
	}

	to {
		filter: drop-shadow(0 0 6px var(--main-color));
		-webkit-filter: drop-shadow(0 0 6px var(--main-color));
	}
}


/* Selection */

*::selection {
	background-color: rgb(197, 197, 197);
	color: black;
}

*::-moz-selection {
	background-color: rgb(197, 197, 197);
	color: black;
}


/* ==== Header ==== */

header {
	--shadow: 10px;
	position: fixed;
	left: 0;
	width: 100vw;
	height: 0;
	min-height: var(--header-height);
	/*padding: 30px 0;*/
	overflow: hidden;
	z-index: 100;
	transition: .5s, background-color .25s;
	animation-delay: .5s !important;
}

header.scroll {
	--header-height: var(--header-height-mobile);
	background-color: rgba(var(--background-color-rgb), 0.75);
}

header.active {
	background-color: rgba(var(--background-color-rgb), 0.95);
}

header:not(.active):not(.scroll):hover {
	background-color: rgba(var(--background-color-rgb), 0.25);
}


/*body.loaded header {
	top: 0;
	transition: min-height .5s, top .5s ease-in-out 2s;
	-webkit-transition: min-height .5s, top .5s ease-in-out 2s;
}*/


/* Menu */

header .menu .line {
	height: 3px;
	width: 20px;
	background-color: rgba(var(--text-color-rgb), 0.8);
}

header .menu .line:nth-child(2) {
	margin: 4px 0;
}

header nav .menu,
header nav .logo {
	position: absolute;
	top: calc(var(--header-height) * 0.5);
	/*display: block;*/
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

header nav .menu {
	right: 0;
	margin-right: 5%;
}

header nav .logo {
	left: 0;
	margin-left: 5%;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

header nav .logo a {
	display: flex;
}

header nav .menu {
	display: none;
}


/* Navigation */

header nav {
	height: 100%;
}

header nav ul {
	/*width: 50%;*/
	width: 450px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}

header nav li {
	display: inline-block;
	list-style: none;
	cursor: pointer;
	transition: .5s;
}

header nav li.link a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	-webkit-transform: scale3d(0, 5, 1);
	transform: scale3d(0, 5, 1);
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(1, .68, .16, .9);
	transition-timing-function: cubic-bezier(1, .68, .16, .9);
}

header nav li.link a:hover::before,
header nav li.link.active a::before {
	transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
}

header nav li.link a:hover {
	color: rgba(var(--text-color-rgb), 0.8);
}

header nav li.link a {
	position: relative;
	font-family: "Montserrat", Georgia, serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	padding: 10px 0;
	color: var(--text-color);
	transition: .25s;
}

@media screen and (max-width: 1024px) {
	header nav ul {
		margin-right: 8%;
	}
}

@media screen and (max-width: 768px) {
	header nav .menu {
		display: block;
		margin-right: 8%;
	}

	header nav .logo {
		margin-left: 8%;
	}

	header nav ul {
		flex-direction: column;
		height: auto;
		width: auto;
		padding: var(--header-height);
		margin-right: auto;
	}

	header nav ul li.link {
		padding: 0 20%;
		opacity: 0;
		pointer-events: none;
		height: var(--header-item-height);
	}

	header.active nav ul li.link {
		opacity: 1;
		pointer-events: all;
	}

	header.active {
		min-height: calc(var(--header-item-height) * var(--header-items) + var(--header-height));
		box-shadow: 0 0 10px black;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--header-height: var(--header-height-mobile);
	}
}


/* ==== Body ==== */

/* Background video */

video.background-cover {
	height: 100%;
	/*width: 177.77777778vh;*/
	width: calc(var(--w) / var(--h) * 100vh);
	min-width: 100%;
	/*min-height: 56.25vw;*/
	min-height: calc(var(--h) / var(--w) * 100vw);
}


/* Background image */

section>.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background-color: var(--invalid-background);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: -1;
}


/* Main */

main {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
}


/* Section */

section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	/*min-height: 100vh;*/
	/*padding: 20px;*/
	overflow: hidden;
	background-color: var(--background-color);
}

section:not(#footer) {
	min-height: 95vh;
}

section.overlay {
	/*background-color: rgba(0, 0, 0, var(--overlay-opacity));*/
	background-color: rgba(var(--overlay-color), var(--overlay-opacity));
}


/* Article */

article {
	display: flex;
	max-width: 1140px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1024px) and (min-width: 768px) {
	article {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* ==== Footer ==== */

footer {
	width: 100%;
	margin: 80px 0 50px;
}

footer article {
	display: flex;
	flex-direction: column;
}

footer article .info {
	display: flex;
	flex-direction: row;
}

footer article .info .table {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0 20px;
}

footer article .info .table.contact {
	flex: 2;
}

footer article .info .table h6 {
	margin-bottom: 10px;
}

footer article .info .table .item {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 10px;
	color: var(--text-color);
	font-size: 15px;
	font-weight: 300;
	opacity: 0.8;
	transition: .125s;
	-webkit-transition: .125s;
}

footer article .info .table .item:hover {
	opacity: 1
}

footer article .info .table .item svg {
	height: 20px;
	width: 20px;
	min-width: 20px;
	margin-right: 10px;
}

footer article .info .table .item a {
	display: flex;
	align-items: center;
	color: var(--text-color);
}


footer article .copy {
	margin-top: 70px;
	padding-top: 50px;
	font-weight: 300;
	font-size: 14px;
	text-align: center;
	opacity: 0.5;
	border-top: 1px solid #676767;
}

@media screen and (max-width: 768px) {
	footer article .info {
		/*flex-direction: column;*/
		flex-wrap: wrap;
		justify-content: center;
	}

	footer article .info>.table {
		margin: 10px 20px;
		/*flex: initial;*/
	}

	footer article .info .table.contact {
		/*flex: 0;*/
	}
}

/* Separators */

.separator {
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	color: var(--background-color);
}

.separator.top {
	top: -1px;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}

.separator.bottom {
	bottom: -1px;
	transform: rotateX(180deg);
	-webkit-transform: rotateX(180deg);
}

.separator svg {
	height: 100px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.separator svg {
		height: 70px;
		width: 100%;
	}
}


/* Button */

a.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/* font-family: "PT Sans", Sans-serif; */
	font-family: "Poppins", Sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	white-space: nowrap;
	padding: 12px 32px;
	color: var(--text-color);
	background-color: rgba(255, 44, 85, 0);
	border: 2px solid var(--main-color);
	border-radius: 50px;
	transition: .3s;
	-webkit-transition: .3s;
}

a.button:hover {
	transform: translateY(8px) !important;
	-webkit-transform: translateY(8px) !important;
}

a.button.active,
a.button:hover {
	color: var(--text-color);
	background-color: var(--main-color);
	border-color: var(--main-color);
	text-shadow: 0 0 50px var(--background-color);
}

button:disabled:has(>a.button),
input:disabled:has(>a.button) {
	cursor: not-allowed !important;
}

button:disabled>a.button:hover,
input:disabled>a.button:hover {
	background-color: rgba(255, 44, 85, 0);
	transform: none !important;
	-webkit-transform: none !important;
}


/* User defined content */
.user-content {}

.user-content * {
	text-decoration: revert;
}

.user-content b,
.user-content strong {
	font-weight: 600;
}

.user-content ol,
.user-content ul {
	margin: 8px 0;
	padding-left: 20px;
}

.user-content li::marker {
	font-weight: 400;
}

.user-content p {
	margin: 8px 0;
}

.user-content mark {
	background-color: var(--main-color);
	color: black;
	font-weight: 500;
	padding: 0 4px;
}


/* Paragraph */

p,
.user-content {
	font-family: "Poppins";
	font-weight: 300;
	font-size: 18px;
	line-height: 28px;
	word-spacing: 0;
	letter-spacing: 0;
	color: rgba(var(--text-color-rgb), 0.7);
}

p.strong {
	color: var(--text-color) !important;
	font-size: 18px !important;
}

@media screen and (max-width: 768px) {
	p {
		font-size: 14px;
	}
}


/* Headers */

h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins";
	font-weight: 700;
	color: var(--text-color);
}

h3::after,
h4::after {
	content: ".";
	color: var(--main-color);
}

h2 {
	font-size: 70px;
	line-height: 83px;
}

h3 {
	font-size: 50px;
	line-height: 52px;
}

h4 {
	font-size: 36px;
	line-height: 45px;
}

h5 {
	font-size: 35px;
	line-height: 45px;
}

h6 {
	font-size: 14px;
	line-height: 36px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--main-color);
}

h6::before {
	content: "/";
	margin-right: 5px;
}

@media screen and (max-width: 1366px) {
	h5 {
		font-size: 25px;
		line-height: 32px;
	}
}

@media screen and (max-width: 1024px) {
	h2 {
		font-size: 60px;
		line-height: 70px;
	}

	h3 {
		/* line-height: 28px; */
	}
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 30px;
		line-height: 40px;
	}
}


/* Limit Lines */

.multiline {}

.multiline .linelimit {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--lines);
	-webkit-box-orient: vertical;
}

.multiline.show .linelimit {
	-webkit-line-clamp: unset;
}

.multiline .showmore {
	cursor: pointer;
	font-size: 14px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.multiline:not(.show) .showmore::after {
	content: "Zobraziť viac";
}

.multiline.show .showmore::after {
	content: "Zobraziť menej";
}

/* MapOverlay */

.map-overlay .content {
	display: flex;
	flex-direction: row;
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--background-color);
}

.map-overlay .content .close {
	position: absolute;
	width: 25px;
	padding: 10px 15px 0;
	margin: 10px 15px;
	cursor: pointer;
	color: var(--text-color);
	opacity: .5;
	transition: .25s;
	-webkit-transition: .25s;
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
	-webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
	z-index: 5;
}

.map-overlay .content .close:hover {
	opacity: 1;
	filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
	-webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
}

.map-overlay aside {
	width: 30%;
	padding: 10px;
	overflow: auto;
	background-color: var(--background-color);
}

.map-overlay aside>div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	/*background-color: var(--main-color);*/
}

.map-overlay aside .poster img {
	width: 100%;
	height: 200px;
	margin-bottom: 15px;
	object-fit: contain;
}

.map-overlay aside .price {
	margin: 25px 0 30px;
	font-size: 20px;
}

.map-overlay aside .value {
	margin: 20px 5px;
	font-weight: 600;
	color: var(--main-color);
}

.map-overlay aside .table {
	--logo-size: 40px;
	--item-padding: 5px;
	display: flex;
	flex-direction: column;
	margin: 10px 0;
}

.map-overlay aside .table .sold {
	font-style: italic;
	color: #ff2318;
	font-weight: 900;
	padding-left: 10px;
}

.map-overlay aside .table .vipcard {
	color: rgba(var(--text-color-rgb), 1);
}

.map-overlay aside .table .item {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 3px 0;
	padding: var(--item-padding);
	border-radius: 2px;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.033);
	transition: background-color .125s;
	-webkit-transition: background-color .125s;
}

.map-overlay aside .table .item:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.map-overlay aside .table .item.active {
	background-color: rgba(255, 255, 255, 0.1);
}

.map-overlay aside .table .item .logo {
	min-width: var(--logo-size);
	height: var(--logo-size);
	background-image: var(--url);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.map-overlay aside .table .item .name {
	padding: 0 10px;
	font-size: 14px;
	font-weight: 300;
	opacity: 0.9;
}

.map-overlay .map {
	flex: 1;
}

.map-overlay .map>div:first-child {
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.global-overlay {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0, 0, 0, .75);
	z-index: 800;
	transition: .25s;
	-webkit-transition: .25s;
}

.global-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.overlay-content {
	/* position: fixed;
	left: 50%;
	top: 50%; */
	width: calc(100vw * var(--overlay-desktop-w));
	height: calc(100 * var(--vh) * var(--overlay-desktop-h));
	/* transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%); */
}

@media screen and (max-width: 1024px) {
	.overlay-content {
		width: calc(100vw * var(--overlay-tablet-w));
		height: calc(100 * var(--vh) * var(--overlay-tablet-h));
	}

	.map-overlay aside {
		width: 40%;
	}
}

@media screen and (max-width: 768px) {
	.overlay-content {
		width: calc(100vw * var(--overlay-mobile-w));
		height: calc(100 * var(--vh) * var(--overlay-mobile-h));
		max-width: initial !important;
		max-height: initial !important;
	}

	.map-overlay .content {
		flex-direction: column-reverse;
	}

	.map-overlay .close {
		right: 0;
		top: 0;
		margin: 0px 5px;
	}

	.map-overlay aside {
		width: 100%;
		height: 45%;
		border-top: 2px solid var(--main-color);
		transition: height 1s;
		-webkit-transition: height 1s;
		z-index: 1;
	}

	.map-overlay .map {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 80%;
	}

	.map-overlay.map aside {
		height: 20%;
	}

	.map-overlay.content aside {
		height: 80%;
	}

	.map-overlay.map aside>div {
		pointer-events: none;
	}

	.map-overlay.content .map iframe {
		pointer-events: none;
	}
}

/* Gallery */

/* .gallery {
	cursor: grab;
} */

.gallery .viewer {
	position: fixed;
	top: 50%;
	left: 50%;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	border-radius: 10px;
	box-shadow: 0 0 40px 10px black;
	background-color: var(--background-color);
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transition: opacity .75s;
	-webkit-transition: opacity .75s;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	z-index: 200;
}

.gallery .viewer.active {
	opacity: 1;
	pointer-events: all;
}

.gallery .viewer+.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
	background-color: black;
	transition: .75s;
	-webkit-transition: .75s;
	z-index: 199;
}

.gallery .viewer.active+.overlay {
	opacity: .75;
	pointer-events: all;
}

.gallery .viewer .controls,
.gallery .viewer .images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gallery .viewer .controls>* {
	position: absolute;
	width: 25px;
	padding: 10px 15px 0;
	margin: 10px 15px;
	cursor: pointer;
	color: var(--text-color);
	opacity: .5;
	transition: .25s;
	-webkit-transition: .25s;
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
	-webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
	z-index: 1;
}

.gallery .viewer .controls>*:hover {
	opacity: 1;
	filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
	-webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
}

.gallery .viewer .controls .close {
	top: 0;
	left: 0;
}

.gallery .viewer .controls .prev,
.gallery .viewer .controls .next {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.gallery .viewer .controls .prev {
	left: 0;
}

.gallery .viewer .controls .next {
	right: 0;
}

.gallery .viewer .posters {
	--poster-size: 70px;
	position: absolute;
	display: flex;
	flex-direction: row;
	bottom: 0;
	left: 50%;
	max-width: 90%;
	margin: 15px 0;
	padding: 10px 0;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: .25s;
	-webkit-transition: .25s;
}

.gallery .viewer .posters:hover {
	overflow: auto;
}

.gallery .viewer .posters .poster {
	flex: 1 0 auto;
	width: var(--poster-size);
	height: var(--poster-size);
	margin: 0 10px;
	cursor: pointer;
	opacity: .5;
	border-radius: 5px;
	background-color: var(--invalid-background);
	background-image: var(--url);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: .25s;
	-webkit-transition: .25s;
}

.gallery .viewer .posters:hover .poster {
	opacity: .5;
}

.gallery .viewer .posters .poster:hover {
	opacity: .6;
}

.gallery .viewer .posters .poster.active {
	border: 1px var(--main-color) solid;
	opacity: .75;
}

.gallery .viewer .images {
	display: flex;
	flex-direction: row;
	transform: translate3d(var(--position), 0, 0);
	-webkit-transform: translate3d(var(--position), 0, 0);
	transition: transform .75s;
	-webkit-transition: transform .75s;
}

.gallery .viewer .images .image {
	flex: 1 0 auto;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery .viewer .images .image img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	box-shadow: 0 0 50px 0px black;
}

@media screen and (max-width: 1024px) {
	.gallery .viewer .controls>* {
		margin: 0 5px;
	}

	.gallery .viewer .posters {
		--poster-size: 50px;
		overflow: auto !important;
	}
}

@media screen and (max-width: 768px) {
	.gallery .viewer .controls>* {
		margin: 0 5px;
	}

	.gallery .viewer .posters {
		--poster-size: 40px;
	}
}

.gallery .posts {
	display: flex;
	flex-direction: row;
	cursor: grab;
	transform: translate3d(var(--position), 0, 0);
	-webkit-transform: translate3d(var(--position), 0, 0);
	transition: 1s ease-out;
	-webkit-transition: 1s ease-out;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.gallery .posts.drag {
	cursor: grabbing;
	transition: none;
	-webkit-transition: none;
}

.gallery .posts.move {
	transition: none !important;
	-webkit-transition: none !important;
}

.gallery .posts .post {
	flex: 1 0 auto;
	position: relative;
	width: calc(var(--desktop-width) * 100vw);
	/* overflow: hidden; */
}

.gallery .posts .post>* {
	width: 36vw;
	height: 23vw;
	margin-left: 30px;
	/*margin: 0 150px 50px 30px;*/
}

.gallery .posts .post .poster {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border-radius: 15px;
}

.gallery .posts .post .poster .image {
	background-image: var(--url);
	background-color: var(--invalid-background);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.gallery .posts .post .poster>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
	-webkit-transition: .5s;
}

.gallery .posts:not(.drag) .post .poster:hover .image {
	transform: scale3d(1.1, 1.1, 1.1);
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
}

.gallery .posts .post .poster .overlay {
	background-color: rgba(0, 0, 0, .33);
}

.gallery .posts:not(.drag) .post .poster:hover .overlay {
	background-color: rgba(0, 0, 0, .5);
}

.gallery .posts .post .content {
	position: absolute;
	top: 33%;
	left: 33%;
	width: 55%;
	pointer-events: none;
}

.gallery .posts .post .content>* {
	margin-bottom: 10px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8);
}

.gallery .posts .post .content h6 {
	font-size: 14px;
}

.gallery .position {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 0 10px;
}

.gallery .position>div {
	height: 6px;
	width: 60px;
	background-color: rgba(255, 255, 255, .125);
	cursor: pointer;
	transition: .5s;
	-webkit-transition: .5s;
}

.gallery .position>div:not(:last-child) {
	margin-right: 20px;
}

.gallery .position>div.active {
	background-color: var(--main-color);
}

.gallery .position>div:not(.active):hover {
	background-color: rgba(255, 255, 255, .25);
}


/*.gallery .post {
	background: red;
	border: 2px solid lime;
	user-select: none;
}*/

@media screen and (max-width: 1024px) {
	.gallery .posts .post {
		display: flex;
		flex-direction: column;
		width: calc(var(--tablet-width) * 100vw);
		padding: 0 30px;
	}

	.gallery .posts .post .poster {
		width: auto;
		height: 0;
		margin: 0;
		padding-top: 63.88%;
		border-radius: 10px 10px 0 0;
	}

	.gallery .posts .post .content {
		flex: 1;
		position: static;
		width: auto;
		height: auto;
		margin: 0;
		padding: 30px 20px;
		background-color: var(--gallery-post-background);
		border-radius: 0 0 10px 10px;
		pointer-events: all;
	}

	.gallery .posts .post .content>* {
		margin-bottom: 20px;
		text-shadow: none;
	}
}

@media screen and (max-width: 768px) {
	.gallery .posts .post {
		width: calc(var(--mobile-width) * 100vw);
		padding: 0 15px;
	}

	.gallery .posts .post .content>* {
		margin-bottom: 10px;
	}

	.gallery .posts .post .content h6 {
		font-size: 12px;
	}

	.gallery .position {
		margin-top: 35px;
	}
}


/* Animation */

.FadeInDown {
	animation: FadeInDown 1s both;
	-webkit-animation: FadeInDown 1s both;
}

.fadein:not(.FadeInDown) {
	opacity: 0 !important;
	pointer-events: none !important;
}

.animationDelay>*:nth-child(1) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 0);
}

.animationDelay>*:nth-child(2) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 1);
}

.animationDelay>*:nth-child(3) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 2);
}

.animationDelay>*:nth-child(4) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 3);
}

.animationDelay>*:nth-child(5) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 4);
}

.animationDelay>*:nth-child(6) {
	animation-delay: calc(var(--delay-start, 0s) + var(--delay) * 5);
}

@keyframes FadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100px, 0);
		-webkit-transform: translate3d(0, -100px, 0);
		pointer-events: none;
	}

	to {
		transform: none;
		-webkit-transform: none;
		pointer-events: all;
	}
}


/* Input */

input,
select,
textarea {
	height: 26px;
	padding: 0 5px;
	border: 1px solid transparent;
	background-color: rgb(42, 42, 42);
	color: white;
	font-family: inherit;
}

input[type="datetime-local"],
input[type="time"] {
	font-family: monospace;
}

textarea {
	height: initial;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--main-color);
}

input:invalid,
textarea:invalid {
	border-color: #ff1b13;
}

input:not([type="checkbox"]):disabled,
select:disabled,
textarea:disabled {
	background-color: rgb(25, 25, 25);
	color: #b9b9b9;
	padding-right: 25px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zM264 392c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48zm32-168H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 99% center;
	background-size: 10px 15px;
	appearance: none;
	-webkit-appearance: none;
}

input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed !important;
}

input[type="color"] {
	width: 100px;
	background-position-x: 80px;
}

input[type="number"] {
	width: 200px;
	background-position-x: 180px;
}

select {
	width: 300px;
	background-position-x: 280px;
}

input[type="text"] {
	width: 500px;
	background-position-x: 480px;
}

input[type="time"][step="3600"] {
	width: 80px;
	padding-right: 0px;
	background-position-x: 60px;
}




/* Utils */
.flex {
	display: flex;
}

.flex.row {
	flex-direction: row;
}

.flex.column {
	flex-direction: column;
}

.flex.center {
	align-items: center;
	justify-content: center;
}

.flex.h-center,
.flex.row.h-center,
.flex.column.v-center {
	justify-content: center;
}

.flex.v-center,
.flex.row.v-center,
.flex.column.h-center {
	align-items: center;
}

.dot {
	min-width: 3px;
	min-height: 3px;
	margin: 0 8px;
	border-radius: 50%;
	background-color: white;
	opacity: 0.4;
}