@import url(https://fonts.googleapis.com/css?family=Roboto:100);

html, body{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.loading-wrapper-contaner{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-wrapper-contaner img{
  position: absolute;
}
.loading-wrapper{
  top:0;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 9999;
  position: fixed;
  background-color: #121312;
}
#loading {
  display: inline-block;
  width: 140px;
  height: 140px;
  border:2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  border-top-color: #12FF80;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  position: relative;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}