*,
*::beofre,
*::after{
	margin: 0;
	padding: 0;
}

html, body{
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-overflow-scrolling: none;
	margin: 0;
	padding: 0;
	height: 85vh;
	width: 100vw;
	background-color: #444;
	color: white;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html::-webkit-scrollbar {
    display: none;
}

a{
	text-decoration: none;
}

.wrapper{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100vw - 2px);
	height: calc(100% - 2px);
	margin: 0;
	padding: 0;
}

.pulsador{
	height: 40%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: white;
	border: 0;
	margin: 0;
	padding: 0;
	touch-action: pan-x pan-y;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pulsador > .p1{
	height: 80%;
	width: 80%;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	background-color: #666666;
}
.pulsador:first-child{
	margin-bottom: 2rem;
}

#location{
	width: 100vw;
	text-align: center;
	font-weight: bold;
	margin: 1rem 0 0 0;
}

#p1.activo{
	background-color: #004a9a;
}

.loader {
	width: 64px;
	height: 64px;
	position: relative;
	background: #FFF;
	border-radius: 50%;
	transform: rotate(45deg);
	animation: rotate 2s linear infinite;
  }
  .loader:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 30px;
	background: #FF3D00;;
	transform: skew(5deg , 60deg) translate(-50%, -5%);
  }

  .loader:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #FFF;
	transform:translate(-50% , -50%);
  }

  @keyframes rotate {
	0% { transform: rotate(45deg)}
	30% , 50% , 70%  { transform: rotate(230deg)}
	40% , 60% , 80% { transform: rotate(240deg)}
	100% {  transform: rotate(245deg)}
 }

 .wrapper-code{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 80vh;
	margin: 0;
	padding: 0;
 }

 .div-code{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80%;
	margin: 0;
	padding: 0;
 }

 .code-input{
	height: 3rem;
	width: 100%;
	border-radius: 3rem;
	border-style: none;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1rem;
	padding: 1rem;
	margin: 0 0 2rem 0;
	color: #004a9a;
 }
 .code-input::placeholder{
	color: #DDDDDD;
	letter-spacing: .3rem;
 }
 .code-input:focus{
	outline:none !important;
 }


 .movil-input{
	height: 3rem;
	width: 100%;
	border-radius: 3rem;
	border-style: none;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .5rem;
	padding: 1rem;
	margin: 0 0 2rem 0;
	color: #004a9a;
 }
 .movil-input::placeholder{
	color: #DDDDDD;
	letter-spacing: .3rem;
 }
 .movil-input:focus{
	outline:none !important;
 }


 .button-input{
	height: 4rem;
	width: 80%;
	border-radius: 2rem;
	border-style: none;
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: .2rem;
	background-color:#004a9a;
	color: white;
 }

 .spinner {
	width: 48px;
	height: 48px;
	background: #FFF;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
  }
  .spinner::after {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 6px;
	top: 10px;
	width: 12px;
	height: 12px;
	color: #004a9a;
	background: currentColor;
	border-radius: 50%;
	box-shadow: 25px 2px, 10px 22px;
  }
  
  @keyframes rotation {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  } 