/*reset*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, menu, nav, output, ruby, section,
summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main {display: block;}

ol, ul {list-style: none;}
blockquote, q {quotes: none;}
img{
  max-width: 100%; 
  height: auto; 
  pointer-events: none;
}
a{text-decoration: underline;}
a:hover{cursor: pointer;}
*::-webkit-input-placeholder {color: #a9a9a9; opacity: 1;}
*:-moz-placeholder {color: #a9a9a9; opacity: 1;}
*::-moz-placeholder {color: #a9a9a9; opacity: 1;}
*:-ms-input-placeholder {color: #a9a9a9; opacity: 1;}
*{margin: 0; padding: 0;}
*{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
*{
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Стандартный синтаксис */
}
button,input,a{outline: none;}
button, input, select{-webkit-appearance: none; -moz-appearance: none; appearance: none;}
html{
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased !important;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


html,
body{
  overflow: hidden;
}

body{
  background: #2d111d;
  position: relative;
  height: 100vh;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;

  position: absolute;
  width: 100%;
  height: 100%;
}



/*snow*/
#snow{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
  z-index: 4;
}
.snowflake {
	position: absolute;
	width: 10px;
	height: 10px;
	background: linear-gradient(white, white);
	border-radius: 50%;
	filter: drop-shadow(0 0 10px white);
}




.scale_bg{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  
}
.main_bg{
  background: #2d111d;
  position: relative;
  width: 100%;
  min-width: 2166px;
  min-height: 1238px;
}
.main_bg img{
  display: block;
  width: 100%;
  max-width: none;
}


.logo{
  position: absolute;
  width: 16%;
  top: 50%;
  left: 50%;
  transform: translate(-170%, -231%);
}
.logo:after{
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/logo_active.png) 50% 50% / cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeLogo 2.5s infinite;
}
@keyframes fadeLogo {
  0% {
      opacity: 0; /* Невидимый */
  }
  50% {
      opacity: 1; /* Полностью видимый */
  }
  100% {
      opacity: 0; /* Снова невидимый */
  }
}

.man{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  transform: translate(-135%, -3%);
}
.speech{
  position: absolute;
  top: -28%;
  width: 40%;
  min-width: 120px;
  left: 23%;
  transform: rotate(-4deg);
}
.speech>img{
  display: block;
}
.speech>p{
  font-weight: 700;
  text-transform: uppercase;
  /* font-size: 0.75vw; */
  font-size: clamp(10px, 0.77vw, 0.85vw);
  position: absolute;
  width: 80%;
  top: 10%;
  left: 10%;
}
@media screen and (max-aspect-ratio: 70/72) {
  .man{
    display: none;
  }
}
@media screen and (min-aspect-ratio: 150/51) {
  .man{
    bottom: -15%;
    top: auto;
  }
}

.ceil_lamp{
  position: absolute;
  width: 10%;
  top: 5%;
  right: 25%;
}
.ceil_lamp .ceil{
  display: block;
}
.ceil_lamp .light{
  width: 350%;
  position: absolute;
  top: 20%;
  left: -120%;
  animation: fadeLight 2.0s ease-in-out infinite;
}
@keyframes fadeLight {
  0% {
      opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
      opacity: 0.3;
  }
}
.ceil_lamp:nth-child(2){
  right: 42%;
}
.ceil_lamp:nth-child(2) .light{
  animation-delay: 0.3s;
}
.ceil_lamp:nth-child(3){
  right: 58%;
}
.ceil_lamp:nth-child(3) .light{
  animation-delay: 0.6s;
}

.main_table{
  position: relative;
  z-index: 5;
  height: 85%;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}


.wheel_body{
  position: relative;
  max-width: 664px;
  margin: 0 auto;
  width: auto;
  height: 85%;
  z-index: 4;
  /* aspect-ratio: 664 / 793; */
}
.wheel_body>img{
  display: block;
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  pointer-events: none;

  object-fit: contain;
  object-position: top;
}
.wheel_body:before{
  content: '';
  width: 130%;
  height: 100%;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/wheel_body_shadow.png) 50% 0% / 100% no-repeat;
  z-index: 1;
  opacity: 0.5;
}
/* @media screen and (max-aspect-ratio: 77/100) {
  .wheel_body{
    max-width: 85%;
    transform: translateX(-7%);
  }
  .wheel_body>img{
    height: auto;
  }
  .main_table{
    justify-content: center;
  }
} */
@media screen and (max-aspect-ratio: 77/100) {
  .wheel_body{
    width: 85%;
    transform: translateX(-7%);
    height: auto;
  }
  .wheel_body>img{
    height: auto;
  }
}
@media screen and (min-height: 1100px) {
  .wheel_body{
    height: auto;
  }
}

@media screen and (max-aspect-ratio: 360/600) {
  .logo{
    transform: translate(-65%, -205%);
  }
}
@media screen and (max-aspect-ratio: 340/600) {
  .main_table{
    /* height: 80%; */
    height: 60%;
    justify-content: space-between;
    top: 30%;
  }
}
@media screen and (min-width: 2500px) {
  .main_table{
    height: 80%;
  }
}

.wheel{
  position: absolute;
  top: 6%;
  left: 7%;
  width: 86.7%;
  z-index: 3;
}
#roulette{
  transform-origin: center;
  transition: transform 0s;
}

.cursor{
  position: absolute;
  top: 0;
  left: 46%;
  width: 8%;
  z-index: 4;
}

.lever_start{
  position: absolute;
  width: 13%;
  top: 20%;
  right: -11%;
  filter: drop-shadow(6px -6px 6px #fbfb00);
  cursor: pointer;
  animation: rotate-shadow 2s infinite ease;
}
.lever_start>img{
  display: none;
}
.lever_start>img:nth-child(1){
  display: block;
}
@keyframes rotate-shadow {
  0% {
    filter: drop-shadow(6px -6px 6px #fbfb00);
  }
  50% {
    filter: drop-shadow(-2px 2px 6px #fbfb00);
  }
  100% {
    filter: drop-shadow(6px -6px 6px #fbfb00);
  }
}
.lever_start.deactive{
  pointer-events: none;
  cursor: not-allowed;
}


.wheel_line{
  position: absolute;
  top: 0.5%;
  left: 0%;
  width: 100%;
  background: url(../img/wheel_line.png) 50% 50% / cover no-repeat;
  z-index: 3;
  animation: fadeLine 2.0s ease-in-out infinite;
}
.wheel_line:before{
  content: '';
  display: block;
  padding-top: 100%;
}
@keyframes fadeLine {
  0% {
      opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
      opacity: 0;
  }
}


.wheel_center{
  position: absolute;
  top: 31%;
  left: 37%;
  width: 27%;
  background: url(../img/wheel_center.png) 50% 50% / cover no-repeat;
  z-index: 5;
}
.wheel_center:before{
  content: '';
  display: block;
  padding-top: 100%;
}
.wheel_center p{
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5vh;
  line-height: 1.3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-weight: 700;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
}
.wheel_center p span{
  display: block;
  color: #ffd290;
  font-size: 3em;
  line-height: 1em;
}



.wheel_lamps{
  position: absolute;
  top: 3%;
  left: 3%;
  width: 94%;
  z-index: 4;
  pointer-events: none;
}
.wheel_lamps:before{
  content: '';
  display: block;
  padding-top: 100%;
}
.wheel_lamps .lamp{
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  top: 0;
  left: 0;
}
.wheel_lamps .lamp:before,
.wheel_lamps .lamp:after{
  content: '';
  width: 10%;
  height: 10%;
  position: absolute;
  top: -4.5%;
  left: 50%;
  transform: translateX(-50%);
}
.wheel_lamps .lamp:before{
  background: url(../img/wheel_lamp.png) 50% 50% / cover no-repeat;
}
.wheel_lamps .lamp::after{
  background: url(../img/wheel_lamp_on.png) 50% 50% / cover no-repeat;
  animation: fadeLamp 2.6s infinite;
  opacity: 0;
}
@keyframes fadeLamp {
  0% {
      opacity: 0; /* Невидимый */
  }
  9%{
    opacity: 1;
  }
  50%{
    opacity: 1;
  }
  100% {
      opacity: 0; /* Снова невидимый */
  }
}
.wheel_lamps .lamp:nth-child(1){
  transform: rotate(30deg);
}
.wheel_lamps .lamp:nth-child(2){
  transform: rotate(60deg);
}
.wheel_lamps .lamp:nth-child(3){
  transform: rotate(90deg);
}
.wheel_lamps .lamp:nth-child(4){
  transform: rotate(120deg);
}
.wheel_lamps .lamp:nth-child(5){
  transform: rotate(150deg);
}
.wheel_lamps .lamp:nth-child(6){
  transform: rotate(180deg);
}
.wheel_lamps .lamp:nth-child(7){
  transform: rotate(210deg);
}
.wheel_lamps .lamp:nth-child(8){
  transform: rotate(240deg);
}
.wheel_lamps .lamp:nth-child(9){
  transform: rotate(270deg);
}
.wheel_lamps .lamp:nth-child(10){
  transform: rotate(300deg);
}
.wheel_lamps .lamp:nth-child(11){
  transform: rotate(330deg);
}
.wheel_lamps .lamp:nth-child(1)::after{
  animation-delay: 0.2s;
}
.wheel_lamps .lamp:nth-child(2)::after{
  animation-delay: 0.4s;
}
.wheel_lamps .lamp:nth-child(3)::after{
  animation-delay: 0.8s;
}
.wheel_lamps .lamp:nth-child(4)::after{
  animation-delay: 1s;
}
.wheel_lamps .lamp:nth-child(5)::after{
  animation-delay: 1.2s;
}
.wheel_lamps .lamp:nth-child(6)::after{
  animation-delay: 1.4s;
}
.wheel_lamps .lamp:nth-child(7)::after{
  animation-delay: 1.6s;
}
.wheel_lamps .lamp:nth-child(8)::after{
  animation-delay: 1.8s;
}
.wheel_lamps .lamp:nth-child(9)::after{
  animation-delay: 2s;
}
.wheel_lamps .lamp:nth-child(10)::after{
  animation-delay: 2.2s;
}
.wheel_lamps .lamp:nth-child(11)::after{
  animation-delay: 2.4s;
}



.progress{
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 10;
}
.progress .item{
  width: calc(14.2% - 15px);
  height: 0;
  padding-bottom: calc(14.2% - 15px);
  position: relative;
  pointer-events: none;
}
.progress .item img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all ease-in-out .2s;
  display: none;
}
.progress .item .num{
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #f4dfaf;
  border-radius: 50%;
  background: rgba(150, 59, 146, 0.5);
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(16px, 5vw, 32px);
}
.progress .item.active{
  cursor: pointer;
  pointer-events: all;
}
.progress .item.active .num{
  opacity: 0;
}
.progress .item.active img{
  display: block;
}
.progress .item.active:hover img{
  margin-top: -15px;
}
.progress .item.deactive{
  pointer-events: none;
}


@media screen and (max-width: 480px) {
  .progress{
    gap: 6px;
  }
  .progress .item{
    width: calc(14.2% - 6px);
    padding-bottom: calc(14.2% - 6px);
  }
}
@media (min-aspect-ratio: 16/9) and (max-height: 550px) {
  .progress{
    max-width: 500px;
  }
}


/*COIN POPUP*/
.popupCoin{
  display: none;
  width: 30%;
  transform-origin: center;
  -webkit-perspective: 1800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.popupCoin:before{
  content: '';
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.coinBefore{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.coinBefore>img{
  width: 100%;
  max-width: 100%;
}
.coinAfter{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(-180deg);
  backface-visibility: hidden;
  /* background: linear-gradient(to bottom,  #ffc66b 0%,#feec86 50%,#ffc66b 100%); */
  background: #feec86;
  background: radial-gradient(ellipse at center,  #feec86 68%,#ffc439 69%);

  border-radius: 50%;
}
.rotateAnimate .coinBefore{
  animation: coinBefore 0.4s ease-in-out infinite;
}
.rotateAnimate .coinAfter{
  animation: coinAfter 0.4s ease-in-out infinite;
}
.scaleCoin{
  animation: coinScale 3s ease-in-out;
}
@keyframes coinScale {
  0%{
    width: 1%;
    opacity: 0;
  }
  5%{
    width: 5%;
    opacity: 1;
  }
  100%{
    width: 30%;
  }
}
@keyframes coinBefore{
  0%{transform: rotateY(0deg);}
  50%{transform: rotateY(180deg);}
  100%{transform: rotateY(0deg);}
}@keyframes coinAfter{
  0%{transform: rotateY(-180deg);}
  50%{transform: rotateY(0deg);}
  100%{transform: rotateY(-180deg);}
}

.coinOpened.popupCoin{
  transition: 3s ease-in-out;
  width: 400%;
}
.coinOpened .coinAfter{
  transition: 1s ease-in-out;
  transform: rotateY(0deg);
}
.coinOpened .coinBefore{
  transition: 1s ease-in-out;
  transform: rotateY(180deg);
}

.coinClosed.popupCoin{
  transition: 1s ease-out;
  width: 10%;
}
.coinClosed .coinAfter{
  transition-delay: 1s;
  transform: rotateY(180deg);
}
.coinClosed .coinBefore{
  transition-delay: 1s;
  transform: rotateY(0deg);
}

.coinClosed.hide{
  transition: 1s ease-out;
  top: 150%;
}


/*MODAL*/
.md-overlay{
  background: #feec86;
  transition: none;
}
.nifty-modal{
	max-width: 600px;
  width: 100%;
	height: 100%;
  text-align: center;
	display: flex;
	align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}
.nifty-modal.scroll{
  text-align: left;
	align-items: flex-start;
}
.md-content{
  width: 100%;
	background: transparent;
	padding: 30px 0;
	min-height: 100px;

  /* margin: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8); */
}
.calendar_content{
	font-size: 18px;
	line-height: 1.3em;
	font-weight: 400;
	border-radius: 40px;
	padding: 30px 30px 100px;
}
.calendar_content>b{
	font-size: 1.2em;
	font-weight: 700;
}
.calendar_content p{
  margin-bottom: 15px;
}
.calendar_content p a{
  font-weight: 700;
  text-decoration: none;
  color: orangered
}
.calendar_content h4{
  font-size: 24px;
  margin-bottom: 60px;
}
.md-close{
	color: #fff;
	background: #4ebbc2;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 26px;
	border-radius: 20px;
	position: absolute;
	z-index: 5;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
}
.nifty-modal{
	scrollbar-color: #ddb55f transparent;
	scrollbar-width: thin;
}
.nifty-modal::-webkit-scrollbar {
	width: 10px; /* Ширина всего элемента навигации */
}
.nifty-modal::-webkit-scrollbar-track {
	background: transparent; /* Цвет дорожки */
}
.nifty-modal::-webkit-scrollbar-thumb {
	background-color: #050c26; /* Цвет бегунка */
	border-radius: 20px; /* Округление бегунка */
	/* border: 3px solid #ddb55f; /* Оформление границ бегунка */
}
.nifty-modal::-webkit-scrollbar-thumb {
	background: #ddb55f;
	border-radius: 20px;
	/*border: 3px solid #ddb55f; */
}

.video_block{
  height: 0;
  padding-bottom: 56%;
  position: relative;
  background: #000;
  overflow: hidden;
}
.video_block iframe,
.video_block video,
.video_block embed,
.video_block .youtube{
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
}







/*gift*/
.pres_cont{
	margin-top: 20px;
}
.present{
	display: block;
}
.pres_cont>p{
	text-align: center;
	font-size: 18px;
}
.gift {
	position: relative;
	background: #50afd5;
	width: 70px;
	height: 45px;
	display: block;
	border-radius: 0px 0px 5px 5px;
	margin: 45px auto 0;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
  }
  .gift:before {
	width: 78px;
	height: 18px;
	content: '';
	background: #2a89ae;
	display: inline-block;
	position: relative;
	left: -4px;
	top: -13px;
	z-index: 20;
  }
  .gift:after {
	width: 12px;
	height: 61px;
	content: '';
	background: #ff3131;
	opacity: 95%;
	display: inline-block;
	position: relative;
	left: 29px;
	top: -38px;
	z-index: 20;
  }
  #bow {
	display: inline;
	opacity: 98%;
  }
  #bow:after {
	width: 10px;
	height: 18px;
	border-radius: 50px;
	border: 7px solid #ff3131;
	position: absolute;
	top: -32px;
	left: 35px;
	z-index: 999;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	content: '';
  }
  #bow:before {
	width: 10px;
	height: 18px;
	border-radius: 50px;
	border: 7px solid #ff3131;
	position: absolute;
	top: -32px;
	left: 11px;
	z-index: 999;
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
	content: '';
  }
  .boing {
	-webkit-animation-name: boing;
	animation-name: boing;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
  }
  @-webkit-keyframes boing {
	0% {
	  -webkit-transform: scale(1, 1) translateY(0);
	  transform: scale(1, 1) translateY(0);
	}
	10% {
	  -webkit-transform: scale(1.1, 0.9);
	  transform: scale(1.1, 0.9);
	}
	30% {
	  -webkit-transform: scale(0.9, 1) translateY(-65px);
	  transform: scale(0.9, 1) translateY(-65px);
	}
	50% {
	  -webkit-transform: scale(1.05, 0.9) translateY(0);
	  transform: scale(1.05, 0.9) translateY(0);
	}
	57% {
	  -webkit-transform: scale(1, 1) translateY(-7px);
	  transform: scale(1, 1) translateY(-7px);
	}
	64% {
	  -webkit-transform: scale(1, 1) translateY(0);
	  transform: scale(1, 1) translateY(0);
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }
  @keyframes boing {
	0% {
	  -webkit-transform: scale(1, 1) translateY(0);
	  transform: scale(1, 1) translateY(0);
	}
	10% {
	  -webkit-transform: scale(1.1, 0.9);
	  transform: scale(1.1, 0.9);
	}
	30% {
	  -webkit-transform: scale(0.9, 1) translateY(-65%);
	  transform: scale(0.9, 1) translateY(-65px);
	}
	50% {
	  -webkit-transform: scale(1.05, 0.9) translateY(0);
	  transform: scale(1.05, 0.9) translateY(0);
	}
	57% {
	  -webkit-transform: scale(1, 1) translateY(-7px);
	  transform: scale(1, 1) translateY(-7px);
	}
	64% {
	  -webkit-transform: scale(1, 1) translateY(0);
	  transform: scale(1, 1) translateY(0);
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }






/*preloader*/
/* .preloader{
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader:before{
  content: '';
  width: 140px;
  height: 100%;
  background: #ef4351;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -70px;
  z-index: 1;
}
.person_form{
  width: 473px;
  height: 562px;
  background: url(../img/form_bg.png) 50% 50% no-repeat;
  padding: 166px 10px 0;
  z-index: 5;
}

.form_title{
  text-align: center;
  margin-bottom: 30px;
}
.form_title span{
  padding: 3px 8px 0;
  display: inline-block;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  background: #ef4351;
  color: #fff;
}
.form_title span:before{
  content: '';
  width: 64px;
  height: 76px;
  background: url(../img/santa.png) 50% 50% no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin: -15px 5px -12px 0;
}

.main_form{
  max-width: 340px;
  margin: 0 auto;
}
.main_form input,
.main_form select,
.main_form button{
  display: block;
  width: 100%;
}
.main_form select,
.main_form input{
  border: 1px solid #000;
  outline: none;
  background: #fff;
  height: 56px;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align-last: center;
  border-radius: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #333;
}
.main_form select option{
  text-align: center;
}
.main_form select{
  background: #fff url(../img/select_arrow.png) center right 20px no-repeat;
  padding: 0 15px;
}
.main_form ::-webkit-input-placeholder {
  color: #333;
}
.main_form ::-moz-placeholder {
  color: #333;
}
.main_form :-moz-placeholder {
  color: #333;
}
.main_form :-ms-input-placeholder {
  color: #333;
}
.main_form :focus::-webkit-input-placeholder {
  color: transparent;
}
.main_form :focus::-moz-placeholder {
  color: transparent;
}
.main_form :focus:-moz-placeholder {
  color: transparent;
}
.main_form :focus:-ms-input-placeholder {
  color: transparent;
}
.button {
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0 auto;
  height: 58px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: linear-gradient(to right,  #0ec12c 0%,#40dc03 100%); 
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
}
.button:hover {
  background: linear-gradient(to right,  #40dc03 0%,#0ec12c 100%); 
}
.button:active{
  top: 2px;
}
.main_form labeL{
  display: block;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}
.main_form input:valid,
.main_form select:valid{
  background: #e9e9e9;
  border: 2px solid rgb(0, 202, 0);
} */


/* tests */
.reset_btn{
	position: fixed;
	top: 20px;
	left: 20px;
	padding: 10px;
	z-index: 999999;
}
.mus_btn{
	position: fixed;
	top: 80px;
	left: 20px;
	padding: 10px;
	z-index: 999999;
}
