/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
#content #header, 
#content #footer {
  display: none;
}

#content {
  margin-top: -16px;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 3%;
    z-index: 996;
    background: #FF8200;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 28px;
    line-height: 0;
  }
  .back-to-top:hover {
    background: #f5bb44;
    color: black;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

.hide {
  display: none !important;
}

.popup-load {
  position: fixed;
  top: 0;
  width: 100%;
  height: -webkit-fill-available;
  left: 0;
  z-index: 999;
}

.donut-container {
  position: relative;
  margin-top: 30%;
  z-index: 99999;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 4rem;
}

.donut {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.3rem solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  animation: 1.5s spin infinite linear;
}

.donut-container .img-load {
  width: 40px;
  position: absolute;
  top: 13px;
  text-align: center;
  left: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-resend {
  float: right;
  position: absolute;
  right: 10px;
  top: 0px;
  margin-top: 4px;
  font-size: 12px;
}

.btn-resend button {
  width: 100%;
  padding: 6px 20px;
}

.new-successful a {
  margin-top: 10%;
  display: block;
  font-size: medium;
}

.new-successful {
  text-align: center;
}

.account-link {
  text-decoration: underline;
  font-size: small;
  color: #ff8200;
}