@font-face {
	src: url("/itgamesonline-assets/itgamesonline-fonts/itgamesonline-lato-black.woff2")
		format("truetype");
	font-family: "lato-black";
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/itgamesonline-assets/itgamesonline-fonts/itgamesonline-lato-bold.woff2")
		format("truetype");
	font-family: "lato-bold";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/itgamesonline-assets/itgamesonline-fonts/itgamesonline-lato-regular.woff2")
		format("truetype");
	font-family: "lato-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title: "lato-bold", sans-serif;
	--font-text: "lato-regular", sans-serif;
	--font-btn: "lato-black", sans-serif;

	--color-btn: #ffd700;
	--color-white: #fff;
	--color-pay: #ffd70066;
	--color-contact: #fff7cb;
	--color--black: #121212;
	--color--gray: #626262;
	--color--light-gray: #efefef;
	--color-border: 1px solid #e4d791;
	--transition: all ease-in-out 0.3s;
}

*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}

body {
	background-color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	position: relative;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
}

main,
footer {
	width: 100%;
	color: rgba(3, 3, 3, 1);
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}

header {
	width: 100%;
}

.itgamesonline--container__main {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.itgamesonline__visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.itgamesonline--header {
	width: 100%;
	padding: 1rem 0;
}

.itgamesonline--menu {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--header__logo {
	max-width: 208px;
	width: 100%;
	height: 30px;
	margin-inline: auto;
}

.itgamesonline--menu__links {
	display: flex;
}

.itgamesonline--menu__list {
	width: 100%;
	gap: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.itgamesonline--menu__list-item {
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	border-bottom: 2px solid transparent;
}

.itgamesonline--menu__list-item:hover {
	border-bottom: 2px solid var(--color--black);
}

.itgamesonline--menu__list-item a {
	color: var(--color--black);
	font-size: 0.875rem;
	line-height: 150%;
	font-family: var(--font-text);
	font-weight: 400;
}

.itgamesonline--menu--flagbox {
	display: flex;
	align-items: center;
	gap: 0.675rem;
	justify-content: flex-end;
	max-width: 66px;
	width: 100%;
}

.itgamesonline--flag__image {
	max-width: 24px;
	width: 100%;
	height: 24px;
	object-fit: contain;
}

.itgamesonline--active {
	padding: 0.25rem;
	border: 1px solid var(--color--black);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

/* Burger */
#itgamesonlineMenuToggle {
	display: none;
	position: absolute;
	top: 0;
	left: 0rem;
	z-index: 999 !important;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
	height: 58px;
}

#itgamesonlineMenuToggle a {
	color: var(--color--black) !important;
	text-decoration: none;
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
}
.itgamesonline--white {
	color: var(--color-white) !important;
	border: none !important;
}

#itgamesonlineMenuToggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin-bottom: 5px;
	right: 0rem;
	top: 0.2rem;
	position: relative;
	background: var(--color--black);
	border-radius: 3px;
	z-index: 1001 !important;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.no-scroll {
	overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#itgamesonlineMenuToggle span:first-child {
	transform-origin: 0% 0%;
}

#itgamesonlineMenuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#itgamesonlineMenu {
	position: absolute;
	max-width: 100vw;
	width: 100%;
	z-index: 1000;
	padding-top: 5.25rem;
	margin: 0 0 0 0px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	background: var(--color-white);
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(-100%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
	height: 130vh;
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
}

#itgamesonlineMenuToggle input:checked ~ ul {
	transform: none;
}

.burger-button {
	display: block;
	width: 42px;
	height: 32px;
	position: absolute;
	top: 0.75rem;
	right: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	opacity: 1;
	z-index: 1002 !important;
	-webkit-touch-callout: none;
	background: transparent;
	border: none;
	padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
	transform: rotate(45deg) translate(4px, 0px);
	background: #f9f9f9;
	-webkit-transform: rotate(45deg) translate(4px, 0px);
	-moz-transform: rotate(45deg) translate(4px, 0px);
	-ms-transform: rotate(45deg) translate(4px, 0px);
	-o-transform: rotate(45deg) translate(4px, 0px);
}

.burger-button.active span:nth-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:last-child {
	transform: rotate(-45deg) translate(-1px, 2px);
	-webkit-transform: rotate(-45deg) translate(-1px, 2px);
	-moz-transform: rotate(-45deg) translate(-1px, 2px);
	-ms-transform: rotate(-45deg) translate(-1px, 2px);
	-o-transform: rotate(-45deg) translate(-1px, 2px);
}

/* Обновляем селектор для checked состояния */
#itgamesonlineMenuToggle .active ~ #itgamesonlineMenu {
	transform: none;
}

.itgamesonline--menu__list--text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 130%;
	color: #ffffff80;
	text-align: center;
	max-width: 320px;
	width: 100%;
}

.itgamesonline--menu__flex-mob {
	display: flex;
	max-width: 80px;
	width: 100%;
	align-items: center;
	gap: 1rem;
}

/* Welcom Section */
.itgamesonline--welcome-box {
	width: 100%;
	padding: 2.5rem 0;
}

.itgamesonline--welcome--container {
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-welcome/itgamesonline-yellow-ball.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2.5rem;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}

.itgamesonline--welcome---textbox {
	max-width: 885px;
	width: 100%;
	background: var(--color-white);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	padding: 1.25rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--welcome---w {
	max-width: 745px;
	width: 100%;
}

.itgamesonline--welcome---title {
	font-family: var(--font-title);
	color: var(--color--black);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 120%;
	text-transform: uppercase;
	text-shadow: -1px -1px 0 #ffd700, 1px -1px 0 #ffd700, -1px 1px 0 #ffd700,
		1px 1px 0 #ffd700;
	position: relative;
	z-index: 3;
}

.itgamesonline--welcome---text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1rem;
	line-height: 150%;
	color: var(--color--black);
	position: relative;
	z-index: 3;
}

.itgamesonline--welcome--btnbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	z-index: 3;
}

.itgamesonline--welcome--btn {
	max-width: 196px !important;
	width: 100%;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-btn);
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 1rem;
	line-height: 120%;
	color: var(--color--black);
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.button__glare {
	opacity: 0.8;
	position: absolute;
	top: -100px;
	left: -100px;
	display: block;
	background: #fff;
	width: 40px;
	height: 300px;
	transform: rotate(45deg);
	animation-delay: 0.05s;
	animation-timing-function: ease-in-out;
	animation-name: slide;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	transition: all 0.1s;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-ms-transition: all 0.1s;
	-o-transition: all 0.1s;
}

@keyframes slide {
	0% {
		transform: translateX(0) rotate(45deg);
		-webkit-transform: translateX(0) rotate(45deg);
		-moz-transform: translateX(0) rotate(45deg);
		-ms-transform: translateX(0) rotate(45deg);
		-o-transform: translateX(0) rotate(45deg);
	}
	30%,
	100% {
		transform: translateX(350px) rotate(45deg);
		-webkit-transform: translateX(350px) rotate(45deg);
		-moz-transform: translateX(350px) rotate(45deg);
		-ms-transform: translateX(350px) rotate(45deg);
		-o-transform: translateX(350px) rotate(45deg);
	}
}

.itgamesonline--welcome--link {
	max-width: 210px;
	width: 100%;
	background: transparent;
	border: 2px solid var(--color--black);
}

.itgamesonline--welcome--btn:hover {
	transform: translateY(-0.25rem);
	-webkit-transform: translateY(-0.25rem);
	-moz-transform: translateY(-0.25rem);
	-ms-transform: translateY(-0.25rem);
	-o-transform: translateY(-0.25rem);
}

.itgamesonline--relative {
	position: relative;
}

.itgamesonline--welcome--image {
	max-width: 494px;
	width: 100%;
	height: 524px;
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-welcome/itgamesonline-ticket-lotto.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: -5%;
	right: -5%;
	animation: bounceInRight 1s both;
	animation-delay: 0.3s;
}
@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from {
		opacity: 0;
		transform: translateX(3000px);
	}
	60% {
		opacity: 1;
		transform: translateX(-25px);
	}
	75% {
		transform: translateX(10px);
	}
	90% {
		transform: translateX(-5px);
	}
	to {
		transform: translateX(0);
	}
}

/* Winners */
.itgamesonline--winners--cards {
	display: flex;
	gap: 2.5rem;
}

.itgamesonline--winners---form {
	padding: 2.5rem;
	max-width: 420px;
	width: 100%;
	border: var(--color-border);
	box-shadow: 0px 4px 16px 0px #0000001a;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--winners----title {
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 1.875rem;
	line-height: 120%;
	color: var(--color--black);
	text-transform: uppercase;
}

.itgamesonline__form-winners {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.itgamesonline--winners---info {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2)),
		url(/itgamesonline-assets/itgamesonline-img/itgamesonline-search/itgamesonline-yellow-ball.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.itgamesonline--winners----top {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--bold {
	font-weight: 700 !important;
	font-family: var(--font-title) !important;
}

table {
	border-collapse: collapse;
}
td {
	width: 233px;
	height: 24px;
	padding: 8px 0;
}

/* Payment */
.itgamesonline--payments-box {
	background: var(--color-contact);
}

.itgamesonline--payments---formw {
	max-width: 720px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 2.5rem;
	background: var(--color-white);
}

.itgamesonline--label-payments {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.custom-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 32px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>")
		no-repeat right 10px center/16px 16px;
	background-color: white;
	cursor: pointer;
}

option,
select {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1rem;
	line-height: 100%;
	color: var(--color--gray);
}

.itgamesonline--count-tickets {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.itgamesonline--count--count_btn {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.itgamesonline--count---minus,
.itgamesonline--count---plus {
	background-color: #fff7cb;
	border: none;
	cursor: pointer;
	padding: 5px 15px;
	max-width: 34px;
	width: 100%;
	height: 34px;
}

.itgamesonline--count---minus:disabled,
.itgamesonline--count---plus:disabled {
	background-color: #efefef !important;
	cursor: not-allowed;
}

.itgamesonline--tickets--btn {
	max-width: 300px !important;
	width: 100%;
}

.itgamesonline--paymetns--card {
	background: var(--color-white);
}

.itgamesonline--payments---lists {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.itgamesonline--payments----elem {
	background: var(--color-pay);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 68px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.itgamesonline--payments----pay_visa {
	max-width: 68px;
	width: 100%;
	height: 22px;
}
.itgamesonline--payments----pay_mastercard {
	max-width: 64px;
	width: 100%;
	height: 39px;
}
.itgamesonline--payments----pay_paypal {
	max-width: 78px;
	width: 100%;
	height: 22px;
}

.itgamesonline--payments----elem_text {
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 1rem;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: var(--color--black);
}

/* Results */
.itgamesonline--result--container {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.itgamesonline--result---image {
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-results/itgamesonline-green-ticket.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 390px;
	width: 100%;
	height: 400px;
}

.itgamesonline--result---info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.itgamesonline--result----top {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--gray {
	color: var(--color--gray);
}

/* About */
.itgamesonline--about---image {
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-about/itgamesonline-ball.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 390px;
	width: 100%;
	height: 400px;
}

/* Contact */
.itgamesonline--contact--container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.itgamesonline--contact---box {
	background: var(--color-contact);
	padding: 2rem 2.5rem;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.itgamesonline--contact---info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 659px;
	width: 100%;
}

.itgamesonline--contact-btn {
	max-width: 300px !important;
	width: 100%;
}

textarea {
	height: 100px !important;
	border-radius: 20px !important;
	-webkit-border-radius: 20px !important;
	-moz-border-radius: 20px !important;
	-ms-border-radius: 20px !important;
	-o-border-radius: 20px !important;
}

.itgamesonline--contact---tickets {
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-contact/itgamesonline-contact-tickets.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 461px;
	width: 100%;
	height: 440px;
}

.form-message {
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	font-size: 1rem;
	font-family: var(--font-title);
	font-weight: 700;
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	font-size: 1rem;
	font-family: var(--font-title);
	font-weight: 700;
}

/* FAQ */

.itgamesonline--faq--container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.itgamesonline--faq---cards {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.itgamesonline--faq----card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: #d2ff7c;
	max-width: 397px;
	width: 100%;
	padding: 1.5rem;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.itgamesonline--faq----card:hover {
	transform: translateY(-0.25rem);
	-webkit-transform: translateY(-0.25rem);
	-moz-transform: translateY(-0.25rem);
	-ms-transform: translateY(-0.25rem);
	-o-transform: translateY(-0.25rem);
}

.itgamesonline--faq__title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 150%;
	color: var(--color--black);
}

/* Footer */
.itgamesonline--footer {
	position: relative;
	padding: 2.5rem 0;
}

.itgamesonline--footer__container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.itgamesonline--footer---responsible,
.itgamesonline--footer----elem {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.itgamesonline--footer----title {
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 1rem;
	line-height: 150%;
	color: var(--color--black);
}

.itgamesonline--footer---info {
	display: flex;
	gap: 2.5rem;
}

.itgamesonline--footer----elem {
	max-width: 600px;
	width: 100%;
}

.itgamesonline--menu__list-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

.itgamesonline--footer---parthers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

.itgamesonline--footer----adm_one {
	max-width: 62px;
	width: 100%;
	height: 40px;
}
.itgamesonline--footer----adm_two {
	max-width: 122px;
	width: 100%;
	height: 40px;
}
.itgamesonline--footer----adm_resp {
	max-width: 143px;
	width: 100%;
	height: 40px;
}
.itgamesonline--footer----age {
	max-width: 349px;
	width: 100%;
	height: 42px;
	background-image: url(/itgamesonline-assets/itgamesonline-img/itgamesonline-footer/itgamesonline-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.itgamesonline--footer_navbox {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: center;
}
.itgamesonline--footer__navlink a {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 150%;
	color: var(--color--gray);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.itgamesonline--footer__navlink a:hover {
	color: var(--color--black);
}

.itgamesonline--center {
	text-align: center;
}

/* Modal Sign up  */
.itgamesonline-modal_sign {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #101010ad;
	backdrop-filter: blur(22.899999618530273px);
	padding: 0 1rem;
}

.itgamesonline-modal--title {
	font-family: var(--font-btn);
	font-weight: 900;
	font-size: 2.5rem;
	line-height: 120%;
	text-align: center;
	color: var(--color--black);
	text-transform: uppercase;
	background-color: var(--color-white);
	width: 100%;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	padding: 0.5rem 1.5rem;
	position: relative;
}

.itgamesonline-modal__content-sign {
	background: transparent;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	width: 100%;
	height: 400px;
	max-width: 720px;
	position: relative;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.itgamesonline__form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	padding: 2rem 2.5rem;
	background-color: var(--color-white);
	width: 100%;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.itgamesonline__form__input {
	outline: none;
	padding: 1.05rem 1.4rem;
	color: var(--color--gray);
	font-weight: 400;
	height: 55px;
	line-height: 20px;
	font-size: 1rem;
	font-family: var(--font-text);
	border: 1px solid #e6e6e6;
	background-color: var(--color-white);
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
}

.itgamesonline__form__input::placeholder {
	color: var(--color--gray);
	font-weight: 400;
	line-height: 100%;
	font-size: 1rem;
	font-family: var(--font-text);
}

.itgamesonline__form__button {
	max-width: 300px !important;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-inline: auto;
}

.itgamesonline__form__login {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.itgamesonline__form__log {
	font-size: 1rem;
	line-height: 150%;
	font-weight: 400;
	font-family: var(--font-text);
	color: var(--color--black);
}

.itgamesonline__form__reg {
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 1rem;
	line-height: 150%;
	font-weight: 900;
	font-family: var(--font-btn);
	color: var(--color--black);
}

.button__glare2 {
	opacity: 0.8;
	position: absolute;
	top: -100px;
	left: -100px;
	display: block;
	background: #fff;
	width: 40px;
	height: 300px;
	transform: rotate(45deg);
	animation-delay: 0.05s;
	animation-timing-function: ease-in-out;
	animation-name: slide2;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	transition: all 0.1s;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-ms-transition: all 0.1s;
	-o-transition: all 0.1s;
}

@keyframes slide2 {
	0% {
		transform: translateX(0) rotate(45deg);
		-webkit-transform: translateX(0) rotate(45deg);
		-moz-transform: translateX(0) rotate(45deg);
		-ms-transform: translateX(0) rotate(45deg);
		-o-transform: translateX(0) rotate(45deg);
	}
	30%,
	100% {
		transform: translateX(400px) rotate(45deg);
		-webkit-transform: translateX(400px) rotate(45deg);
		-moz-transform: translateX(400px) rotate(45deg);
		-ms-transform: translateX(400px) rotate(45deg);
		-o-transform: translateX(400px) rotate(45deg);
	}
}

/* Log in */
.itgamesonline-modal_login {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #101010ad;
	backdrop-filter: blur(22.899999618530273px);
	padding: 0 1rem;
}

.itgamesonline-modal__content-login {
	background: transparent;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	width: 100%;
	height: 400px;
	max-width: 720px;
	position: relative;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.itgamesonline-modal-content.success {
	background-color: #4caf50; /* Зеленый для успеха */
	color: white;
}

.itgamesonline-modal-content.error {
	background-color: #f44336; /* Красный для ошибки */
	color: white;
}

.itgamesonline-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.itgamesonline-modal-search {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.itgamesonline-modal-content {
	background: white;
	padding: 20px;
	border-radius: 5px;
	max-width: 400px;
	width: 100%;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.itgamesonline-modal-content.success {
	background-color: #4caf50;
	color: var(--color-white);
	text-align: center;
	font-family: var(--font-btn);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 100%;
}

.itgamesonline-modal-content.error {
	background-color: #f44336;
	color: var(--color-white);
	text-align: center;
	font-family: var(--font-btn);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 100%;
}

/* Others Styles */
.itgamesonline--privacy--lists,
.itgamesonline--privacy--container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
/* Media */
@media screen and (max-width: 1280px) {
	.itgamesonline--container__main {
		padding: 0 0.675rem;
	}

	.itgamesonline--welcome--image {
		right: 0;
	}
}

@media screen and (max-width: 1200px) {
	.itgamesonline--winners--cards {
		flex-direction: column;
		align-items: center;
	}

	.itgamesonline--payments---lists {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.itgamesonline--contact---box {
		flex-direction: column;
	}

	.itgamesonline--contact---info {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 991px) {
	.itgamesonline--welcome--image {
		max-width: 354px;
		width: 100%;
		height: 374px;
		top: 25%;
	}

	.itgamesonline--welcome---textbox,
	.itgamesonline--welcome---w,
	.itgamesonline--footer----elem {
		max-width: 100%;
		width: 100%;
	}

	.itgamesonline--welcome-box {
		padding: 1.25rem 0;
	}

	.itgamesonline--winners--cards,
	.itgamesonline--result--container,
	.itgamesonline--contact--container,
	.itgamesonline--winners---info {
		gap: 1.25rem;
	}

	.itgamesonline--winners---form,
	.itgamesonline--winners---info {
		padding: 1.25rem;
	}

	.itgamesonline--result--container {
		flex-direction: column-reverse;
	}

	.itgamesonline--result---info,
	.itgamesonline--result----top,
	.itgamesonline--footer__container,
	.itgamesonline--menu,
	.itgamesonline--welcome---textbox,
	.itgamesonline--winners---form,
	.itgamesonline--winners----top {
		gap: 1rem;
	}
	.itgamesonline--result---image,
	.itgamesonline--about---image {
		max-width: 320px;
		width: 100%;
		height: 300px;
	}
	.itgamesonline--reverse {
		flex-direction: column;
		gap: 1.25rem;
	}
	.itgamesonline--contact---box {
		padding: 1rem 1.25rem;
	}

	.itgamesonline--contact---tickets {
		max-width: 300px;
		width: 100%;
		height: 250px;
	}

	.itgamesonline--footer {
		padding: 1.5rem 0;
	}

	.itgamesonline--footer---info {
		flex-direction: column;
		gap: 1rem;
	}

	.itgamesonline--footer----elem,
	.itgamesonline--footer---responsible {
		gap: 0.5rem;
	}

	.itgamesonline--menu__list-footer,
	.itgamesonline--footer---parthers {
		gap: 1.25rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.itgamesonline--welcome---title {
		font-size: 2rem;
	}

	.itgamesonline--footer----age {
		max-width: 328px;
		width: 100%;
		height: 33px;
	}

	.itgamesonline--footer_navbox {
		gap: 1rem;
	}

	.itgamesonline-modal--title {
		font-size: 1.5rem;
	}

	.itgamesonline__form {
		padding: 1rem;
		gap: 1rem;
	}
}
@media screen and (max-width: 680px) {
	.itgamesonline--welcome--image {
		position: relative;
		margin-top: -8rem;
		margin-inline: auto;
		max-width: 325px;
		width: 100%;
		height: 344px;
		top: 25%;
	}
	.itgamesonline--welcome---textbox {
		padding: 0.675rem 1.25rem 5rem;
	}

	.itgamesonline--welcome--container {
		padding: 1.25rem 1.25rem 4.5rem;
	}

	.itgamesonline--welcome---title {
		font-size: 1.5rem;
	}

	.itgamesonline--welcome---text,
	.itgamesonline--footer----title {
		font-size: 0.875rem;
	}

	.itgamesonline--welcome--btnbox {
		flex-direction: column;
	}

	.itgamesonline--welcome--btn {
		max-width: 100% !important;
		width: 100%;
	}
	@keyframes slide {
		0% {
			transform: translateX(0) rotate(45deg);
			-webkit-transform: translateX(0) rotate(45deg);
			-moz-transform: translateX(0) rotate(45deg);
			-ms-transform: translateX(0) rotate(45deg);
			-o-transform: translateX(0) rotate(45deg);
		}
		30%,
		100% {
			transform: translateX(710px) rotate(45deg);
			-webkit-transform: translateX(710px) rotate(45deg);
			-moz-transform: translateX(710px) rotate(45deg);
			-ms-transform: translateX(710px) rotate(45deg);
			-o-transform: translateX(710px) rotate(45deg);
		}
	}
	@keyframes slide2 {
		0% {
			transform: translateX(0) rotate(45deg);
			-webkit-transform: translateX(0) rotate(45deg);
			-moz-transform: translateX(0) rotate(45deg);
			-ms-transform: translateX(0) rotate(45deg);
			-o-transform: translateX(0) rotate(45deg);
		}
		30%,
		100% {
			transform: translateX(710px) rotate(45deg);
			-webkit-transform: translateX(710px) rotate(45deg);
			-moz-transform: translateX(710px) rotate(45deg);
			-ms-transform: translateX(710px) rotate(45deg);
			-o-transform: translateX(710px) rotate(45deg);
		}
	}

	.itgamesonline--menu__list,
	.itgamesonline--menu--flagbox {
		display: none;
	}

	.itgamesonline--header__logo {
		margin: 0;
	}

	#itgamesonlineMenuToggle {
		display: block;
	}

	#itgamesonlineMenu {
		width: 100%;
	}

	.itgamesonline--menu {
		gap: 0;
	}

	.itgamesonline--welcome--btn {
		height: 34px;
		font-size: 0.75rem;
	}

	.itgamesonline--winners----title {
		font-size: 1.25rem;
	}

	.itgamesonline--faq----card {
		padding: 1rem;
	}
	td:nth-child(3) {
		width: 60px;
	}

	.itgamesonline__form__input::placeholder {
		font-size: 0.75rem;
	}
}
@media screen and (max-width: 359px) {
	.itgamesonline--welcome---text,
	.itgamesonline--footer----title {
		font-size: 0.75rem;
	}
}
