@font-face {
	src: url("/kenotoplotto-assets/kenotoplotto-fonts/kenotoplotto-bungee-regular.woff2")
		format("truetype");
	font-family: "bungee-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/kenotoplotto-assets/kenotoplotto-fonts/kenotoplotto-opensans-extrabold.woff2")
		format("truetype");
	font-family: "opensans-extrabold";
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/kenotoplotto-assets/kenotoplotto-fonts/kenotoplotto-opensans-regular.woff2")
		format("truetype");
	font-family: "opensans-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title: "bungee-regular", sans-serif;
	--font-text: "opensans-regular", sans-serif;
	--font-btn: "opensans-extrabold", sans-serif;

	--color-bg-main: #0c020c;
	--color-gradient-text-m: linear-gradient(
		90deg,
		#317dff 0%,
		#7531fe 48.08%,
		#c207ff 100%
	);
	--color-gradient-text-s: linear-gradient(
		180deg,
		#f9c727 0%,
		#fb9737 48.56%,
		#fe6e46 100%
	);
	--color-yellow: #fcb82b;
	--color-btn: #e9b740;
	--color-white: #fff;
	--color-gray: #d5d5d5;
	--color-card: linear-gradient(180deg, #0c020c 0%, #2e1f38 100%);
	--border-line: linear-gradient(
		90deg,
		#317dff 0%,
		#7531fe 48.08%,
		#c207ff 100%
	);
}

*,
::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-bg-main);
	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 {
	scroll-behavior: smooth;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}

header {
	width: 100%;
}

.kenotoplotto--container__main {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.kenotoplotto__visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.kenotoplotto--header {
	width: 100%;
	background: var(--color-card);
}

.kenotoplotto--header__logo-box {
	width: 100%;
}

.kenotoplotto--header__logo {
	max-width: 92px;
	width: 100%;
	height: 78px;
	margin-inline: auto;
}

/* Welcom Section */
.kenotoplotto--welcome-box {
	width: 100%;
	padding: 3.125rem 0 4.375rem;
	position: relative;
	background: linear-gradient(
			181.22deg,
			rgba(12, 2, 12, 0) 56.07%,
			#0c020c 100.31%,
			#0c020c 150.58%
		),
		url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-title/kenotoplotto-ball-game.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.kenotoplotto--welcome--container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 610px;
	width: 100%;
}
.kenotoplotto--welcome--top {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.kenotoplotto--welcome---title {
	font-family: var(--font-title);
	color: var(--color-white);
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 120%;
	text-transform: uppercase;
}

.kenotoplotto--grad-title {
	background: var(--color-gradient-text-m);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

.kenotoplotto--welcome---text {
	font-family: var(--font-text);
	color: var(--color-white);
	font-weight: 400;
	font-size: 1rem;
	line-height: 140%;
}

.kenotoplotto--welcome---btn {
	width: 100%;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-btn);
	font-weight: 600;
	font-size: 1rem;
	color: #303030;
	line-height: 150%;
	text-transform: uppercase;
	text-align: center;
	background: var(--color-btn);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
}

.kenotoplotto--welcome---btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.kenotoplotto--welcome---btn:active {
	animation: lotteryWin 0.6s ease;
}

@keyframes lotteryWin {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 rgba(255, 215, 0, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 rgba(255, 215, 0, 0);
	}
}

/* Lotto */
.kenotoplotto--lotto-box {
	background: var(--color-bg-main);
	padding: 4.375rem 0;
}

.kenotoplotto--lotto--container {
	display: flex;
	align-items: center;
	padding: 1.5rem 2rem;
	justify-content: space-between;
	gap: 2.5rem;
	background: var(--color-card);
	border-radius: 28px;
	position: relative;
	z-index: 0;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.kenotoplotto--lotto--container:hover {
	transform: translateY(-0.5rem);
	-webkit-transform: translateY(-0.5rem);
	-moz-transform: translateY(-0.5rem);
	-ms-transform: translateY(-0.5rem);
	-o-transform: translateY(-0.5rem);
}

.kenotoplotto--lotto--container::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: -1;
	background: linear-gradient(90deg, #317dff 0%, #7531fe 48.08%, #c207ff 100%);
	border-radius: 29px;
	padding: 1px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.kenotoplotto--lotto----keno {
	max-width: 198px;
	width: 100%;
	height: 96px;
}

.kenotoplotto--lotto----bonus {
	max-width: 344px;
	width: 100%;
	font-family: var(--font-btn);
	font-weight: 800;
	font-size: 1rem;
	line-height: 140%;
	color: var(--color-white);
	text-align: center;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.kenotoplotto--lotto----bonus:hover {
	text-shadow: 0 0 10px var(--color-btn);
}

.kenotoplotto--lotto----rating {
	display: flex;
	align-items: center;
	max-width: 186px;
	width: 100%;
	gap: 0.5rem;
	justify-content: center;
}

.kenotoplotto--lotto__icon {
	background-image: url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-lotto/kenotoplotto-icon-star.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 27px;
	width: 100%;
	height: 27px;
}

.kenotoplotto--lotto----btn {
	max-width: 186px;
	width: 100%;
}

.kenotoplotto--lotto--line {
	max-width: 1px;
	width: 100%;
	height: 49px;
	background: linear-gradient(90deg, #317dff 0%, #7531fe 48.08%, #c207ff 100%);
}

/* About us */

.kenotoplotto--about--container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.kenotoplotto--about---title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 2.125rem;
	line-height: 100%;
	color: var(--color-white);
	text-align: center;
}

.kenotoplotto--about---info {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}
.kenotoplotto--about----lists {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 601px;
	width: 100%;
}

.kenotoplotto--about__elem {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.kenotoplotto--about__elem-title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 120%;
	color: var(--color-white);
}

.kenotoplotto--grad-about {
	background: var(--color-gradient-text-s);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

.kenotoplotto--about__elem-text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1rem;
	line-height: 150%;
	color: var(--color-white);
}

.kenotoplotto--about----image {
	background-image: url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-about/kenotoplotto-lotto-game-win.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 599px;
	width: 100%;
	height: 410px;
	border-radius: 28px;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
	position: relative;
	z-index: 0;
}
.kenotoplotto--about----image::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: -1;
	background: linear-gradient(90deg, #317dff 0%, #7531fe 48.08%, #c207ff 100%);
	border-radius: 29px;
	padding: 1px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.kenotoplotto--about---cards {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.kenotoplotto--about----card {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
	padding: 1.5rem;
	position: relative;
	z-index: 0;
	border-radius: 28px;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
	max-width: 286px;
	width: 100%;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.kenotoplotto--about----card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: -1;
	background: linear-gradient(90deg, #317dff 0%, #7531fe 48.08%, #c207ff 100%);
	border-radius: 29px;
	padding: 1px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.kenotoplotto--about----card:hover {
	transform: translateY(-0.5rem);
	-webkit-transform: translateY(-0.5rem);
	-moz-transform: translateY(-0.5rem);
	-ms-transform: translateY(-0.5rem);
	-o-transform: translateY(-0.5rem);
}

.kenotoplotto--about__icon {
	max-width: 47px;
	width: 100%;
	height: 47px;
	background-image: url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-about/kenotoplotto-icon-ball-9.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Contact */
.kenotoplotto--contact--container {
	width: 100%;
	background: var(--color-card);
	position: relative;
	z-index: 0;
	padding: 2.5rem;
	display: flex;
	justify-content: center;
	border-radius: 28px;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
}

.kenotoplotto--contact-w {
	max-width: 820px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.kenotoplotto--contact--container::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index: -1;
	background: linear-gradient(90deg, #317dff 0%, #7531fe 48.08%, #c207ff 100%);
	border-radius: 29px;
	padding: 1px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.kenotoplotto--center {
	text-align: center;
}

.kenotoplotto__contact--form {
	display: flex;
	width: 100%;
	gap: 0.675rem;
	flex-direction: column !important;
}

label {
	font-family: var(--font-btn);
	font-weight: 800;
	font-size: 1rem;
	line-height: 100%;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-transform: uppercase;
}

.kenotoplotto_contact__input {
	outline: none;
	height: 55px;
	width: 100%;
	background: var(--color-white);
	border: none;
	font-size: 1rem;
	color: #303030;
	font-family: var(--font-text);
	font-weight: 400;
	padding: 1rem 1.5rem;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.kenotoplotto_contact--textarea {
	height: 157px;
	resize: none;
}

.kenotoplotto_contact__btn {
	max-width: 100% !important;
	width: 100%;
	text-transform: none;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: var(--font-title);
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.active__block {
	display: flex;
}

.form-message-container {
	margin-top: 0px;
}

.form-message {
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	animation: fadeIn 0.3s ease-in-out;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-text);
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-text);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Disclaimer */
.kenotoplotto--disclaimer-box {
	padding-bottom: 4.375rem;
}

.kenotoplotto--disclaimer--container {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: center;
}

.kenotoplotto--disclaimer-w {
	max-width: 1120px;
	width: 100%;
}

.kenotoplotto--disclaimer--age {
	background-image: url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-footer/kenotoplotto-icon-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 90px;
	width: 100%;
	height: 40px;
	margin-inline: auto;
}

.kenotoplotto--disclaimer--info {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.kenotoplotto--disclaimer---title {
	font-family: var(--font-btn);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 38px;
	text-align: center;
	color: var(--color-white);
}

/* Footer */
.kenotoplotto--footer {
	position: relative;
	padding: 1.25rem 0;
	background: var(--color-card);
}

.kenotoplotto--footer__container {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.875rem 0;
	border: var(--border-line);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.kenotoplotto--text-gray {
	color: var(--color-gray) !important;
}

.kenotoplotto--footer---parthers {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1140px;
	width: 100%;
	margin-inline: auto;
}

.kenotoplotto--footer---age {
	background-image: url(/kenotoplotto-assets/kenotoplotto-img/kenotoplotto-footer/kenotoplotto-icon-age-small.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 40px;
	width: 100%;
	height: 40px;
}

.kenotoplotto--footer---parthers a img {
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.kenotoplotto--footer---parthers a img:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.kenotoplotto--footer---raig {
	max-width: 139px;
	width: 100%;
	height: 44px;
}
.kenotoplotto--footer---gamstop {
	max-width: 114px;
	width: 100%;
	height: 21px;
}
.kenotoplotto--footer---gamcare {
	max-width: 125px;
	width: 100%;
	height: 36px;
}
.kenotoplotto--footer---gt {
	max-width: 189px;
	width: 100%;
	height: 82px;
}
.kenotoplotto--footer---begamble {
	max-width: 183px;
	width: 100%;
	height: 24px;
}

.kenotoplotto--footer--navmenu {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.kenotoplotto--footer---navlink a {
	font-family: var(--font-btn);
	font-weight: 800;
	font-size: 1rem;
	line-height: 140%;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-btn);
	text-align: center;
}

.kenotoplotto--footer---navlink {
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.kenotoplotto--footer---navlink:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

/* Modal Sign up  */
.kenotoplotto-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;
}

.kenotoplotto-modal--title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 1.575rem;
	line-height: 100%;
	text-align: center;
	color: var(--color-white);
}

.kenotoplotto-modal__content-sign {
	background: var(--color-bg-main);
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1.875rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2.875rem 3.75rem;
	width: 100%;
	height: 425px;
	max-width: 510px;
	position: relative;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.kenotoplotto__form {
	display: flex;
	flex-direction: column;
	max-width: 386px;
	gap: 0.675rem;
	width: 100%;
	margin: 0 auto;
}

.kenotoplotto__form__input {
	outline: none;
	border: 1px solid #000000;
	padding: 1.05rem 1.4rem;
	color: #1f1f1f;
	font-weight: 400;
	height: 55px;
	line-height: 20px;
	font-size: 1.05rem;
	font-family: var(--font-text);
	background: #e4e4e4;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}

.kenotoplotto__form__input::placeholder {
	color: #808080;
	font-weight: 400;
	line-height: 100%;
	font-size: 1rem;
	font-family: var(--font-text);
}

.kenotoplotto__form__button {
	max-width: 100% !important;
	width: 100%;
	background: #fcb82b !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	font-family: var(--font-title) !important;
	text-transform: none !important;
}

.kenotoplotto__form__login {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.kenotoplotto__form__log {
	font-size: 1.05rem;
	line-height: 20px;
	font-weight: 400;
	font-family: var(--font-text);
	color: #feffff;
}

.kenotoplotto__form__reg {
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 1rem;
	line-height: 22px;
	font-weight: 400;
	border-bottom: 1px solid var(--color-btn);
	font-family: var(--font-title);
	color: var(--color-btn);
	text-transform: none;
}

/* Log in */
.kenotoplotto-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;
}

.kenotoplotto-modal__content-login {
	background: var(--color-bg-main);

	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2.875rem 3.75rem;
	width: 100%;
	height: 350px;
	max-width: 510px;
	position: relative;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.kenotoplotto-modal-content.success {
	background-color: #4caf50;
	color: white;
}

.kenotoplotto-modal-content.error {
	background-color: #f44336;
	color: white;
}

.kenotoplotto-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;
}

.kenotoplotto-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%);
}

.kenotoplotto-modal-content.success {
	background-color: #4caf50;
	color: var(--color-white);
	text-align: center;
	font-family: var(--font-btn);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 100%;
}

.kenotoplotto-modal-content.error {
	background-color: #f44336;
	color: var(--color-white);
	text-align: center;
	font-family: var(--font-btn);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 100%;
}

/* Others Styles */
.kenotoplotto--privacy-box {
	padding: 3.5rem 0 4.375rem;
}

.kenotoplotto--privacy--lists {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.5rem;
}
.kenotoplotto--privacy---elem,
.kenotoplotto--privacy----sublist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.kenotoplotto--privacy--box {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
}

.kenotoplotto--privacy----sublist li {
	list-style-type: disc;
	margin-left: 1.25rem;
}

.kenotoplotto--privacy---elem h2 {
	max-width: 100% !important;
	width: 100%;
}

.kenotoplotto--uppercase {
	text-transform: uppercase;
	text-align: left;
}

.kenotoplotto--yellow {
	color: var(--color-btn);
}

.kenotoplotto--privacy-title {
	word-break: break-all;
}

/* Media */
@media screen and (max-width: 1260px) {
	.kenotoplotto--container__main {
		padding: 0 1.5rem;
	}

	.kenotoplotto--footer---parthers {
		justify-content: center;
	}
	.kenotoplotto--about---info {
		flex-direction: column-reverse;
		align-items: center;
	}
	.kenotoplotto--about----lists {
		max-width: 100%;
		width: 100%;
	}

	.kenotoplotto--lotto----bonus {
		max-width: 250px;
		width: 100%;
	}
	.kenotoplotto--lotto--container {
		justify-content: space-between;
		gap: 1rem;
	}
}

@media screen and (max-width: 1040px) {
	.kenotoplotto--lotto--container,
	.kenotoplotto--lotto---info {
		flex-direction: column;
	}

	.kenotoplotto--lotto--container {
		max-width: 625px;
		width: 100%;
		margin-inline: auto;
	}
	.kenotoplotto--lotto----bonus,
	.kenotoplotto--lotto----btn {
		max-width: 100%;
		width: 100%;
	}

	.kenotoplotto--lotto--line {
		max-width: 100%;
		width: 100%;
		height: 1px;
	}

	.kenotoplotto--order:nth-child(1) {
		order: 2;
	}
	.kenotoplotto--order:nth-child(2) {
		order: 2;
	}
	.kenotoplotto--order:nth-child(3) {
		order: 3;
	}
	.kenotoplotto--order:nth-child(4) {
		display: none;
	}
	.kenotoplotto--order:nth-child(5) {
		order: 1;
	}
	.kenotoplotto--order:nth-child(6) {
		order: 6;
	}
	.kenotoplotto--order:nth-child(7) {
		order: 7;
	}
}

@media screen and (max-width: 680px) {
	.kenotoplotto--welcome-box {
		padding: 1.5rem 0;
	}

	.kenotoplotto--welcome--container {
		gap: 0.675rem;
	}

	.kenotoplotto--welcome---title {
		font-size: 1.25rem;
	}

	.kenotoplotto--about__elem-title {
		font-size: 1rem;
	}

	.kenotoplotto--about__elem-text {
		font-size: 0.875rem;
	}

	.kenotoplotto--about----image {
		max-width: 100%;
		width: 100%;
		height: 210px;
	}

	.kenotoplotto--contact--container {
		padding: 2.5rem 1.5rem;
	}

	.kenotoplotto--footer----navmenu {
		flex-wrap: wrap;
	}

	.kenotoplotto--footer---parthers {
		gap: 1rem;
		flex-direction: column;
	}

	.kenotoplotto--disclaimer--container {
		padding: 1.5rem !important;
	}
}

@media screen and (max-width: 359px) {
	.kenotoplotto--footer---navlink a {
		font-size: 0.875rem;
	}
}
