.blur {
  display: none;
}
.preload {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 50%;
  left: 50%;
}

.buttonload {
  background-color: #4caf50; /* Green background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 24px; /* Some padding */
  font-size: 16px; /* Set a font-size */
}

/* Add a right margin to each icon */
.fa {
  margin-left: 12px;
  margin-right: 8px;
}

select:focus > option:checked {
  background: rgb(204, 204, 204) !important;
}

.submitBox {
  position: relative;
}

.spinner {
  /* display: none; */
  background-image: url("https://www.pushrcdn.com/dashboard/img/spinner.gif");
  width: 13px;
  height: 13px;
  /* transform: translate(-50%, -50%); */
}
.submitBackground {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 90%;
  width: 100%;
  height: 100%;
  background: rgb(243, 243, 243);
  z-index: 9000;
  transition: all 0.5s ease-out;
}
.submitVisible {
  visibility: visible;
  opacity: 0.6;
  transition: all 0.5s ease-in;
}
#step-contact {
  position: relative;
}

#errorMessageCaching {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #d84d4d;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
  z-index: 999;
  /* -webkit-transform: translate3d(-50%, 0, 0); */
}

#errorMessageCaching.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
