.tab-btn::before,
.jackpot-item__content::before,
.jackpot-item__header::before,
.view::before,
.search-toggler::before,
.search-toggler::after,
.slick-dots li::before,
.select2-container--default .select2-selection--single .select2-selection__arrow::before,
.form-checkbox input[type=checkbox]:checked+label::after,
.form-checkbox input[type=checkbox]+label::before,
.main-list>li.has-dropdown>a::before,
.main-list>li.has-dropdown::before,
body::before {
	content: "";
	position: absolute;
}

.jackpot-item__content::before,
.jackpot-item__header::before,
.search-form button,
.main-list>li.has-dropdown>a::before {
	transform: translateY(-50%);
	top: 50%;
}

.tab-btn::before {
	transform: translateX(-50%);
	left: 50%;
}

:root {
	--f-spinner-width: 36px;
	--f-spinner-height: 36px;
	--f-spinner-color-1: rgba(0, 0, 0, 0.1);
	--f-spinner-color-2: rgba(17, 24, 28, 0.8);
	--f-spinner-stroke: 2.75;
}

.f-spinner {
	margin: auto;
	padding: 0;
	width: var(--f-spinner-width);
	height: var(--f-spinner-height);
}

.f-spinner svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
	animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
	stroke-width: var(--f-spinner-stroke);
	fill: none;
}

.f-spinner svg *:first-child {
	stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
	stroke: var(--f-spinner-color-2);
	animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes f-spinner-dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}

.f-throwOutUp {
	animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
	animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
	to {
		transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		opacity: 0;
	}
}

@keyframes f-throwOutDown {
	to {
		transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		opacity: 0;
	}
}

.f-zoomInUp {
	animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
	animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
	from {
		transform: scale(0.975) translate3d(0, 16px, 0);
		opacity: 0;
	}

	to {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-zoomOutDown {
	to {
		transform: scale(0.975) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

.f-fadeIn {
	animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
	z-index: 2;
}

.f-fadeOut {
	animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
	z-index: 1;
}

@keyframes f-fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeOut {
	100% {
		opacity: 0;
	}
}

.f-fadeFastIn {
	animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
	z-index: 2;
}

.f-fadeFastOut {
	animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
	z-index: 2;
}

@keyframes f-fadeFastIn {
	0% {
		opacity: 0.75;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeFastOut {
	100% {
		opacity: 0;
	}
}

.f-fadeSlowIn {
	animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
	z-index: 2;
}

.f-fadeSlowOut {
	animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
	z-index: 1;
}

@keyframes f-fadeSlowIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-fadeSlowOut {
	100% {
		opacity: 0;
	}
}

.f-crossfadeIn {
	animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
	z-index: 2;
}

.f-crossfadeOut {
	animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
	z-index: 1;
}

@keyframes f-crossfadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes f-crossfadeOut {
	100% {
		opacity: 0;
	}
}

.f-slideIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes f-slideInNext {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes f-slideOutNext {
	100% {
		transform: translateX(-100%);
	}
}

@keyframes f-slideOutPrev {
	100% {
		transform: translateX(100%);
	}
}

.f-classicIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
	z-index: 2;
}

.f-classicIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
	z-index: 2;
}

.f-classicOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
	z-index: 1;
}

.f-classicOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
	z-index: 1;
}

@keyframes f-classicInNext {
	0% {
		transform: translateX(-75px);
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-classicInPrev {
	0% {
		transform: translateX(75px);
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes f-classicOutNext {
	100% {
		transform: translateX(-75px);
		opacity: 0;
	}
}

@keyframes f-classicOutPrev {
	100% {
		transform: translateX(75px);
		opacity: 0;
	}
}

:root {
	--f-button-width: 40px;
	--f-button-height: 40px;
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-color: #374151;
	--f-button-bg: #f8f8f8;
	--f-button-hover-bg: #e0e0e0;
	--f-button-active-bg: #d0d0d0;
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 20px;
	--f-button-svg-height: 20px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: none;
	--f-button-svg-disabled-opacity: 0.65;
}

.f-button {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: content-box;
	position: relative;
	margin: 0;
	padding: 0;
	width: var(--f-button-width);
	height: var(--f-button-height);
	border: var(--f-button-border);
	border-radius: var(--f-button-border-radius);
	color: var(--f-button-color);
	background: var(--f-button-bg);
	box-shadow: var(--f-button-shadow);
	pointer-events: all;
	cursor: pointer;
	transition: var(--f-button-transition);
}

@media (hover: hover) {
	.f-button:hover:not([disabled]) {
		color: var(--f-button-hover-color);
		background-color: var(--f-button-hover-bg);
	}
}

.f-button:active:not([disabled]) {
	background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
	outline: none;
}

.f-button:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
	width: var(--f-button-svg-width);
	height: var(--f-button-svg-height);
	fill: var(--f-button-svg-fill);
	stroke: currentColor;
	stroke-width: var(--f-button-svg-stroke-width);
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: opacity 0.15s ease;
	transform: var(--f-button-transform);
	filter: var(--f-button-svg-filter);
	pointer-events: none;
}

.f-button[disabled] {
	cursor: default;
}

.f-button[disabled] svg {
	opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
	position: absolute;
	z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
	top: 50%;
	transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
	left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
	right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
	left: auto;
	right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
	right: auto;
	left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
	top: auto;
	left: 50%;
	transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
	top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
	bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
	transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
	pointer-events: none;
}

html.with-fancybox {
	width: auto;
	overflow: visible;
	scroll-behavior: auto;
}

html.with-fancybox body {
	touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
	width: auto;
	margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
	overflow: hidden !important;
	overscroll-behavior-y: none;
}

.fancybox__container {
	--fancybox-color: #dbdbdb;
	--fancybox-hover-color: #fff;
	--fancybox-bg: rgba(24, 24, 27, 0.98);
	--fancybox-slide-gap: 10px;
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-color-1: rgba(255, 255, 255, 0.1);
	--f-spinner-color-2: #bbb;
	--f-spinner-stroke: 3.65;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #f8f8f8;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: visible;
	z-index: var(--fancybox-zIndex, 1050);
	outline: none;
	transform-origin: top left;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
	box-sizing: inherit;
}

.fancybox__container::backdrop {
	background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: var(--fancybox-bg);
	opacity: var(--fancybox-opacity, 1);
	will-change: opacity;
}

.fancybox__carousel {
	position: relative;
	box-sizing: border-box;
	flex: 1;
	min-height: 0;
	z-index: 10;
	overflow-y: visible;
	overflow-x: clip;
}

.fancybox__viewport {
	width: 100%;
	height: 100%;
}

.fancybox__viewport.is-draggable {
	cursor: move;
	cursor: grab;
}

.fancybox__viewport.is-dragging {
	cursor: move;
	cursor: grabbing;
}

.fancybox__track {
	display: flex;
	margin: 0 auto;
	height: 100%;
}

.fancybox__slide {
	flex: 0 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 var(--fancybox-slide-gap) 0 0;
	padding: 4px;
	overflow: auto;
	overscroll-behavior: contain;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
	padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
	overflow: hidden;
}

.fancybox__slide.has-image {
	overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
	overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
	content: "";
	flex: 0 0 0;
	margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
	display: block;
}

.fancybox__content {
	align-self: center;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0;
	padding: 2rem;
	max-width: 100%;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	cursor: default;
	border-radius: 0;
	z-index: 20;
}

.is-loading .fancybox__content {
	opacity: 0;
}

.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab;
}

.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}

.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
	cursor: auto;
}

.fancybox__slide.has-image>.fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transition: none;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
	width: 100%;
	height: auto;
	max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
	will-change: transform, width, height;
}

.fancybox-image {
	margin: auto;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	user-select: none;
	filter: blur(0px);
}

.fancybox__caption {
	align-self: center;
	max-width: 100%;
	flex-shrink: 0;
	margin: 0;
	padding: 14px 0 4px 0;
	overflow-wrap: anywhere;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	cursor: auto;
	visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
	opacity: 0;
	visibility: hidden;
}

.is-compact .fancybox__caption {
	padding-bottom: 0;
}

.f-button.is-close-btn {
	--f-button-svg-stroke-width: 2;
	position: absolute;
	top: 0;
	right: 8px;
	z-index: 40;
}

.fancybox__content>.f-button.is-close-btn {
	--f-button-width: 34px;
	--f-button-height: 34px;
	--f-button-border-radius: 4px;
	--f-button-color: var(--fancybox-color, #fff);
	--f-button-hover-color: var(--fancybox-color, #fff);
	--f-button-bg: transparent;
	--f-button-hover-bg: transparent;
	--f-button-active-bg: transparent;
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
	position: absolute;
	top: -38px;
	right: 0;
	opacity: 0.75;
}

.is-loading .fancybox__content>.f-button.is-close-btn {
	visibility: hidden;
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
	visibility: hidden;
}

.fancybox__content>.f-button.is-close-btn:hover {
	opacity: 1;
}

.fancybox__footer {
	padding: 0;
	margin: 0;
	position: relative;
}

.fancybox__footer .fancybox__caption {
	width: 100%;
	padding: 24px;
	opacity: var(--fancybox-opacity, 1);
	transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
	padding: 12px;
}

.is-compact .fancybox__content>.f-button.is-close-btn {
	--f-button-border-radius: 50%;
	--f-button-color: #fff;
	--f-button-hover-color: #fff;
	--f-button-outline-color: #000;
	--f-button-bg: rgba(0, 0, 0, 0.6);
	--f-button-active-bg: rgba(0, 0, 0, 0.6);
	--f-button-hover-bg: rgba(0, 0, 0, 0.6);
	--f-button-svg-width: 18px;
	--f-button-svg-height: 18px;
	--f-button-svg-filter: none;
	top: 5px;
	right: 5px;
}

.fancybox__nav {
	--f-button-width: 50px;
	--f-button-height: 50px;
	--f-button-border: 0;
	--f-button-border-radius: 50%;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: transparent;
	--f-button-hover-bg: rgba(24, 24, 27, 0.3);
	--f-button-active-bg: rgba(24, 24, 27, 0.5);
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 26px;
	--f-button-svg-height: 26px;
	--f-button-svg-stroke-width: 2.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
	--f-button-svg-disabled-opacity: 0.65;
	--f-button-next-pos: 1rem;
	--f-button-prev-pos: 1rem;
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
	position: absolute;
	content: "";
	top: -30px;
	right: -20px;
	left: -20px;
	bottom: -30px;
	z-index: 1;
}

.is-idle .fancybox__nav {
	animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
	pointer-events: none;
	animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide>.f-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
	z-index: 30;
	cursor: pointer;
}

.fancybox-protected {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	user-select: none;
}

.fancybox-ghost {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	z-index: 40;
	user-select: none;
	pointer-events: none;
}

.fancybox-focus-guard {
	outline: none;
	opacity: 0;
	position: fixed;
	pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
	opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
	animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
	animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
	animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
	animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
	width: calc(100% - 120px);
	height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
	width: 100%;
	height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, 0.9);
	color: #fff;
}

.has-map .fancybox__content {
	background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.f-carousel__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-outline: 0;
	--f-thumb-outline-color: #5eb0ef;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
	--f-thumb-border-radius: 2px;
	--f-thumb-offset: 0px;
	--f-button-next-pos: 0;
	--f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
}

.f-thumbs {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	user-select: none;
	perspective: 1000px;
	transform: translateZ(0);
}

.f-thumbs .f-spinner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-image: linear-gradient(#ebeff2, #e2e8f0);
	z-index: -1;
}

.f-thumbs .f-spinner svg {
	display: none;
}

.f-thumbs.is-vertical {
	height: 100%;
}

.f-thumbs__viewport {
	width: 100%;
	height: auto;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
	display: flex;
}

.f-thumbs__slide {
	position: relative;
	flex: 0 0 auto;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: var(--f-thumb-width);
	height: var(--f-thumb-height);
	overflow: visible;
	cursor: pointer;
}

.f-thumbs__slide.is-loading img {
	opacity: 0;
}

.is-classic .f-thumbs__viewport {
	height: 100%;
}

.is-modern .f-thumbs__track {
	width: max-content;
}

.is-modern .f-thumbs__track::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
	width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
	cursor: pointer;
}

.is-modern .f-thumbs__slide {
	width: var(--f-thumb-clip-width);
	transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
	transition: none;
	pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
	transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
	transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
	filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
	appearance: none;
	width: var(--f-thumb-width);
	height: 100%;
	margin: 0 -100% 0 -100%;
	padding: 0;
	border: 0;
	position: relative;
	border-radius: var(--f-thumb-border-radius);
	overflow: hidden;
	background: rgba(0, 0, 0, 0);
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	opacity: var(--f-thumb-opacity);
	transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
	opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
	outline: none;
}

.f-thumbs__slide__button:focus-visible {
	outline: none;
	opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
	--clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
	clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
	opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	bottom: 0;
	border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
	border-radius: var(--f-thumb-border-radius);
	animation: f-fadeIn 0.2s ease-out;
	z-index: 10;
}

.f-thumbs__slide__img {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: var(--f-thumb-offset);
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
	padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
	margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
	flex-wrap: wrap;
	padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
	margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-border-radius: 2px;
	--f-thumb-outline: 2px;
	--f-thumb-outline-color: #ededed;
	position: relative;
	opacity: var(--fancybox-opacity, 1);
	transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
	padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
	padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
	--f-thumb-width: 64px;
	--f-thumb-clip-width: 32px;
	--f-thumb-height: 48px;
	--f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
	max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
	transition: none !important;
}

.fancybox__toolbar {
	--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: rgba(24, 24, 27, 0.65);
	--f-button-hover-bg: rgba(70, 70, 73, 0.65);
	--f-button-active-bg: rgba(90, 90, 93, 0.65);
	--f-button-border-radius: 0;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
	--f-button-svg-fill: none;
	--f-button-svg-disabled-opacity: 0.65;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
	pointer-events: none;
	z-index: 20;
}

.fancybox__toolbar :focus-visible {
	z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.is-idle .fancybox__toolbar {
	pointer-events: none;
	animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
	flex-grow: 1;
	flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
	display: flex;
	justify-content: flex-end;
	flex-wrap: nowrap;
}

.fancybox__infobar {
	padding: 0 5px;
	line-height: var(--f-button-height);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
	cursor: default;
	user-select: none;
}

.fancybox__infobar span {
	padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
	background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
	position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
	height: 100%;
	opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
	display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
	display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
	display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
	display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
	display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
	display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
	display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
	display: flex;
}

.f-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
	z-index: 30;
	user-select: none;
	pointer-events: none;
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
	padding: 0 0;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 1;
}

.hamburger.is-active:hover {
	opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #000;
}

.hamburger-box {
	width: 22px;
	height: 14px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 22px;
	height: 2px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -6px;
}

.hamburger-inner::after {
	bottom: -6px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
	top: -12px;
	transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -6px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
	top: 1px;
	transition-duration: 0.275s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
	top: 6px;
	transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
	top: 12px;
	transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
	transform: translate3d(0, 6px, 0) rotate(135deg);
	transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
	transition-delay: 0s;
	opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
	transform: translate3d(0, -12px, 0) rotate(-270deg);
	transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
	overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
	transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
	left: 0;
	transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
	top: 6px;
	right: 0;
	transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
	left: -44px;
	top: -44px;
	transform: translate3d(44px, 44px, 0) rotate(45deg);
	transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
	right: -44px;
	top: -44px;
	transform: translate3d(-44px, 44px, 0) rotate(-45deg);
	transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
	transition-duration: 0s;
	transition-delay: 0.1s;
	transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
	transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
	transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
	transform: rotate(765deg);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
	transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(90deg);
}

html,
body {
	height: 100%;
}

p {
	margin-top: 0;
	margin-bottom: 15px;
}

path,
rect,
circle {
	transition: all 0.35s ease;
}

body {
	font-size: 18px;
	line-height: 1.5;
	min-width: 360px;
	position: relative;
	font-family: "Roboto", sans-serif;
	color: #212121;
	margin: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: 100%;
	display: flex;
	flex-direction: column;
	background: #F8F7F5;
}

body::before {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
	background: rgba(33, 33, 33, 0.8);
	opacity: 0;
	transition: all 0.35s ease;
}

body.hidden::before {
	opacity: 1;
}

.mobile-nav {
	display: none;
}

::placeholder {
	color: #666;
	opacity: 1;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

address {
	font-style: normal;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

input,
select,
button,
textarea {
	outline: none;
	border: none;
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	margin: 0;
}

a {
	color: inherit;
	transition: all 0.3s linear;
	text-decoration: none;
	outline: none;
}

img {
	max-width: 100%;
}

button {
	cursor: pointer;
	background: none;
}

select {
	appearance: none;
}

select::-ms-expand {
	display: none;
}

textarea {
	resize: none;
}

body.hidden {
	overflow: hidden;
}

.logo {
	align-self: center;
}

.logo img,
.logo svg {
	display: block;
}

.header-row {
	display: flex;
	justify-content: space-between;
}

.main-nav {
	margin-top: 26px;
}

.main-list {
	display: flex;
	align-items: center;
	gap: 10px;
}

.main-list>li {
	position: relative;
}

.main-list>li.has-dropdown::before {
	width: 10px;
	height: 10px;
	right: -10px;
	bottom: 0;
	background: url("../img/menu-hover.svg") no-repeat center center;
	transition: all 0.35s ease;
	opacity: 0;
	visibility: hidden;
}

.main-list>li.has-dropdown>a {
	position: relative;
	border-radius: 24px 24px 0 0;
}

.main-list>li.has-dropdown>a::before {
	width: 24px;
	height: 24px;
	background: url("../img/menu-arrow.svg") no-repeat center center;
	right: 10px;
	transition: all 0.35s ease;
}

@media (hover: hover) {
	.main-list>li.has-dropdown:hover::before {
		opacity: 1;
		visibility: visible;
	}

	.main-list>li.has-dropdown:hover>a {
		border-radius: 24px 24px 0 0;
	}

	.main-list>li.has-dropdown:hover>a::before {
		transform: translateY(-50%) rotate(180deg);
		background: url("../img/menu-arrow-active.svg") no-repeat center center;
	}
}

.main-list>li.active>a {
	background: #0a833e;
	color: #fff;
}

@media (hover: hover) {
	.main-list>li:hover .submenu {
		opacity: 1;
		visibility: visible;
	}

	.main-list>li:hover>a {
		background: #0a833e;
		color: #fff;
	}
}

.main-list>li>a {
	position: relative;
	display: inline-block;
	border-bottom: 1px solid transparent;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.48;
	padding: 16px 30px;
	border-radius: 24px;
	line-height: 1;
	transition: all 0.35s ease;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 184px;
	border-radius: 0 24px 24px 24px;
	transition: opacity 0.35s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
	background: #0a833e;
	padding: 12px 23px 23px;
}

.submenu li {
	margin-bottom: 12px;
}

.submenu li:last-child {
	margin-bottom: 0;
}

.submenu a {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 1.48;
}

.submenu a:hover {
	color: #fee100;
}

.language {
	padding: 4px 4px;
	cursor: pointer;
	position: relative;
}

.language:hover .language-dropdown {
	visibility: visible;
	opacity: 1;
}

.language-toggler {
	display: flex;
	align-items: center;
	gap: 5px;
}

.language-toggler__img {
	flex-shrink: 0;
}

.language-toggler__img img,
.language-toggler__img svg {
	display: block;
	border-radius: 50%;
}

.language-toggler__text {
	color: #000;
	line-height: 1;
	transition: all 0.35s ease;
}

.language-toggler__arrow {
	transition: all 0.35s ease;
}

.language-toggler__arrow svg {
	display: block;
}

.language-dropdown {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.language-dropdown__link {
	display: flex;
	align-items: center;
	text-align: center;
	padding: 4px 4px;
	gap: 4px;
}

.language-dropdown__link img {
	width: 26px;
	flex-shrink: 0;
}

.language-dropdown__link span {
	color: #000;
	line-height: 1;
	transition: all 0.35s ease;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.hamburger-inner {
	background: #046a38;
	border-radius: 2px;
}

.hamburger-inner::before,
.hamburger-inner::after {
	background: #046a38;
	border-radius: 2px;
}

.hamburger.is-active .hamburger-inner {
	background: #fff;
}

.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background: #fff;
}

body.home .header {
	padding: 18px 0;
}

body.home .header-row {
	align-items: center;
}

body.home .search {
	display: block;
}

body.home .main-nav {
	margin: 0;
}

body.home .main-list>li>a {
	padding: 16px 36px;
}

.footer {
	margin-top: auto;
}

.footer-logo {
	margin-bottom: 24px;
}

.footer-logo img,
.footer-logo svg {
	display: block;
}

.footer-bottom {
	background: #004222;
	padding: 32px 0 32px;
}

.footer-top {
	background: #00602e;
	padding: 50px 0 60px;
}

.footer-top__head {
	font-weight: 700;
	font-size: 31px;
	line-height: 1.17;
	color: #fff;
	margin-bottom: 24px;
}

.footer-top__row {
	display: flex;
	justify-content: space-between;
	gap: 104px;
}

.footer-top__title {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.38;
	color: #fee100;
	margin-bottom: 14px;
	gap: 10px;
}

.footer-top__title svg {
	flex-shrink: 0;
}

.footer-top__item {
	width: 25%;
}

.footer-top__list li {
	margin-bottom: 10px;
}

.footer-top__list li:last-child {
	margin-bottom: 0;
}

.footer-top__list a {
	background: #0a833e;
	border-radius: 10px;
	display: block;
	padding: 5px 15px;
}

.footer-top__list a:hover {
	background: #046a38;
}

.footer-top__list-title {
	font-size: 12px;
	ine-height: 1.28;
	display: block;
}

.footer-top__list-time {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.28;
	color: #fff;
}

.footer-top__list-time span {
	font-size: 15px;
	font-weight: 900;
}

.footer-top__list--solo {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-top__list--solo li {
	width: calc(50% - 5px);
	margin-bottom: 0;
}

.footer-top__list--solo li a {
	font-size: 15px;
	line-height: 1.28;
	display: block;
	font-weight: 900;
	color: #fff;
	text-align: center;
	padding: 19px 12px;
}

.copyright {
	font-size: 15px;
	line-height: 1.48;
	color: #fff;
}

.form-input,
.form-textarea {
	display: block;
	width: 100%;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	color: #000;
	transition: all 0.35s ease;
	-webkit-appearance: none;
	border-radius: 0px;
	padding: 10px 15px;
	background: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder {
	font-size: 16px;
	color: #000;
	font-family: "Roboto", sans-serif;
}

.form-input:hover,
.form-input:focus,
.form-textarea:hover,
.form-textarea:focus {
	border-color: red;
}

.form-textarea {
	min-height: 140px;
}

.form-row {
	margin-bottom: 15px;
}

.form-checkbox input[type=checkbox] {
	display: none;
}

.form-checkbox input[type=checkbox]+label {
	position: relative;
	cursor: pointer;
	display: block;
	padding-left: 30px;
	font-size: 14px;
	color: #333;
}

.form-checkbox input[type=checkbox]+label::before {
	width: 16px;
	height: 16px;
	top: 1px;
	left: 0;
	border: 1px solid #333;
	border-radius: 2px;
}

.form-checkbox input[type=checkbox]:checked+label::after {
	width: 5px;
	height: 8px;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
	left: 6px;
	top: 4px;
}

.select2 {
	display: block;
}

.select2.select2-container {
	width: 100% !important;
}

.select2-results__option {
	padding: 9px 20px;
	transition: all 0.35s ease;
	height: 40px;
	font-size: 14px;
}

.select2-dropdown {
	border: 1px solid #D9D9D9;
	border-radius: 4px;
}

.select2-container {
	z-index: 1100;
}

.select2-container--open .select2-selection__arrow::before {
	transform: translate(-50%, -50%) rotate(180deg) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #F0F7F6;
	color: #212121;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #F0F7F6;
	color: #212121;
}

.select2-container--default .select2-selection {
	border: 1px solid #D9D9D9;
	transition: all 0.35s ease;
}

.select2-container--default .select2-selection:hover {
	border-color: #212121;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	border-left: 1px solid rgba(217, 217, 217, 0.05);
	width: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::before {
	width: 12px;
	height: 8px;
	background: url("../icon/select-arrow.svg") no-repeat center center;
	background-size: contain;
	top: 50%;
	left: 50%;
	transition: all 0.35s ease;
	transform: translate(-50%, -50%);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 6px 0;
	padding-left: 12px;
	padding-right: 12px;
	color: #212121;
	font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #000;
}

.select2-container .select2-selection--single {
	height: auto;
}

.select2-selection {
	outline: none !important;
}

.select2-selection__rendered {
	padding: 8px 0;
	padding-left: 12px;
	padding-right: 12px;
}

.select2-search {
	display: none;
}

.btn {
	display: inline-flex;
	gap: 8px;
	transition: all 0.35s ease;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	text-align: center;
	border-radius: 0px;
}

.btn-blue {
	background-color: #000;
}

.btn-blue:hover {
	background-color: black;
}

.btn-black {
	background-color: #212121;
	font-size: 18px;
	line-height: 27px;
	color: #fff;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	align-items: center;
	padding: 19.5px 32px;
	border-radius: 40px;
}

.btn-black:hover {
	background-color: #0f0f0f;
}

.breadcrumb {
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}

.breadcrumb li {
	display: inline-block;
}

.breadcrumb li::before {
	content: "/";
	margin-right: 4px;
}

.breadcrumb li:first-child::before {
	display: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.socials {
	display: flex;
	align-items: center;
	gap: 16px;
}

.socials li img,
.socials li svg {
	display: block;
}

.slick-dots {
	display: flex;
	align-items: center;
	gap: 0 20px;
}

.slick-dots li {
	background: linear-gradient(180deg, #54CAFC 0%, #2DAEE5 100%);
	opacity: 0.15;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.35s ease;
	position: relative;
}

.slick-dots li::before {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	opacity: 0;
	transition: all 0.35s ease;
	border-radius: 50%;
}

.slick-dots li.slick-active {
	opacity: 1;
}

.slick-dots li.slick-active::before {
	opacity: 0.15;
}

.slick-dots li button {
	font-size: 0;
}

.slick-slide {
	outline: none;
}

.b-100 {
	margin-bottom: 100px !important;
}

.b-70 {
	margin-bottom: 70px !important;
}

.b-50 {
	margin-bottom: 50px !important;
}

.t-70 {
	margin-top: 70px !important;
}

.text-center {
	text-align: center;
}

.modal {
	display: none;
	max-width: 500px;
	padding: 30px 30px;
	border-radius: 20px;
}

.modal-close {
	position: absolute;
	right: -24px;
	top: -24px;
	cursor: pointer;
	transition: all 0.35s ease;
}

.modal-close svg {
	display: block;
	width: 24px;
	height: 24px;
}

.h1 {
	font-weight: 700;
	font-size: 38px;
	line-height: 1.17;
}

.h2 {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.17;
}

.h2-31 {
	font-size: 31px;
}

.h2-26 {
	font-size: 26px;
}

.h3 {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.28;
}

.green {
	color: #00602e;
}

.container {
	padding: 0 15px;
	max-width: 1122px;
	margin: 0 auto;
	width: 100%;
}

.search {
	padding: 16px 0;
	background: #0a833e;
	display: none;
}

.search.open {
	display: block;
}

.search-title {
	color: #fff;
	margin-bottom: 12px;
}

.search-form {
	position: relative;
}

.search-form button {
	position: absolute;
	right: 12px;
	z-index: 2;
}

.search-form button:hover path {
	fill: #212121;
}

.search-form button svg {
	display: block;
}

.search-input {
	display: block;
	width: 100%;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	color: #000;
	transition: all 0.35s ease;
	-webkit-appearance: none;
	border-radius: 24px;
	padding: 13px 16px;
	background: #fff;
	border: 1px solid transparent;
	height: 48px;
}

.search-input::placeholder {
	font-size: 15px;
	color: #888785;
	font-family: "Roboto", sans-serif;
}

.search-input:hover {
	border-color: #00602e;
}

.search-input:focus {
	outline: 2px solid #fee100;
	border-color: transparent;
}

.search-input.error {
	background: #ffe8e8;
	outline: 2px solid #ff5f5f;
	border-color: transparent;
}

.search-toggler {
	border-radius: 30px 30px 0 0;
	cursor: pointer;
	width: 58px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 11px;
	padding-bottom: 31px;
	margin-top: 24px;
	position: relative;
	user-select: none;
}

.search-toggler::before,
.search-toggler::after {
	width: 10px;
	height: 10px;
	bottom: 0;
	display: none;
}

.search-toggler::before {
	left: -10px;
	background: url("../img/search-left.svg") no-repeat center center;
}

.search-toggler::after {
	right: -10px;
	background: url("../img/search-right.svg") no-repeat center center;
}

.search-toggler:hover path {
	fill: #212121;
}

.search-toggler:hover rect {
	fill: #fee100;
}

.search-toggler svg {
	display: block;
	margin: 0 auto;
}

.search-toggler svg:last-child {
	display: none;
}

.search-toggler.active {
	background: #0a833e;
}

.search-toggler.active::before,
.search-toggler.active::after {
	display: block;
}

.search-toggler.active svg {
	display: none;
}

.search-toggler.active svg:last-child {
	display: block;
}

.view {
	background: #9ecb4a;
	padding: 34px 0 36px;
	position: relative;
}

.view::before {
	height: 5px;
	width: 100%;
	top: -5px;
	left: 0;
	background: url("../img/view-triangle.svg") repeat-x center center;
}

.view-row {
	display: flex;
	gap: 24px;
}

.view-icon {
	flex-shrink: 0;
}

.view-icon img {
	width: 60px;
	height: 60px;
}

.view-title {
	font-weight: 700;
	font-size: 26px;
	line-height: 1.17;
	max-width: 450px;
}

.view-nav {
	display: flex;
	margin-top: 24px;
	gap: 12px;
}

.view-nav a img {
	display: block;
}

.bg-white {
	border-bottom: 1px solid #eae5e5;
	border-top: 1px solid #eae5e5;
	padding: 50px 0 44px;
	background: #fff;
}

.seo h1 {
	font-weight: 700;
	font-size: 38px;
	line-height: 1.17;
	margin-bottom: 24px;
}

.seo h2 {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.17;
	margin-bottom: 24px;
	margin-top: 70px;
}

.seo h2:first-child {
	margin-top: 0;
}

.seo h3 {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.28;
}

.seo p {
	margin-bottom: 16px;
}

.seo p:last-child {
	margin-bottom: 0;
}

.seo p a {
	border-bottom: 1px solid transparent;
	color: #f34f00;
	font-weight: 500;
}

.seo p a:hover {
	border-bottom-color: #f34f00;
}

.seo-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.seo-nav a {
	color: #f34f00;
	font-weight: 500;
	margin-bottom: 16px;
	display: inline-block;
	border-bottom: 1px solid transparent;
}

.seo-nav a:last-child {
	margin-bottom: 0;
}

.seo-nav a:hover {
	border-bottom-color: #f34f00;
}

.seo-gray {
	padding: 70px 0 100px;
	background: #F8F7F5;
}

.seo-large p {
	margin-bottom: 26px;
}

.title {
	padding: 50px 0 50px;
}

.title-box {
	max-width: 906px;
	margin-left: auto;
	margin-right: auto;
}

.title-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.title-head svg {
	flex-shrink: 0;
}

.title-70 {
	padding: 50px 0 70px;
}

.title .table-border {
	margin-top: 14px;
}

.title-links {
	display: flex;
	gap: 50px;
	margin-bottom: 30px;
	margin-top: 30px;
}

.title-links__link:hover {
	color: #f34f00;
}

.title-links__link:hover .title-links__icon {
	background: #f34f00;
}

.title-links__text {
	font-weight: 700;
}

.title-links__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #0a833e;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s ease;
}

.title-links a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.title-links a svg {
	flex-shrink: 0;
}

.title-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 50px;
}

.title-nav__link {
	width: calc(33.3333% - 7px);
	background: #ff6820;
	border-radius: 10px;
	padding: 7px 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	flex-grow: 1;
}

.title-nav__link:hover {
	background: #ff8d1c;
}

.title-nav__link svg {
	flex-shrink: 0;
}

.title-nav__link-title {
	font-size: 12px;
	line-height: 1.28;
}

.title-nav__link-time {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.28;
}

.title-nav__link-time span {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 15px;
}

.title-nav-page .title-nav__link-content {
	margin-left: auto;
	margin-right: auto;
}

.jackpot-row {
	display: flex;
}

.jackpot-item {
	width: 33.3333%;
}

.jackpot-item:first-child .jackpot-item__content {
	border-bottom-left-radius: 16px;
	border-left: 1px solid #d7d5d2;
}

.jackpot-item:first-child .jackpot-item__header {
	border-radius: 16px 10px 0 0;
}

.jackpot-item:last-child .jackpot-item__header {
	border-radius: 10px 16px 0 0;
}

.jackpot-item:last-child .jackpot-item__header::before {
	display: none;
}

.jackpot-item:last-child .jackpot-item__content {
	border-bottom-right-radius: 16px;
	border-right: 1px solid #d7d5d2;
}

.jackpot-item:last-child .jackpot-item__content::before {
	display: none;
}

.jackpot-item__header {
	border-radius: 10px 10px 0 0;
	background: #ff6820;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 23px 28px;
	position: relative;
}

.jackpot-item__header::before {
	background: url("../img/jackpot-title.svg") no-repeat center center;
	height: 43px;
	right: 0;
	width: 2px;
	background-size: contain;
}

.jackpot-item__time {
	font-weight: 700;
	font-size: 27px;
	line-height: 1.17;
	color: #fff;
}

.jackpot-item__time span {
	font-size: 18px;
}

.jackpot-item__content {
	background: #fff;
	padding: 18px 28px;
	border-bottom: 1px solid #d7d5d2;
	position: relative;
}

.jackpot-item__content::before {
	background: url("../img/jackpot-content.svg") no-repeat center center;
	height: 36px;
	right: 0;
	width: 2px;
	background-size: contain;
}

.jackpot-item__result {
	font-weight: 700;
	line-height: 1.38;
}

.result-row {
	display: flex;
	gap: 40px;
	overflow-x: auto;
	padding-bottom: 30px;
}

.result-row::-webkit-scrollbar {
	height: 12px;
	background: #eae5e5;
	border-radius: 6px;
}

.result-row::-webkit-scrollbar-thumb {
	background: #0a833e;
	border-radius: 6px;
	cursor: pointer;
}

.result-box {
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #d7d5d2;
}

.result-item {
	width: 246px;
	flex-shrink: 0;
}

.result-item .h3 {
	margin-bottom: 12px;
}

.result-table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 10px;
}

.result-table.text-left th {
	text-align: left;
}

.result-table th {
	background: #046a38;
	font-weight: 900;
	font-size: 15px;
	line-height: 1.28;
	color: #fff;
	padding: 15px 4px;
	border-right: 1px solid #0a833e;
}

.result-table th span {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.result-table th:first-child {
	border-radius: 10px 0 0 0;
}

.result-table th:last-child {
	border-radius: 0 10px 0 0;
	overflow: hidden;
	border-right: none;
}

.result-table td {
	font-size: 14px;
	line-height: 1.286;
	padding: 6px 12px;
	background: #fff;
	border-right: 1px solid #d7d5d2;
	font-weight: 500;
}

.result-table td:last-child {
	border-right: none;
}

.result-table tr:nth-child(odd) td {
	background: #f8f7f6;
}

.result-table tr:last-child td:first-child {
	border-radius: 0 0 0 10px;
}

.result-table tr:last-child td:last-child {
	border-radius: 0 0 10px 0;
}

.result-date th:first-child,
.result-date td:first-child {
	width: 34px;
	max-width: 34px;
}

.result-date td:first-child {
	border-right-color: #147442;
	background: #147442;
	color: #fff;
}

.result-date th:first-child {
	border-right-color: #0a833e;
	font-size: 12px;
	font-weight: 700;
}

.result-date tr:nth-child(odd) td:first-child {
	background: #046a38;
}

.tab-nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 40px;
}

.tab-nav--left {
	justify-content: start;
}

.tab-content {
	height: 140px !important;
	overflow: hidden;
}

.tab-content.active {
	height: auto !important;
	overflow: visible;
}

.tab-btn {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	border-radius: 24px;
	padding: 15px 46px;
	min-width: 160px;
	transition: all 0.35s ease;
	position: relative;
	color: #212121;
}

.tab-btn::before {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #046a38 transparent transparent transparent;
	transition: all 0.35s ease;
	top: 100%;
	opacity: 0;
}

.tab-btn:hover {
	color: #046a38;
}

.tab-btn.active {
	background: #046a38;
	color: #fff;
}

.tab-btn.active::before {
	opacity: 1;
}

.lottery {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.lottery-video__iframe {
	margin-top: 50px;
}

.lottery-video__iframe iframe {
	display: block;
	width: 100%;
	max-width: 720px;
	height: 406px;
	margin: 0 auto;
	border-radius: 10px;
}

.lottery-video__nav {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 32px;
}

.lottery-video__nav .btn {
	width: 100%;
	max-width: 264px;
}

.lottery-item {
	width: calc(33.333% - 17px);
	background: #0a833e url("../img/lottery-bg.png") no-repeat center center;
	background-size: cover;
	border-radius: 30px;
	padding: 16px 28px;
	display: block;
	transition: all 0.35s ease;
}

.lottery-item:hover {
	--arrow-holder-bg: #fee100;
	--arrow-color: #00602e;
	background: #046a38 url("../img/lottery-bg.png") no-repeat center center;
	background-size: cover;
}

.lottery-item:hover .lottery-item__btn {
	background: #00602e;
	color: #fee100;
}

.lottery-item__subtitle {
	font-size: 15px;
	line-height: 1.48;
	color: #fff;
}

.lottery-item__time {
	font-weight: 700;
	font-size: 41px;
	line-height: 1;
	color: #fff;
	margin-bottom: 10px;
}

.lottery-item__time span {
	font-weight: 900;
	font-size: 23px;
	line-height: 1.28;
	text-transform: uppercase;
}

.lottery-item__btn {
	display: inline-flex;
	align-items: center;
	width: 100%;
	max-width: 187px;
	background: #fee100;
	padding: 6px 6px 6px 14px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #00602e;
	border-radius: 20px;
	justify-content: space-between;
	transition: all 0.35s ease;
}

.lottery-item__arrow-holder {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: var(--arrow-holder-bg, #046A38);
	color: var(--arrow-color, #FEE100);
	font-size: 22px;
	transition: inherit;
}

.lottery-item__arrow-holder .icon {
	transition: inherit;
}

.lottery-item__countdown {
	--arrow-color: #fff;
	--arrow-holder-bg: #046A38;
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.lottery-item__countdown-title {
	font-size: 15px;
	line-height: 1.48;
}

.lottery-item__countdown-timer {
	font-weight: 700;
}

.lottery-item._pending .lottery-item__countdown-timer {
	animation: blink 1s linear infinite;
}

.lottery-item.disabled {
	border: 1px solid #d7d5d2;
	background: #fff;
}

.lottery-item.disabled .lottery-item__subtitle {
	color: #212121;
}

.lottery-item.disabled .lottery-item__time {
	color: #212121;
}

.lottery-item.disabled:hover {
	border: 1px solid #046a38;
	background: #ebf8f1;
}

.section-title {
	margin-bottom: 40px;
}

.prediction-row {
	display: flex;
	gap: 24px;
	overflow-x: auto;
}

.prediction-row::-webkit-scrollbar {
	height: 12px;
	background: #eae5e5;
	border-radius: 6px;
}

.prediction-row::-webkit-scrollbar-thumb {
	background: #0a833e;
	border-radius: 6px;
	cursor: pointer;
}

.prediction-item {
	width: calc(20% - 20px);
	min-width: 198px;
}

.prediction-item .h3 {
	margin-bottom: 8px;
}

.table-border {
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #d7d5d2;
}

.content-box {
	max-width: 720px;
	margin: 0 auto;
}

.content-box .seo-nav {
	margin-top: 40px;
}

.content-box iframe {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	height: 406px;
	margin-top: 12px;
}

.content-box img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.content-box p {
	margin-bottom: 30px;
}

.content-box p a {
	border-bottom: 1px solid transparent;
	color: #f34f00;
	font-weight: 500;
}

.content-box p a:hover {
	border-bottom-color: #f34f00;
}

.content-header {
	margin-bottom: 30px;
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 24px;
}

.content-label {
	padding: 7px 8px;
	border-radius: 10px;
}

.content-label--orange {
	background: #ff6820;
}

.content-label--orange:hover {
	background: #ff8d1c;
}

.content-label--green {
	background: #0a833e;
}

.content-label--green:hover {
	background: #0ea850;
}

.content-label__subtitle {
	font-size: 12px;
	line-height: 1.28;
}

.content-label__time {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.28;
	color: #fff;
	white-space: nowrap;
}

.content-label__time span {
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
}

.subsctibe-box {
	display: none;
}

.block {
	display: inline-block;
	border-radius: 6px;
	padding: 1px 5px;
}

.block-orange {
	background: #ff6820;
	color: #fff;
}

.table-fix {
	table-layout: fixed;
	width: 100%;
}

.table-result th,
.table-result td {
	padding-left: 24px;
	padding-right: 24px;
}

.table-result td {
	line-height: 1.76;
	vertical-align: top;
}

.table-result td:first-child {
	white-space: nowrap;
}

.table-scroll {
	overflow-x: auto;
	padding-bottom: 12px;
}

.table-scroll .table-border {
	min-width: 900px;
}

.table-scroll::-webkit-scrollbar {
	height: 12px;
	background: #eae5e5;
	border-radius: 6px;
}

.table-scroll::-webkit-scrollbar-thumb {
	background: #0a833e;
	border-radius: 6px;
	cursor: pointer;
}

.green {
	color: #046a38;
}

a.green {
	border-bottom: 1px solid transparent;
}

a.green:hover {
	border-bottom-color: #046a38;
}

.res-box .h2 {
	margin-bottom: 14px;
}

.news-hero {
	position: relative;
	z-index: 1;
	padding: 230px 0 33px;
}

.news-hero__content {
	max-width: 906px;
	margin: 0 auto;
}

.news-hero__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
	z-index: -1;
}

.news-hero .h1 {
	color: #fff;
	font-size: 78px;
	line-height: 0.88;
}

.news-box {
	max-width: 906px;
	margin: 0 auto;
}

.news-box img {
	display: block;
	margin: 50px auto;
	width: 100%;
	border-radius: 10px;
}

.news-content {
	padding: 50px 0 70px;
}

.news-content-large {
	padding: 70px 0 97px;
}

.news-lottery {
	margin: 50px 0;
}

.news-result {
	background: #046A38;
	position: relative;
	z-index: 1;
	padding: 70px 0;
}

.news-result .container {
	max-width: 937px;
	position: relative;
}

.news-result__img {
	position: absolute;
	bottom: -70px;
	left: -105px;
}

.news-result__content {
	max-width: 534px;
	margin-left: auto;
}

.news-result__content .title-nav {
	margin-top: 42px;
	max-width: 477px;
}

.news-result__content h2,
.news-result__content p {
	color: #fff;
}

@media only screen and (max-width: 1200px) {

	/**/
	.container {
		padding: 0 22px;
	}

	.main-list>li>a {
		padding: 16px 24px;
	}

	.main-list>li.has-dropdown>a {
		padding-right: 36px;
	}

	.footer-top__row {
		gap: 60px;
	}

	.prediction-row {
		padding-bottom: 30px;
	}
}

@media only screen and (max-width: 1023px) {

	/**/
	html,
	body {
		overflow-x: hidden;
	}

	.search-toggler {
		margin-left: auto;
		margin-right: 19px;
	}

	.hamburger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 200;
		align-self: center;
	}

	.main-list {
		display: block;
	}

	.main-nav {
		display: none;
	}

	.mobile-nav {
		position: absolute;
		width: 90%;
		height: calc(var(--vh, 1vh) * 100);
		border-radius: 30px 0 0 30px;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		padding: 78px 24px;
		z-index: 100;
		background: #0a833e;
		overflow-y: auto;
		display: block;
	}

	.mobile-nav.open {
		transform: translateX(0);
	}

	.mobile-list {
		padding: 0 16px 34px;
		position: relative;
		margin-bottom: 32px;
	}

	.mobile-list li {
		margin-bottom: 14px;
	}

	.mobile-list li:last-child {
		margin-bottom: 0;
	}

	.mobile-list a {
		display: inline-block;
		font-size: 18px;
		color: #fff;
		line-height: 1.5;
		font-weight: 700;
	}

	.mobile-list:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.mobile-list:last-child::before {
		display: none;
	}

	.mobile-list::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: url("../img/mob-line.svg") no-repeat center center;
		background-size: cover;
	}

	.lottery-item {
		padding: 16px;
	}

	.lottery-item__time {
		font-size: 36px;
	}

	.result-row {
		gap: 30px;
	}

	.footer-top__row {
		flex-wrap: wrap;
		gap: 36px 24px;
	}

	.footer-top__list {
		display: flex;
		gap: 10px;
	}

	.footer-top__list li {
		width: calc(33.333% - 7px);
	}

	.footer-top__item {
		width: calc(50% - 12px);
	}

	.news-hero .h1 {
		font-size: 70px;
	}

	.news-result__content {
		max-width: 434px;
	}

	.news-result__img {
		max-width: 350px;
		height: auto;
		left: -30px;
	}
}

@media only screen and (max-width: 767px) {

	/**/
	.container {
		padding: 0 10px;
	}

	body {
		font-size: 15px;
		line-height: 1.48;
	}

	body.home .header {
		padding: 10.6px 0;
	}

	body.home .search {
		padding: 10px 0;
	}

	.h1 {
		font-size: 26px;
		line-height: 1.17;
	}

	.h2 {
		font-size: 22px;
		line-height: 1.28;
	}

	.h2-26 {
		font-size: 18px;
		line-height: 1.38;
	}

	.h3 {
		font-size: 18px;
		line-height: 1.38;
	}

	.b-70 {
		margin-bottom: 40px !important;
	}

	.b-100 {
		margin-bottom: 50px !important;
	}

	.t-70 {
		margin-top: 40px !important;
	}

	.header .logo img {
		width: 158px;
	}

	.news-lottery {
		margin: 40px 0;
	}

	.news-box img {
		margin: 24px auto;
	}

	.news-hero {
		padding: 141px 0 20px;
	}

	.news-hero .h1 {
		font-size: 48px;
	}

	.news-content {
		padding: 32px 0 40px;
	}

	.news-content-large {
		padding: 40px 0 50px;
	}

	.news-result {
		padding: 40px 0 0;
	}

	.news-result__content {
		max-width: 100%;
	}

	.news-result__img {
		position: static;
		display: block;
		position: relative;
		bottom: 0;
		max-width: 318px;
		left: -66px;
		margin-top: 14px;
	}

	.search {
		padding: 12px 0 10px;
	}

	.search-toggler {
		margin-top: 5px;
		padding-bottom: 21px;
		padding-top: 18px;
	}

	.search-title {
		margin-bottom: 8px;
	}

	.title {
		padding: 24px 0;
	}

	.title-links {
		gap: 30px;
	}

	.title-head {
		gap: 10px;
		margin-bottom: 13px;
	}

	.title-head svg {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.title-70 {
		padding-bottom: 40px;
	}

	.title-nav {
		margin-top: 24px;
	}

	.title-nav__link {
		padding: 7px 9px;
	}

	.title-nav__link svg {
		display: none;
	}

	.tab .container {
		padding: 0 10px;
	}

	.tab-nav {
		gap: 8px;
		margin-bottom: 26px;
	}

	.tab-btn {
		padding: 14px 13px;
		font-size: 16px;
		min-width: 97px;
	}

	.lottery {
		gap: 5px;
	}

	.lottery-video__nav {
		margin-top: 32px;
	}

	.lottery-video__nav .btn {
		max-width: 100%;
		padding: 14.5px 32px;
	}

	.lottery-video__iframe {
		margin-top: 20px;
	}

	.lottery-video__iframe iframe {
		height: 217px;
	}

	.lottery-item {
		padding: 22px 8px 8px;
		width: calc(33.333% - 4px);
		border-radius: 24px;
		display: flex;
		flex-direction: column;
		height: 141px;
	}

	.lottery-item__subtitle {
		font-size: 12px;
		line-height: 1.28;
	}

	.lottery-item__time {
		font-size: 26px;
		line-height: 1.28;
		margin-bottom: 24px;
	}

	.lottery-item__time span {
		font-size: 15px;
	}

	.lottery-item__btn {
		font-size: 14px;
		line-height: 1.28;
		font-weight: 500;
		padding: 5px 6px 5px 8px;
		margin-top: auto;
	}

	.lottery-item__arrow-holder {
		font-size: 16px;
	}

	.lottery-item__countdown {
		flex-wrap: wrap;
		gap: 3px 8px;
	}

	.lottery-item__countdown-title {
		font-size: 12px;
		line-height: 1.28;
		width: 100%;
	}

	.lottery-item__countdown-timer {
		font-size: 14px;
		line-height: 1.28;
		font-weight: 500;
		width: 56px;
	}

	.subsctibe-box {
		border-radius: 10px;
		background: #dee8ec;
		padding: 11px 14px;
		padding-right: 24px;
		display: flex;
		align-items: center;
		gap: 30px;
		margin-top: 20px;
		justify-content: space-between;
	}

	.subsctibe-box .socials {
		gap: 39px;
	}

	.subsctibe-title {
		font-size: 14px;
		line-height: 1.28;
		color: #376374;
		font-weight: 500;
	}

	.jackpot .container {
		padding: 0 10px;
	}

	.jackpot-item__header {
		padding: 16px 15px;
		display: block;
	}

	.jackpot-item__time {
		font-size: 22px;
		line-height: 1.28;
	}

	.jackpot-item__time span {
		font-size: 15px;
	}

	.jackpot-item__place {
		font-size: 14px;
		line-height: 1.28;
	}

	.jackpot-item__content {
		padding: 14px 15px;
		padding-right: 10px;
	}

	.jackpot-item__result {
		font-size: 17px;
		line-height: 1.28;
	}

	.result-row {
		padding-bottom: 12px;
	}

	.result .container {
		padding: 0 10px;
	}

	.section-title {
		margin-bottom: 24px;
	}

	.prediction .container {
		padding: 0 10px;
	}

	.prediction-row {
		gap: 10px;
		padding-bottom: 20px;
	}

	.prediction-item {
		min-width: 162px;
	}

	.content-header {
		gap: 12px;
		margin-bottom: 16px;
	}

	.content-box {
		max-width: 100%;
		width: 100%;
	}

	.content-box img {
		width: calc(100% + 20px);
		position: relative;
		left: -10px;
		display: block;
		max-width: none;
	}

	.content-box iframe {
		height: auto;
		min-height: 202px;
	}

	.content-box .seo-nav {
		margin-top: 24px;
	}

	.content-box p {
		margin-bottom: 16px;
	}

	.content-box h1 {
		margin-bottom: 16px;
		max-width: 316px;
	}

	.seo h1 {
		font-size: 26px;
		line-height: 1.17;
		margin-bottom: 16px;
	}

	.seo h2 {
		font-size: 26px;
		line-height: 1.17;
		margin-bottom: 16px;
		margin-top: 32px;
	}

	.seo h3 {
		font-size: 18px;
		line-height: 1.38;
	}

	.seo-gray {
		padding: 32px 0 50px;
	}

	.seo-large p {
		margin-bottom: 24px;
	}

	.view-row {
		gap: 12px;
	}

	.view-title {
		font-size: 17px;
		line-height: 1.28;
	}

	.view-nav {
		margin-top: 24px;
	}

	.bg-white {
		padding: 32px 0;
	}

	.footer-top {
		padding: 32px 0 50px;
	}

	.footer-top__head {
		font-size: 26px;
		line-height: 1.17;
		margin-bottom: 16px;
	}

	.footer-top__item {
		width: 100%;
	}

	.footer-top__list a {
		padding-left: 8px;
		padding-right: 8px;
	}

	.footer-logo img {
		margin-left: auto;
		margin-right: auto;
	}

	.copyright {
		text-align: center;
	}

	.table-fix {
		table-layout: initial;
	}

	.table-result td,
	.table-result th {
		padding-left: 12px;
		padding-right: 12px;
	}

	.table-result td:first-child,
	.table-result th:first-child {
		width: 99px;
		white-space: initial;
		min-width: 99px;
	}

	.res .container {
		padding: 0 10px;
	}
}

.icon {
	flex-shrink: 0;
	display: block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}
.u-nowrap {white-space: nowrap}
.u-grow {flex-grow: 1}