#loadingModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

#loadingModal .modal-content {
  max-width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 4rem;
  color: white;
}

#finishModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#finishModal .modal-content {
  width: 80%;
  max-width: 550px;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2em;
  background: #fff;
}

#finishModal .modal-content .inner {
  position: relative;
  padding: 70px 20px;
}

#finishModal i.bx-x {
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 2.5em;
  cursor: pointer;
}

#finishModal h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  #finishModal h1 {
    font-size: 1.5em;
  }
}

#closeModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#closeModal .modal-content {
  width: 80%;
  max-width: 550px;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2em;
  background: #fff;
}

#closeModal .modal-content .inner {
  position: relative;
  padding: 70px 20px;
}

#closeModal h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  #closeModal h1 {
    font-size: 1.5em;
  }
}
/*# sourceMappingURL=default.css.map */