#modal-loading {
  background-color: hsla(0, 0%, 4%, 0.45);
}
#modal-loading div {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  background-color: #de9e48;
  background: -webkit-gradient(linear, left top, left bottom, from(#de9e48), to(#CE8625));
  background: -webkit-linear-gradient(top, #de9e48, #CE8625);
  background: -moz-linear-gradient(top, #de9e48, #CE8625);
  background: -ms-linear-gradient(top, #de9e48, #CE8625);
  background: -o-linear-gradient(top, #de9e48, #CE8625);
  color: #0B0A0A;
}
#modal-loading div a,
#modal-loading div label,
#modal-loading div i {
  color: #0B0A0A;
}
#modal-loading div .fa {
  -webkit-animation: loading-spin 1s infinite;
  -moz-animation: loading-spin 1s infinite;
  animation: loading-spin 1s infinite;
}
#modal-loading div label {
  font-size: 0.8em;
  margin: 5px auto;
}
#modal-loading.reveal {
  z-index: 999999 !important;
}
#modal-loading .button-modalFunction {
  background-color: #0B0A0A;
  color: #CE8625;
  border: 1px solid #CE8625;
}
#modal-loading .button-modalFunction:focus,
#modal-loading .button-modalFunction:active {
  background-color: #0B0A0A;
  color: #CE8625;
}
#modal-loading .button-modalFunction:hover {
  background-color: #000000;
  color: #CE8625;
  border: 1px solid #FFFFFF;
}
#modal-loading .button-modalFunction.is-active {
  background-color: #0B0A0A;
  color: #000000;
  border: 1px solid #CE8625;
}
#modal-loading .button-modalClose {
  background-color: #CE8625;
  color: #0B0A0A;
  border: 2px solid #0B0A0A;
  transition: all 0.2s ease-in-out;
}
#modal-loading .button-modalClose:focus,
#modal-loading .button-modalClose:active {
  background-color: #CE8625;
  color: #0B0A0A;
}
#modal-loading .button-modalClose:hover,
#modal-loading .button-modalClose.is-active {
  background-color: #CE8625;
  color: #0B0A0A;
  border: 2px solid #FFFFFF;
}
@-webkit-keyframes loading-spin {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(359deg);
    transform: rotateY(359deg);
  }
}
@keyframes loading-spin {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(359deg);
    transform: rotateY(359deg);
  }
}
