@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "The Girl Next Door";
    src: url('../fonts/TheGirlNextDoor/TheGirlNextDoor-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
* {
	box-sizing: border-box;
	scrollbar-width: thin;
	scrollbar-color: rgba(155, 155, 155, 0.5) transparent;
}
html, body{
	font-family: 'Inter', Arial, sans-serif;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}
div.bg_group{
	background: linear-gradient(85.17deg, var(--bg-first) 8.03%, var(--bg-second) 104.61%);
	max-width: 1920px;
	margin: 0 auto;
}
div.bg_group.waves{
	background: url('../svg/t_line.svg') 0px top no-repeat, url('../svg/b_line.svg') 0px bottom no-repeat, 
	linear-gradient(85.17deg, var(--bg-first) 8.03%, var(--bg-second) 104.61%);
	background-size: contain;
	padding: 120px 0;
}
div.container{
	width:100%;
	max-width: 1920px;
	margin:0 auto;
}
div.limiter{
	width:100%;
	max-width: 1920px;
	margin:0 auto;
	overflow: hidden;
}
div.wrapper {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}
div.relative {
	position: relative;
}
@media (max-width: 768px) {
	div.bg_group.waves{
		background-size: auto;
	}
}
/*****************NAV*****************/
.navbox{
	background: #fff;
	height: 80px;
	width: 100%;
	max-width: 1920px;
}
nav{
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
	user-select: none;
	z-index: 9999;
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1920px;
}
nav #menu{
	display: none;
	background: url('../svg/burger.svg') center center no-repeat;
	background-color: var(--font-color);
	border-radius: 8px;
	width: 48px;
	height: 48px;
	cursor: pointer;
	box-shadow: 0px 4px 6px 0px #41414140;
}
nav #user{
	color: var(--font-color);
	text-decoration: none;
}
nav .menugroup{
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition-behavior: allow-discrete;
	display: flex;
	gap:20px;
	background-color: #ffffff60;
	border-radius: 100px;
	padding: 10px;
	backdrop-filter: blur(10px);
}
nav .menugroup > a{
	display: flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 100px;
	text-transform: uppercase;
	color: var(--font-color);
	font-weight: bold;
	text-decoration: none;
	height: 48px;
}
nav .menugroup > a.current{
	background-color: #fff;
	box-shadow: 0px 4px 6px 0px #41414140;
}
nav .controls > .log_group {
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition-behavior: allow-discrete;
	display: flex;
	gap:20px;
}
nav .controls > .log_group > a{
	display: flex;
	align-items: center;
	padding: 10px 30px;
	border-radius: 100px;
	background-color: var(--font-color);
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	height: 48px;
	transition: all 0.3s ease-in-out;
}
nav .controls > .log_group > a:hover{
	background-color: #fff;
	color: var(--font-color);
}
nav a.logo img{
	height: 60px;
}
#reside {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background: #000000;
	opacity: 0.7;
	z-index: 100;
}
@media (max-width: 768px) {
	nav{
		padding: 10px;
	}
	.navbox {
		display: none;
	}
	nav a.logo img{
		max-width: 100%;
	}
	body.opened nav a.logo {
		display: none;
	}
	nav .menugroup{
		display: none;
		opacity: 0;
		border-radius: 30px;
		position: absolute;
		top: 90px;
		flex-direction: column;
		width: calc(100% - 20px);
	}
	nav #menu{
		display: block;
	}
	body.opened nav #menu{
		display: none;
	}
	nav .controls > .log_group {
		display: none;
		opacity: 0;
		gap:10px;
	}
	body.opened nav .controls > .log_group, body.opened nav .menugroup{
		display: flex;
		opacity: 1;
	}
	@starting-style {
		body.opened nav .controls > .log_group{
			opacity: 0;
		}
		body.opened nav .menugroup{
			opacity: 0;
		}
	}
	
}
/*****************Banner**************/
div.banner{
	height: 700px;
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 130px;
	color: #fff;
	user-select: none;
}
div.banner .positioning{
	max-width: 100%;
	width: 600px;
	height: 600px;
	position: absolute;
	right:0;
	bottom:0;
	transform: translateX(100%);
	animation: moveIn 0.3s cubic-bezier(.86,0,.07,1) forwards;
    animation-delay: 1s;
	display: flex;
	justify-content: center;
	align-items: center;
}
div.banner img{
	filter: drop-shadow(0 0 50px var(--bg-color));
	max-width: 100%;
	max-height: 100%;
}
@keyframes moveIn {to {transform: translateX(0);}}

div.banner .title{
	font-size: 120px;
	font-weight: bold;
	color: var(--font-color-heading);
}
div.banner p{
	font-size: 18px;
	font-weight: bold;
	width: 40%;
	margin: 20px 0 40px 0;
	color: var(--font-color-heading);
}
div.banner .btn_group{
	display: flex;
	justify-content: flex-start;
	gap:20px;
}
@media (max-width: 768px) {
	div.banner .title{
		font-size: 80px;
	}
	div.banner {
		height: 800px;
		padding: 420px 20px 0px 20px;
		margin-bottom: 60px;
	}
	div.banner .positioning{
		top: 20px;
		max-height: 400px;
		transform: translateX(0);
	}
	div.banner p{
		width: 100%;
	}
	div.banner .btn_group{
		justify-content: center;
	}
}
/***************Button*****************/
.button{
	display: inline-flex;
	align-items: center;
	padding: 10px 30px;
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	height: 46px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	outline: none;
	box-shadow: 0px 4px 6px 0px #41414140;
}
.button.light{
	background-color: #fff;
	border: 1px solid #fff;
	color: var(--font-color);
}
.button.light:hover{
	background-color: var(--font-color);
	color: #fff;
}
.button.dark{
	background-color: #19181E;
	border: 1px solid #19181E;
	color: #fff;
}
.button.dark:hover{
	background-color: #fff;
	color: #19181E;
}
.button.colored{
	background-color: var(--font-color);
	border: 1px solid var(--font-color);
	color: #fff;
}
.button.colored:hover{
	background-color: #fff;
	color: var(--font-color);
}
.button.centered{
	position: relative;
	margin: 40px auto;
	left: 50%; 
	transform: translateX(-50%);
}
/***************Prizes*****************/
.topline{
	background: url('../svg/vector.svg') 0px top no-repeat;
	background-size: cover;
	background-position: 0px 40px;
}
.prizes {
	padding: 100px 0;
	user-select: none;
}
.prizes h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size:48px;
	margin:0 auto;
	color: var(--font-color-heading);
	text-align: center;
}
.prizes .subtitle{
	color: var(--font-color-heading);
	text-align: center;
	font-weight: bold;
	font-size:18px;
}
.prizes .split{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-top:50px;
}
.prizes .item{
	height: 500px;
	width: 500px;
	max-width: 100%;
	position: relative;
}
.prizes .item .pack{
	height: 500px;
	width: 500px;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position:absolute;
	top:0;
	left:0;
	opacity: 0;
	animation: spin 6s infinite;
	animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.prizes .item img{
	max-width: 100%;
	max-height: 100%;
}
.prizes .item .pack:nth-child(1){
	animation-delay: 0s;
}
.prizes .item .pack:nth-child(2){
	animation-delay: 3s;
}
.prizes .hint{
	transform: translate(calc(100% - 40px), -20px);
	background-color: var(--bg-color);
	position: absolute;
	bottom: 0;
	right:0;
	padding: 30px 30px 10px;
	border-top-right-radius:30px;
	border-bottom-right-radius:30px;
	border-bottom-left-radius:30px;
	width: 350px;
	height: 150px;
	color: #fff;
	user-select: none;
	box-shadow: 0px 4px 6px 0px #41414140;
}
.prizes .hint .row {
    position: absolute;
    width: calc(100% - 60px);
    opacity: 0;
    animation: fade 6s infinite;
}
.prizes .hint .row:nth-child(1) {
    animation-delay: 0s;
}
.prizes .hint .row:nth-child(2) {
    animation-delay: 3s;
}
.prizes .hint .title{
	font-weight: bold;
	font-size: 24px;
}
.prizes .box{
	width:30%;
}
.prizes .box p{
	color: #19181E;
}
.prizes .box .title{
	color: #000;
	font-weight: bold;
	font-size: 28px;
}
.prizes .box .title > span{
	color: var(--font-color);
}
.prizes .btn_group{
	display: flex;
	justify-content: center;
	gap:20px;
}
@keyframes fade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    40%  { opacity: 1; }
    48%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes spin {
	0%   { opacity: 0; transform: translate(40%, 100%); }
	1%   { opacity: 0; }
	5%   { opacity: 1; transform: translate(0%, 0%); }
	40%  { opacity: 1; transform: translate(0%, 0%); }
	48%  { opacity: 0; transform: translate(-100%, 60%); }
	100% { opacity: 0; transform: translate(-100%, 60%); }
}
@media (max-width: 768px) {
	.prizes {
		padding: 0 20px;
		margin: 60px 0;
	}
	.prizes .item{
		margin-bottom: 200px;
	}
	.prizes img{
		max-width: 100%;
	}
	.prizes .split{
		flex-direction: column;
		padding-top:0px;
	}
	.prizes .box{
		width:100%;
	}
	.prizes .hint{
		left:0;
		transform: translate(0px, calc(100% + 20px));
	}
}
/***************Slider*****************/
div.slidy {
	margin: 100px 0;
}
div.slidy img{
	max-height: 400px;
	max-width: calc(100vw - 140px);
	/* transform: rotate(10deg);
	transition: all 0.3s linear; */
}
div.slidy .slick-active img{
	/* transform: rotate(0deg); */
}
div.slidy .slick-slide {
	display: flex;
	align-items: center;
	height: 400px;
	padding: 0 50px;
}
div.slidy:before{
  content: ' ';
  width: 400px;
  height: 400px;
  display: block;
  left: 50%;
  position: absolute;
  background-image: radial-gradient(circle at center, var(--bg-color) 0%, transparent 70%);
  transform: translateX(-50%);
}
div.slidy .slick-prev, div.slidy .slick-next {
	position: absolute;
	top: 0;
	height: 100%;
	width: 180px;
	border: none;
	cursor: pointer;
	z-index: 998;
}
div.slidy .slick-prev {
	left: 0px;
	background: linear-gradient(to right, #fff, rgba(0, 0, 0, 0)), url('/assets/svg/arrow_left.svg') no-repeat center;
}
div.slidy .slick-next {
	right: 0px;
	background: linear-gradient(to left, #fff, rgba(0, 0, 0, 0)), url('/assets/svg/arrow_right.svg') no-repeat center;
}
/***************Guide*****************/
section.guide {
	user-select: none;
}
section.guide h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size:48px;
	margin:0 auto;
	color: var(--font-color-heading);
	text-align: center;
}
section.guide h2 > span{
	color: var(--font-color);
}
section.guide .title{
	font-weight: bold;
	font-size: 24px;
	color: var(--font-color-heading);
}
section.guide .middle{
	text-align: center;
}
section.guide .cols{
	display: flex;
	gap: 20px;
	color: #fff;
	margin: 60px 0;
}
section.guide .cols > div > div:first-child{
	margin: 0 auto;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}
section.guide p{
	color: var(--font-color-heading);
}
section.guide img{
	max-width: 300px;
	max-height: 300px;
	display: block;
	z-index: 999;
}
.svg-container {
	width:300px;
	height: 300px;
	position:relative;
}
.svg-container svg {
	position:absolute;
	top:0;
	left:0;
}
.svg-container svg g {
	fill: var(--bg-color);
	opacity: 0;
	transition: opacity 0.5s ease;
	filter: blur(3px);
}
.svg-container:hover g.circle_one {
    opacity: 0.8;
    transition-delay: 0s;
}
.svg-container:hover g.circle_two {
    opacity: 0.4;
    transition-delay: 0.3s;
}
.svg-container:hover g.circle_three {
    opacity: 0.1;
    transition-delay: 0.6s;
}
@media (max-width: 768px) {
	section.guide {
		padding: 0 20px;
	}
	section.guide .cols{
		flex-direction: column;
	}
}
/***************Products*****************/
section.products {
	user-select: none;
}
section.products h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size:48px;
	margin:0 auto;
	color: #000;
	text-align: center;
}
section.products h2 > span{
	color: var(--font-color);
}
@media (max-width: 768px) {
	section.products {
		padding: 0 20px;
	}
}
/***************Play*****************/
section.play {
	user-select: none;
	margin-bottom: 100px;
}
section.play .box{
	position: relative;
	border-radius: 30px;
	background-color: var(--bg-color);
	padding: 40px 100px;
	margin: 150px 0;
}
section.play .box .title{
	font-weight: bold;
	color: #fff;
	font-size: 40px;
}
section.play .box p{
	color: #fff;
	width: 45%;
}
section.play .box img{
	position: absolute;
	right:0;
	top:0;
	transform: translate(-40px, -35%);
	filter: drop-shadow(0 0 50px var(--bg-color));
}
section.play h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size:48px;
	margin:0 auto;
	color: #fff;
	text-align: center;
}
section.play h2 > span{
	color: var(--font-color);
}
@media (max-width: 768px) {
	section.play{
		padding: 0 20px;
		margin-bottom: 300px;
	}
	section.play .box{
		padding: 20px;
		margin: 50px 0 200px 0;
	}
	section.play .box p{
		width: 100%;
	}
	section.play .box img{
		bottom:0;
		height: 350px;
		transform: translate(-40px, 50%);
	}
}
/***************Accordeon*****************/
.accordeon {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordeon > div .title{
	cursor:pointer;
	user-select:none;
	padding: 25px 60px 25px 20px;
	color: var(--font-color);
	font-weight: bold;
	position: relative;
}
.accordeon > div .title:after{
	content: '';
	display: block;
	width: 24px;
	height: 12px;
	mask-image: url('../img/arrow.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 16px;
	position: absolute;
	top: 30px;
	right: 24px;
	transition: all 0.3s linear;
}
.accordeon > div.closed .title:after{
	transform: rotate(180deg);
	background-color: var(--bg-color);
}
.accordeon > div.opened .title:after{
	transform: rotate(360deg);
	background-color: #fff;
}
.accordeon > div .content{
	padding: 0 70px 20px 20px;
	color: var(--font-color);
}
.accordeon > div{
	transition: 0.2s linear all;
	border: 1px solid var(--bg-color);
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 4px 6px 0px #41414140;
}
.accordeon > div.opened{
	background-color: var(--bg-color);
}
.accordeon > div.opened .title, .accordeon > div.opened .content{
	color: #fff;
}
.accordeon > div.closed .content{
	display: none;
}
/***************Answers*****************/
.answer_double{
	background-color: #fff;
	display: flex;
	gap:20px;
	margin: 100px 0;
}
section.answers {
	padding: 60px 0;
	user-select: none;
}
section.answers .accordeon {
  width: 70%;
}
section.answers h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size:48px;
	margin:0 auto;
	color: #000;
	text-align: center;
}
section.contactus {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 30%;
	margin-top: -58px;
}
section.contactus .middle{
	text-align: center;
}
section.contactus .title{
	text-align: center;
	font-weight: bold;
}
section.contactus input[type=text], section.contactus textarea{
	font-family: 'Inter', Arial, sans-serif;
	width:100%;
	border: 1px solid var(--bg-color);
	border-radius: 10px;
	font-size: 18px;
}
section.contactus input[type=text]{
	height: 52px;
	padding: 10px 15px;
}

section.contactus textarea{
	height: 250px;
	padding: 20px 15px;
}
section.contactus [data-label]{
	position: relative;
}
section.contactus [data-label]::before{
	content: attr(data-label);
	display: block;
	position:absolute;
	top: -9px;
	left: 15px;
	background: #fff;
	padding: 0 10px;
	color: var(--font-color);
	font-weight: bold;
}
@media (max-width: 768px) {
	section.answers{
		padding: 0 20px;
	}
	.answer_double{
		flex-direction: column;
	}
	section.answers .accordeon{
		width: 100%;
	}
	section.contactus{
		width: 100%;
		margin-top:0px;
	}
}
/***************Footer*****************/
footer > div{
	user-select: none;
	position: relative;
	background: linear-gradient(85.17deg, var(--bg-first) 8.03%, var(--bg-second) 104.61%);
}
footer a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	color: var(--font-color-heading);
}
footer a:hover {
	text-decoration: underline;
}
footer a.logo img{
	max-height: 80px;
	max-width: 90%;
}
footer .rounds{
	align-self: center;
	display: flex;
	gap: 20px;
}
footer .wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0;
  min-height: 230px;
}
footer .fgroup{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  white-space: nowrap;
}
footer .links {
  display: flex;
  gap: 5px;
  flex-direction: column;
  flex: 1;
}
footer #scrollTop {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
  border: 6px solid #f2f2f2;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer #scrollTop::before {
  content: '';
  display: block;
  width: 36px;
  height: 21px;
  background-color: var(--bg-color);
  mask-image: url('../img/arrow.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px;
  
}
footer #scrollTop:hover::before{
	animation: bounceArrow 0.6s ease;
}
@keyframes bounceArrow {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(4px); }
  50%  { transform: translateY(-12px); }
  80%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
footer div.copyright {
  background: var(--bg-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  height: 60px;
  user-select: none;
  text-align: center;
}
@media (max-width: 768px) {
	footer .wrapper{
		padding: 70px 20px 40px 20px;
		justify-content: space-evenly;
		flex-direction: column;
	}
	footer .fgroup{
		flex-direction: column;
		align-items: flex-start;
		gap:20px;
	}
	footer a.logo img{
		max-width: 150px;
	}
}
/***********Social*************/
a.social{
	width: 50px;
	height:50px;
	display:block;
	mask-size:contain;
	background-color: var(--font-color-heading);
}
a.social:hover{
	opacity: 0.8;
}
a.social.fb{
	mask-image: url('../img/fb.svg');
}
a.social.instagram{
	mask-image: url('../img/instagram.svg');
}
a.social.youtube{
	mask-image: url('../img/youtube.svg');
}
/********************************/
.ot_block{
	width: 1180px;
	margin: 0 auto;
	padding: 20px 0 60px 0;
	max-width: 90%;
}
#otnotice{
    position: fixed;
    display:flex;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: #000000b0;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}
#otnotice .otholder{
    width: 800px;
    max-width: 90%;
    height: 90%;
    border-radius: 5px;
    background: #fff;
	position: relative;
}
#otnotice .otcontent{
	overflow-y: auto;
	max-height: 100%;
}
#otnotice .otnotice-content{
    padding:5px 20px !important;
    color: #565654;
    font-size: 14px;
}
#otnotice .otnotice-section-header {
    color: #565654;
    font-size: 20px;
    margin: 20px 0;
}
#otnotice .otnotice-menu a {
    color: #565654;
}
.otbutton{
    cursor: pointer;
}
#otnotice .otclose {
	display: block;
	height: 40px;
	width: 40px;
	border-radius: 5px;
	border-left: 1px solid #777;
	position: absolute;
	right: 0;
	top: 0;
	border-bottom: 1px solid #777;
	background: #f7f7f7;
	cursor: pointer;
}
#otnotice .otclose::before {
	content:'';
	display: block;
	height: 40px;
	width: 40px;
	mask-image: url('../svg/x.svg');
	background-color: #555;
	mask-repeat: no-repeat;
	mask-position: center;
}
#otnotice .otnotice-menu {
    margin: 20px 0 0 20px;
}
#otnotice #ot-sdk-btn {
    padding: 12px 20px;
    background-color: #eaeff2;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    transition: background-color .15s ease;
}
#otnotice #ot-sdk-btn:hover{
    background-color: #d4dae0;
}
/********************************/
/*-------------------------------------*/
.box_holder{
	background-color:#f2f2f2;
	padding: 40px 0 60px 0;
}
.login_container h1{
	color: #3f3f3f;
	text-transform: uppercase;
	font-size: 56px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 20px 0;
	line-height: 64px;
}
.login_container{
	width: 740px;
	max-width: 100%;
	background-color: #fff;
	padding: 50px 100px;
	margin: 0px auto;
	border-radius: 10px;
}
.login_container input[type=text], .login_container input[type=password]{
	font-family: 'Inter', Arial, sans-serif;
	font-size: 18px;
	border:1px solid #ccc;
	margin: 20px 0;
	height: 70px;
	outline: none;
	width: 100%;
	padding: 20px;
	border-radius: 20px;
}
.login_container .social{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 40px 0 0 0;
}
.login_container .social > a{
	display: block;
	width:70px;
	height:70px;
	border: 1px solid #3f3f3f;
	background-color: #fff;
	border-radius:50%;
	position:relative;
}
.login_container .social > a:hover{border: 1px solid #3f3f3f95;}
.login_container .social > a::before{
	background-color: #3f3f3f;
	content:'';
	width:70px;
	height:70px;
	position:absolute;
	top:0;
	left:0;
	mask-repeat: no-repeat;
	mask-position: center;
}
.login_container .social > a.facebook::before{
	mask-image: url('../svg/facebook.svg');
	mask-size: 25px;
}
.login_container .social > a.google::before{
	mask-image: url('../svg/google.svg');
	mask-size: 45px;
}
.login_container .social > a.facebook:hover::before{
	background-color:#46a7ec;
}
.login_container .social > a.google:hover::before{
	background-color:#ff3232;
}
.login_container fieldset{
	border-width: 1px 0 0 0;
	border-color: #c0c0c0;
	margin: 0 0 40px;
	padding: 0;
	user-select: none;
}
.login_container fieldset legend{
	display:block;
	font-size: 21px;
	width: unset;
	margin: 0 auto;
	padding: 0 10px;
}
.login_container p{
	font-size: 18px;
	text-align: center;
	color: #565654;
	margin: 10px 0;
}
.login_container a.forgot{
	font-size: 18px;
	/* text-decoration: none; */
	transition: color 0.15s ease-in-out;
	/* color: #303030; */
	color: var(--font-color);
	font-weight: 500;
}
.login_container .join{
	font-size: 14px;
	text-align:center;
	color: #303030;
	margin: 0 0 10px 0;
}
.login_container .join > a{
	color: var(--font-color);
}
.login_container a.forgot:hover, .login_container .join > a:hover{
	opacity: 0.8;
}
.login_container a.otbutton{
	text-decoration: underline;
	color: var(--font-color);
}
.login_container .mini_txt a.otbutton, .login_container .toggle_text a.otbutton{
	font-size: 15px;
}
.login_container a.policy:hover{
	opacity: 0.8;
}
input[type="checkbox"] {
	display:none;
}
input[type="checkbox"] + label{
	font-size: 20px;
	color: #565654;
	display: block;
	width: 20px;
	height: 20px;
	cursor:pointer;
	user-select:none;
	position:relative;
	top: 5px;
	float: left;
	margin-right: 10px;
}
input[type="checkbox"] + label::before, input[type="checkbox"] + label::after{
	content: '';
	position: absolute;
	top: -5px;
	left:0;
	display: block;
	width: 20px;
	height: 20px;
}
input[type="checkbox"] + label::before{
	background-color: #eee;
	border-radius: 3px;
}
input[type="checkbox"] + label:hover::before{
	background-color: #ccc;
}
input[type="checkbox"]:checked + label::before{
	background-color: #fff;
}
input[type="checkbox"]:checked + label::after{
	mask-image: url('../svg/check.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: #565654;
	mask-size: 14px;
}
.login_container .error, .login_container .success{
	background: #e37e8a;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	margin: 30px 0;
}
.login_container .success{
	background: #bfe37e;
}
.toggle-eye {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	right: 15px;
	cursor: pointer;
	background-color: #56565491;
	mask-size: contain;
	transform: translateY(-50%);
}
.toggle-eye.opened{
	mask-image: url('../svg/eye-open.svg');
}
.toggle-eye.closed{
	mask-image: url('../svg/eye-close.svg');
}
/*-------------------------------------*/
.error-field{
	outline: 1px solid #ff9393 !important;
}
span.required-message{
	position: absolute;
	top:-15px;
	left: 0px;
	padding: 5px 11px 3px;
	background-color: #ff9393;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	transition: all 0.3s ease-in-out;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}
span.required-message[data-type=checkbox]{
	top: -40px;
	left: -13px;
}
span.required-message::before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 20px;
	border: 4px solid transparent;
	border-top: 4px solid #FF971D;
}
/*-------------------------------------*/
.toggle_text, .mini_txt{
	font-size: 15px;
	color: #565654;
}
.toggle_button{
	display: block;
	width: 20px;
	height: 30px;
	border: 1px solid #000;
	margin:0 auto;
	cursor: pointer;
	mask-image: url('../svg/chevron-left.svg');
	background-color: #000;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
}
.toggle_button.up{
	transform: rotate(90deg);
}
.toggle_button.down{
	transform: rotate(270deg);
}
/*-------------------------------------*/
.participate {
	display: grid;
	grid-template-columns: 1fr 162px 1.4fr;
	grid-template-rows: 1fr repeat(5, 60px);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 60px;
	user-select: none;
}
.participate > div:nth-child(1) { grid-area: 1 / 1 / 6 / 2; }
.participate > div:nth-child(2) { grid-area: 6 / 1 / 7 / 2; }
.participate > div:nth-child(3) { grid-area: 1 / 2 / 2 / 4; }
.participate > div:nth-child(4) { grid-area: 2 / 2 / 7 / 3; }
.participate > div:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
.participate > div:nth-child(6) { grid-area: 3 / 3 / 4 / 4; }
.participate > div:nth-child(7) { grid-area: 4 / 3 / 5 / 4; }
.participate > div:nth-child(8) { grid-area: 5 / 3 / 6 / 4; }
.participate > div:nth-child(9) { grid-area: 6 / 3 / 7 / 4; }
.participate .next-btn{
	background-color: var(--bg-color);
	border: 1px solid var(--bg-color);
	color: #fff;
	display:flex;
	border-radius: 10px;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease-in-out;
}
.participate .next-btn:disabled{
	background-color: #999;
	border: 1px solid #999;
	color: #000;
	cursor:not-allowed;
}
.participate .next-btn:not(:disabled):hover{
	cursor:pointer;
	background-color: #fff;
	color: var(--bg-color);
	border: 1px solid #999;
}
.participate .example{
	text-align: center;
}
.participate .example > img{
	max-height: 100%;
}
.participate .title{
	font-size: 22px;
	line-height: 33px;
	color: #2E2833;
}
.participate .txt{
	font-size: 18px;
	line-height: 27px;
	color:#8D8D8D;
}
.participate .upload{
	border: 1px dashed var(--bg-color);
	padding: 28px;
	background: #fff;
}
.participate .upload.dragover{
	border: 2px dashed var(--bg-color);
}
.participate .rule{
	border: 1px solid var(--bg-color);
	background: #fff;
	border-radius: 10px;
	font-size:17px;
	display: flex;
	align-items:center;
}
.participate .rule::before{
	display: flex;
	content: attr(data-letter);
	width:42px;
	min-width: 42px;
	height:42px;
	background: var(--bg-color);
	border-radius: 50%;
	color: #fff;
	margin: 0 10px;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}
/*-------------------------------------*/
.receipt_example {
	display:flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	margin-bottom: 100px;
	user-select:none;
}
.receipt_example > div {
	background-color: #fff;
	border-radius: 10px;
	padding:10px;
	position:relative;
	width: 100%;
}
.receipt_example > div::before, .receipt_example > div::after{
	content:'';
	display:flex;
	align-items: center;
	justify-content: center;
	width:60px;
	height:60px;
	position: absolute;
	bottom: -30px;
	left: calc(50% - 30px);
}
.receipt_example > div::before{
	background-color: #c80017;
	border-radius:50%;
}
.receipt_example > div::after{
	background-color: #fff;
	mask-image: url('../svg/x.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size:19px;
}
.receipt_example > div.valid::before{
	background-color: #22aa4b;
}
.receipt_example > div.valid::after{
	mask-image: url('../svg/check.svg');
}
.receipt_example img{
	max-width:100%;
}
/*-------------------------------------*/
#uploadForm {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
	align-items: center;
	user-select:none;
}
#receiptPreview{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#receiptPreview .delete-btn{
	width:40px; 
	height:40px;
	background: #fff;
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	padding: 0;
}
#receiptPreview .delete-btn:before{
	display:block;
	width:40px; 
	height:40px;
	content:'';
	background-color: var(--bg-color);
	mask-image: url('../svg/trash.svg');
	mask-repeat: no-repeat;
	mask-position: center;
}
#receiptPreview .delete-btn:hover:before{
	opacity:0.8;
}
#imageUploader {
	position: relative;
}
#imageUploader .upload-btn{
}
#imageUploader .file-input{
	display:none;
}
#imageUploader .preview-image{
	max-width:100%;
	max-height: 300px;
}
/*-------------------------------------*/
#waitModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 220, 220, 0.8);
    justify-content: center;
    align-items: center;
	z-index:102;
}
.modal-content {
	font-size:40px;
	font-weight: 500;
    text-align: center;
	color: #626262;
}
.spinner {
    width: 200px;
    height: 200px;
    background-color: var(--bg-color);
	mask-image: url('../svg/loader.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	margin: 0 auto;
}
/*-------------------------------------*/
.campaign_list{
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.campaign_list > a{
	display: flex;
	width: 250px;
	max-width: 100%;
	border: 1px solid #000;
	border-radius: 5px;
	flex-direction: column;
	padding: 10px;
	text-align: center;
	background-color: #FFF;
	text-decoration: navajowhite;
	gap: 8px;
	user-select: none;
}
.campaign_list > a > img{border: 1px solid #000;}
/*-------------------------------------*/
#wheel-container {
  position: relative;
  width: 560px;
  max-width: 100%;
  margin: 40px auto;
  user-select: none;
  aspect-ratio: 1/1;
}

#wheel div{
	transition: transform 5s cubic-bezier(0.25, 0.1, 0.15, 1);
	display:flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	text-align: center;
	font-family: Arial, Sans-Serif;
}
#wheel {
  width: 100%;
  height: 100%;
  transition: transform 5s cubic-bezier(0.25, 0.1, 0.15, 1);
  transform-origin: 50% 50%;
}

#pointer {
	mask-image: url('../svg/arrow.svg');
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	height: 9%;
	z-index: 10;
	background-color: #FDBD42;
	aspect-ratio: 55/51;
}
/*-------------------------------*/
.reader {
	position: relative;
}
.reader h1{
	color: #565654;
	text-transform: uppercase;
	font-size: 64px;
	margin: 40px 0 30px 0;
	font-weight: 500;
	text-align: center;
	line-height: 70px;
}
.reader p{
	color: #565654;
	font-size: 18px;
}
.reader a.return{
	display: block;
	width: 40px;
	height: 40px;
	mask-image: url('../svg/chevron-left.svg');
	background-color: #000;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
	position: absolute;
	top: -40px;
	left: 0;
}
.reader a.return:hover{
	opacity: 0.6;
}
.contact_page{
	display: flex;
	gap:60px;
	background: #fff;
	border-radius: 10px;
	padding: 0 20px 20px 20px;
	margin: 80px 0 20px 0;
}
.contact_page p{
	color: var(--font-color);
	font-size: 14px;
	line-height: 24px;
	text-align: justify;
}
.contact_page > div{
	width: 50%;
}
.contact_page .group{
	display: flex;
	flex-direction: column;
	gap:20px;
}
.contact_page input[type=text], .contact_page textarea{
	border: 1px solid #ccc;
}
/*-------------------------------------*/
body.pro main {
	background: #f2f2f2;
}
.profile{
	display:flex;
	gap:20px;
	padding: 20px 0;
}
.profile .left_bar .avatar{
	border:1px solid #ccc;
	border-radius: 50%;
	width:150px;
	height:150px;
	margin: 0 auto 20px auto;
	position: relative;
}
.profile .left_bar .avatar img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.profile .left_bar .avatarButton {
	width: 32px;
	height: 32px;
	display: block;
	background: var(--bg-color);
	border-radius: 50%;
	position: absolute;
	bottom:5px;
	right:5px;
	cursor:pointer;
}
.profile .left_bar .avatarButton::before{
	content:'';
	display:block;
	width: 32px;
	height: 32px;
	mask-image: url('../svg/pencil.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 75%;
	background-color: #fff;
}
.profile .left_bar .avatar.default::before{
	width:150px;
	height:150px;
	content:'';
	mask-image: url('../svg/noavatar.svg');
	background-color: #bbb;
	display: block;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 60px;
}
.profile .info{
	display:flex;
	justify-content: space-between;
	align-items: center;
	color: var(--font-color);
}
.profile .left_bar ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.profile .left_bar ul img{
	position:relative;
	top: 8px;
	left: -4px;
}
.profile .left_bar ul ul{
	padding-left: 20px;
	border-left: 1px solid #ded0fb;
	margin: 10px 0 10px 10px;
}
.profile .left_bar ul ul > li{
	padding:5px 0;
}
.profile .left_bar li, .profile .left_bar li a{
	color: #303030;
	font-size: 16px;
	text-decoration: none;
	user-select:none;
}
.profile .left_bar li a:hover{
	color: var(--font-color);
}
.profile .fields{
	background:#fff;
	padding:30px;
	border-radius: 10px;
}
.profile .fields .inrow{
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
}
.profile .fields .grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(6, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 20px;
}
.profile .fields .grid > div:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.profile .fields .grid > div:nth-child(2){ grid-area: 1 / 2 / 2 / 3; }
.profile .fields .grid > div:nth-child(3){ grid-area: 2 / 1 / 3 / 2; }
.profile .fields .grid > div:nth-child(4){ grid-area: 2 / 2 / 3 / 3; }
.profile .fields .grid > div:nth-child(5){ grid-area: 3 / 1 / 4 / 2; }
.profile .fields .grid > div:nth-child(6){ grid-area: 3 / 2 / 4 / 3; }
.profile .fields .grid > div:nth-child(7){ grid-area: 4 / 1 / 5 / 2; }
.profile .fields .grid > div:nth-child(8){ grid-area: 4 / 2 / 5 / 3; }
.profile .fields .grid > div:nth-child(9){ grid-area: 5 / 1 / 6 / 2; }
.profile .fields .grid > div:nth-child(10){ grid-area: 5 / 2 / 6 / 3; }
.profile .fields .grid > div:nth-child(11){ grid-area: 6 / 1 / 7 / 2; }
.profile .fields .grid > div:nth-child(12){ grid-area: 6 / 2 / 7 / 3; display: flex; align-items: center;}

.profile section.promotions {position: relative;}
.profile section.promotions > div{
	min-height: 250px;
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 10px 30px 20px;
}
.profile section.promotions > div img{
	position:absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
	border-radius: 20px;
}
.profile section.promotions .group {
	gap:15px;
	font-size:14px;
	flex-direction: column-reverse;
	align-items: flex-start;
}
.profile section.promotions .group > div {
  left: 30px;
}
.profile section.promotions a.button {
	height:30px;
	display: flex;
	align-items: center;
	font-size:14px;
}
.profile section.promotions p {
	font-size: 12px;
	line-height: 18px;
	width: 30%;
}
.profile .tholder{
	background: #fff;
	padding: 20px;
	border-radius: 10px;
}
.profile .tabcontent .tholder{
	margin-top: 30px;
}
.profile table{
	width:100%;
}
.profile table td{
	height: 40px;
	font-size: 16px;
	text-align: center;
}
.profile table td img{
	max-width: 80px;
	max-height: 80px;
}
.profile table th{
	font-size: 16px;
	font-weight: 500;
	color: var(--font-color);
	border-bottom: 1px solid var(--bg-color);
	user-select:none;
}
.profile table td.center{
	text-align:center;
}
.profile .fields input[type="text"], .profile .fields input[type="password"]{
	border:1px solid #ddd;
	height: 60px;
	width: 100%;
	border-radius: 20px;
	padding: 25px 30px;
	outline: none;
}
.profile .fields select{
	font-family: 'Poppins', sans-serif;
	border:1px solid #ddd;
	height: 60px;
	font-size: 18px;
	background: #fff;
	width: 100%;
	border-radius: 20px;
	padding: 15px 30px;
	cursor:pointer;
}
.profile .main_bar{width: 100%;}
.profile .left_bar{
	width:400px;
	display:flex;
	flex-direction: column;
	gap:20px;
}
.profile .left_bar > div{
	background:#fff;
	padding:30px;
	border-radius: 10px;
}
.profile .left_bar > div:first-child{
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}
.profile .left_bar .mini{
	font-size:14px;
	color: var(--font-color);
}
.profile .left_bar .help{
	width:20px;
	height:20px;
	content:'';
	mask-image: url('../svg/help.svg');
	background-color: var(--bg-color);
	display: block;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}
.profile .tabs > input[type="radio"] {
  display: none !important;
}
.profile .tabs > input[type="radio"] + label {
	display: inline-block;
	border-bottom: 1px solid var(--bg-color);
	padding: 9px 20px;
	text-align: center;
	cursor: pointer;
	user-select: none;
	opacity: 0.3;
	margin-right: 20px;
}
.profile .tabs > input[type="radio"]:checked + label {
	border-bottom: 2px solid var(--bg-color);
	opacity:1;
}
.profile .tabs > label:before, .tabs > label:after{
	display:none;
}
.profile .tabcontent > div{
	display: none;
}
.profile .tabs > #tab1:checked ~ .tabcontent > div:nth-child(1),
.profile .tabs > #tab2:checked ~ .tabcontent > div:nth-child(2),
.profile .tabs > #tab3:checked ~ .tabcontent > div:nth-child(3),
.profile .tabs > #tab4:checked ~ .tabcontent > div:nth-child(4){
	display: block;
}
section.promotions{
	display: flex;
	flex-direction: column;
	gap: 30px;
	color: #fff;
	margin: 30px 0;
	user-select: none;
}
section.promotions h3{
	font-size: 28px;
	font-weight: 600;
	line-height: 51px;
	margin:0;
	z-index:99;
	position: relative;
}
section.promotions p{
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	width: 40%;
	color: #fff;
	z-index:99;
	position: relative;
}
section.promotions .group{
	display: flex;
	align-items: center;
	gap: 60px;
	z-index:99;
	position: relative;
}
section.promotions .group > div{
	position: relative;
}
section.promotions .group > div::before{
	content:'';
	height:22px;
	width:22px;
	display:block;
	background-image: url('../svg/calendar.svg');
	position: absolute;
	top:0;
	left: -30px;
}
section.promotions a.button{
	height: 52px;
	padding: 13px 24px 13px 24px;
	border-radius: 30px;
	border: 1px solid #fff;
	background: none;
	color: #fff;
	text-decoration: none;
	cursor:pointer;
}
/*-------------------------------------*/
.instant, .sorry {
	padding: 40px 0;
	user-select: none;
}
.win_banner{
	height: 500px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction:column;
	position:relative;
}
.win_banner.centered{
	text-align: center;
}
.win_banner > img{
	position:absolute;
	object-fit: contain;
	object-position: center;
	height: 100%;
	left:50%;
	transform: translate(-50%, 0);
}
.win_banner > p, .win_banner > div, .win_banner > a, .win_banner > h1, .win_banner > h2 {
	position:relative;
	z-index:99;
	color:#fff;
}
.win_banner .date{
	background: #fff;
	border-radius: 10px;
	color: var(--font-color);
	display: flex;
	width: 200px;
	margin: 20px auto;
	height: 60px;
	justify-content: center;
	align-items: center;
	cursor: default;
	user-select: none;
}
.win_banner .bigtext{
	font-size:60px;
	line-height: 68px;
	font-weight: 500;
	width:60%;
	user-select:none;
}
.win_banner h1{
	font-size:60px;
	font-weight: 500;
}
.prize_view{
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.prize_view .image{
	width:400px;
	max-width: 100%;
}
.prize_view .text{
	font-family: 'The Girl Next Door';
	font-size: 24px;
	transform: translateY(-25px);
}
/*----------------------------------*/
.activ_inputs{
	display:flex;
	gap: 20px;
}
.activ_inputs > input[type=number]{
	appearance: none;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	border: 1px solid #ccc;
	margin: 20px 0;
	height: 70px;
	padding: 20px;
	background: #fff;
	outline: none;
	width: 100%;
	border-radius: 20px;
	-moz-appearance: textfield;
}
.activ_inputs > input[type=number]::-webkit-outer-spin-button,
.activ_inputs > input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*----------------------------------*/
#fastModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
#fastModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#fastModal h2 {
  margin-top: 0;
  font-size: 20px;
}
#fastModal p {
  margin: 15px 0;
  font-size: 16px;
}
/*--------------------------------------------*/
@media (max-width: 768px) {
	body {
		padding-top: 80px;
	}
	body.pro nav .menugroup{
		display: none;
	}
	.stickyBlock.sticky{
		width: 100%;
		position: fixed;
		bottom: 0px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1000;
		background: #fff;
		border-top: 1px solid var(--main-color);
	}
	.stickyBlock.sticky > .participate_block{
		margin:10px 0;
	}
	.prize_view{
		flex-direction: column;
	}
	.prize_view > .curve{
		transform: rotate(90deg);
		margin: 50px 0;
	}
	.win_banner .bigtext {
		font-size: 32px;
		line-height: 50px;
		font-weight: 500;
		width: 100%;
		padding: 0 20px;
		text-align: center;
	}
	.win_banner h1 {
		font-size: 32px;
		line-height: 50px;
	}
	.banner.home picture{
		text-align: center;
	}
	.banner.home img{
		object-fit: contain;
		object-position: center;
		width: calc(100% - 40px);
		border-radius:20px;
		vertical-align: top
	}
	section.double > div.mini_block{
		width:100%;
	}
	div.mini_block > div {
		left: 20px;
		top: 15px;
		max-width: 60%;
	}
	div.mini_block > a {
		left: 20px;
		bottom: 20px;
		padding: 3px 10px;
		height: 30px;
		font-size: 14px;
	}
	section.double div.mini_block .title {
		font-size: 16px;
		line-height: 18px;
	}
	section.double div.mini_block .txt {
		font-size: 12px;
		line-height: 18px;
	}
	.participate {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: 8fr 1fr 2fr repeat(5, 1fr);
		grid-column-gap: 10px;
		grid-row-gap: 10px; 
	}
	.participate > div:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
	.participate > div:nth-child(2) { grid-area: 2 / 1 / 3 / 3; }
	.participate > div:nth-child(3) { grid-area: 3 / 1 / 4 / 3; }
	.participate > div:nth-child(4) { grid-area: 4 / 1 / 9 / 2; }
	.participate > div:nth-child(5) { grid-area: 4 / 2 / 5 / 3; }
	.participate > div:nth-child(6) { grid-area: 5 / 2 / 6 / 3; }
	.participate > div:nth-child(7) { grid-area: 6 / 2 / 7 / 3; }
	.participate > div:nth-child(8) { grid-area: 7 / 2 / 8 / 3; }
	.participate > div:nth-child(9) { grid-area: 8 / 2 / 9 / 3; }
	.participate .example > img {
		max-width: 100%;
	}
	.login_container{
		padding: 50px 20px;
	}
	.login_container h1{
		font-size: 52px;
	}
	.win_banner {
		height: 650px;
	}
	.win_banner > img{
		object-fit: cover;
		max-width: 100%;
	}
	.contact_page{
		flex-direction: column;
	}
	.contact_page > div {
	  width: 100%;
	}
	.receipt_example{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 50px;		
	}
	main > .wrapper{
		padding: 0 20px;
	}
	main.vh, .box_holder{
		min-height: calc(100% - 480px);
	}
	#reside {
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: #000000;
		opacity: 0.7;
		z-index: 100;
	}
	section.about{
		padding: 20px;
	}
	section.about_campaign{
		flex-direction:column;
	}
	section.about_campaign > div{
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	section.about_campaign > div img{margin:0;}
	section.double{
		flex-direction:column;
	}
	section.subscribe {
		padding: 20px 0 80px 0;
	}
	section.subscribe > .wrapper, section.about > .wrapper, section.support > .wrapper{
		flex-direction:column;
		align-items: center;
	}
	section.subscribe > .wrapper{
		gap:30px;
		padding: 0 20px;
	}
	section.filter{
		width: 100%;
	}
	main .filter{
		flex-direction:column;
	}
	section.subscribe > .wrapper > div, section.about > .wrapper > div, section.support > .wrapper > div{
		width:100%;
	}
	section.contact > .wrapper {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(7, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 10px;
	}
	section.contact > .wrapper > div:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
	section.contact > .wrapper > div:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
	section.contact > .wrapper > div:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
	section.contact > .wrapper > div:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
	section.contact > .wrapper > div:nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
	section.contact > .wrapper > div:nth-child(6) { grid-area: 6 / 1 / 7 / 2; }
	section.contact input[type="text"], section.contact textarea{
		height: 50px;
	}
	section.subscribe > .wrapper > div{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap:20px;
	}
	section.subscribe input[type="text"]{
		height: 50px;
	}
	section.subscribe input[type="submit"]{
		position: relative;
		height: 50px;
	}
	section.slider p {
		display: none;
	}
	section.promotions p{
		width:90% !important;
		font-size: 18px !important;
		line-height: 24px !important;
	}
	section.slider div.holder{
		padding: 30px 20px;
		flex-direction: column;
		gap: 20px;
	}
	section.slider .rounds{
		flex-direction: row;
		justify-content: center;
		gap: 30px;
	}
	section.slider div.holder > div{
		width: 100%;
	}
	section.slider h2{
		font-size: 40px;
		line-height: 1.5;
	}
	section.promotions > div{
		display: flex;
		flex-direction: column;
		align-items: center;
		aspect-ratio: 4 / 6;
		text-shadow: 1px 5px 3px rgba(0, 0, 0, 0.6);
		padding: 60% 30px 20px 30px !important;
	}
	section.promotions a.button{
		position: absolute;
		height: 100% !important;
		width: 100%;
		left: 0;
		top: 0;
		border: none;
		border-radius: 20px;
		opacity: 0;
	}
	section.support > .wrapper > div{
		padding: 30px 0 30px 120px;
	}
	section.support .ico{
		margin: 10px;
	}
	.profile .left_bar {
		width: 300px;
		height: 100%;
		max-width:80%;
		gap: 20px;
		position: fixed;
		background: #fff;
		z-index: 999;
		top: 0;
		left: -300px;
		transition: all 0.2s linear;
	}
	.profile .fields .grid{
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.profile .fields .grid > div{
		grid-area: unset !important;
	}
	.profile .tabcontent .tholder{
		overflow-x: scroll;
	}
	body.opened .profile .left_bar {
		left: 0px;
		z-index: 9999;
	}
	.activ_inputs{
		gap: 10px;
	}
	.activ_inputs > input[type=number]{
		padding: 0px;
	}
	.countdown {
		gap: 10px;
		margin: 20px 0;
	}
	.countdown > div{
		width:110px;
		height:110px;
	}
	.countdown span{
		font-size:40px;
	}
	.banner.notpart img{
		width:100%;
		object-position: top;
	}
	.banner.notpart div.wrapper {
		padding: 0px 20px;
	}
}