body {
  font-family: "Dongle", sans-serif;
  font-family: "Nunito Sans", sans-serif;
  overflow-y: hidden;
}
.bookmark-form {
  background-image: url("../img/WhatsApp\ Image\ 2021-11-11\ at\ 1.44.39\ PM.jpeg");
  background-position: center center;
  background-size: cover;

  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

#siteNameAlert,
#siteUrlAlert {
  display: none;
}

#btnDown {
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#btnTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  display: none;
}


/* loading screen */
#loading{
    background-color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #000;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  