html, body {
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0;
}

.logo_container {
  position: absolute;
  width: 10rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo::before {
  content: '';
  display: block;
  background-image: url('icons/logo.svg');
  background-repeat: no-repeat;
  width: 6.6rem;
  height: 6.6rem;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

.logo::after {
  content: '';
  display: block;
  background-image: url('icons/logo_text.svg');
  background-repeat: no-repeat;
  width: 6.6rem;
  height: 3rem;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

.spinner {
  margin: 0 auto 0;
  width: 5rem;
  text-align: center;
}

.spinner>div {
  width: 10px;
  height: 10px;
  background-color: #C7A381;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.init_message {
  position: relative;
  height: 0.7rem;
  top: -0.8rem;
  color: #777;
  visibility: hidden;
}

.init_message::after {
  content: '';
  display: block;
  position: relative;
  background-image: url('icons/init_text.svg');
  background-repeat: no-repeat;
  width: 6rem;
  height: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.enamad {
  position: absolute;
  cursor: pointer;
  width: 100px;
  height: 100px;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

.samandehi {
  position: absolute;
  cursor: pointer;
  width: 100px;
  height: 100px;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}