/*popup css*/
.popup__container{
	position: fixed;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: -2;
	font-family: Roboto Bold, sans-serif;
}
.popup__container.active{
	z-index: 9999;
	opacity: 1;
}
.popup__form{
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 305px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 14px;
	padding: 27px 13px 31px 13px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
.popup__toptext{
	
	font-size: 16px;
	line-height: 16px;
	margin-bottom: 10px;
	color:#000;
	text-align: center;
}
.popup__input{
	/*font-size: 24px;*/
	font-size: 18px;
	border-radius: 50px;
	text-align: center;
	color: #000;
	
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #B6B6B6;
	width: 100%;
	outline: 0;
	outline-offset: 0;
}
.popup__centraltext{
	text-align: center;
	display: block;
	margin-top: 9px;
	margin-bottom: 9px;
	font-family: Roboto Light, sans-serif;
	font-weight: lighter;
	font-size: 10px;
	
	transition: 0.3s opacity;
	opacity: 1;
}
.popup__centraltext.hide{
	opacity: 0;
}
.popup__links{
	color:#FF0000;
}
.popup__button{
	box-shadow: none;
	cursor: pointer;
	background: #FFD7B2;
	border-radius: 50px;
	font-size: 18px;
	width: 100%;
	color: #050505;
	/* border: 1px solid #FFC700; */
	padding-top: 8px;
	padding-bottom: 8px;
	font-weight: bold;
	/*text-transform: uppercase;*/
}


.popup__input::-webkit-input-placeholder       {color: #7E7E7E; transition: color 0.3s ease;}
.popup__input::-moz-placeholder                {color: #7E7E7E; transition: color 0.3s ease;}
.popup__input:-moz-placeholder                 {color: #7E7E7E; transition: color 0.3s ease;}
.popup__input:-ms-input-placeholder            {color: #7E7E7E; transition: color 0.3s ease;}

.popup__input:focus::-webkit-input-placeholder {color: #040404; transition: color 0.3s ease;}
.popup__input:focus::-moz-placeholder          {color: #040404; transition: color 0.3s ease;}
.popup__input:focus:-moz-placeholder           {color: #040404; transition: color 0.3s ease;}
.popup__input:focus:-ms-input-placeholder      {color: #040404; transition: color 0.3s ease;}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
    box-shadow: none;
}


/***LOADER****/
@keyframes element__fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loader {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: url("../img/icon-spinner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33%;
  animation: element__fade 0.2s;
}
@keyframes element__fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/***END LOADER****/
/*end popup css*/



@media screen and (min-width:360px) {

}

@media screen and (min-width:360px)and (min-height:623px) {

}

@media screen and (min-width:374px) {
	.popup__form{
		padding :40px 13px 40px 13px;
		max-width: 345px;
	}
	.popup__toptext{
		font-size: 18px;
	}
	.popup__input{
		font-size: 20px;
	}
	.popup__centraltext{
		font-size: 12px;
	}
	.popup__button{
		font-size: 20px;
	}
}

@media screen and (min-width:567px)and (min-height:0px) {
	.popup__form{
		padding :20px 10px;
		max-width: 305px;
	}
	.popup__toptext{
		font-size: 16px;
	}
	.popup__input{
		font-size: 18px;
	}
	.popup__centraltext{
		font-size: 10px;
	}
	.popup__button{
		font-size: 18px;
	}
}

@media screen and (min-width:768px)and (min-height:768px) {
	.popup__form{
		max-width: 510px;
		padding: 50px 60px 58px 60px;
	}
	.popup__toptext{
		font-size: 18px;
	}
	.popup__input{
		font-size: 23px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.popup__centraltext{
		font-size: 14px;
	}
	.popup__button{
		font-size: 27px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media screen and (min-width:719px)and (min-height:1065px) {

}

@media screen and (min-width:768px)and (min-height:904px) {

}

@media screen and (min-width:960px)and (min-height:423px) {

}

@media screen and (min-width:1023px)and (min-height:656px) {

}

@media screen and (min-width:1024px)and (min-height:1292px) {

}