html, body {
  margin: 0px;
  padding: 0px;
  background: #171a1e;
  width: 100%;
  color: white;
  font-family: "Roboto", sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 16px;
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #363636;
  border-radius: 6px;
}

/* Handle     border-radius: 5px; 202020 #191d24*/ 
::-webkit-scrollbar-thumb {
  background: #2d4059;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff5722;
}


#ring-holder{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* background-color: rgba(0,0,0,0.4); */
}

.lds-ring {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20em;
  text-align: center;
  width: 10em;
  height: 10em;
  padding: 0.6em;
    border-radius: 10px 10px 10px 10px;
      background: #222831;
      display: flex;
        justify-content: center;

}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 5em;
  height: 5em;
  margin-top: 3em;
  border: 8px solid #ff5722;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ff5722 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
