body{
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.container{
  width: 100%;
  height: 100%;
}

.white{
  color: #ffffff;
}


h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
}

.flex-d{
  display: flex;
  align-items: center;
}

.ic1{
  font-size: 20px;
}

.ic2{
  font-size: 30px;
}

.ic3{
  font-size: 40px;
}

/* Inputs */
.field-wrap1{
  width: 100%;
}

.field-wrap1 p{
  font-size: 14px;
  color: #126;
  font-family: 'acme';
  font-weight: bold;
}

.field-wrap1 input{
  outline: none;
  border: 2px solid rgba(140,140,140,0.1);
  height: 30px;
  padding: 5px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 3px;
  font-size: 17px;
  width: 100%;
  color: #136;
}

.field-wrap1 input::placeholder{
  font-size: 13px;
  font-weight: normal;
  color: #ccc;
}



/* Buttons */
.button-pry{
  background: #2258FF;
  color: white;
  height: 30px;
  border: none;
  outline: none;
  border-radius: 9px;
  box-shadow: 0px 7px 14px rgba(0,0,0,0.18);
  padding: 22px 2px !important;
  transition: all 0.2 ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-pry:active{
  transform: translateY(3px);
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}



.button-pry ion-icon{
  font-size: 16px;
}

.button-pry span{
  margin-left: 3px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 3px;
}

/* Info, warnings (contaniers and styles) */

.info1{
  margin-top: 15px;
  background: rgba(60,200,10,0.2);
  padding: 6px;
  border-radius: 5px;
}

.info1 ion-icon{
  color: rgba(60,200,10,1);
}

.info1 span{
  margin-left: 3px;
  color: rgba(60,200,10,1);
  font-size: 14px;
}

.warn1{
  margin-top: 15px;
  background: rgba(250,10,10,0.2);
  padding: 6px;
  border-radius: 5px;
}

.warn1 ion-icon{
  color: rgba(250,10,10,1);
}

.warn1 span{
  margin-left: 3px;
  color: rgba(250,10,10,1);
  font-size: 14px;
}

/* margins */

.mt1{
  margin-top: 3px;
}

.mt2{
  margin-top: 5px;
}

.mt3{
  margin-top: 10px;
}

.mt4{
  margin-top: 15px;
}

/* snackbar */
.snackbar{
  background: #333;
  color: #fff;
  width: 80%;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 30%;
  z-index: 1000;
  left: 10%;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 2s ease;
}

.snackbar p{
  font-weight: bold;
  font-family: 'aleo';
  font-size: 13px;
}

.snackbar.show {
  animation: snackbarFade 4s ease forwards;
}

/* keyframes */
@keyframes snackbarFade {
  0% {
    opacity: 0;
    
  }

  25% {
    opacity: 1;
  }
  
  50% {
    opacity: 1;
    transform: translateY(30px);
  }
  
  75% {
    opacity: 1;
    transform: translateY(-30px);
  }
  
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
  
}

@media (min-width: 768px) {
  body {
    display: none;
  }
}