@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400, 500&display=swap');

html, body {
  margin:0;
  padding:0;
}

body {
  font-weight: 300;
  font-size:13px;
  overflow-x:hidden;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}


#dataset {
  padding: 10px;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    margin: -4px 0 0 -4px;
  }


 


  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

 

#loading {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99999;
    top:0px;
    left:0px;
    display: flex;
    justify-content: center;
 
    -webkit-transition:  0.2s linear;
	-moz-transition:  0.2s linear;
	-o-transition: 0.2s linear;
	transition:  0.2s linear;
}

 

.red {
 border-left:2px solid #fb0000;

}

.dark .red { 
  border-left:2px solid #820000;

}

.bg_loading {
  padding-top: 200px;
}

#loading.end {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

#dataset {
    z-index: 2;
}


.user {
  margin-bottom: 5px;
  border-radius:4px;
  padding: 1rem 1rem;
}


.user .name {
  font-weight: 400;

  overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.user .username {
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.user  .top {
  margin-bottom: 3px;

  font-size: 12px;
}


.user .bottom {
  font-size: 11px;
  align-content: flex-end;
}
 

a {
  text-decoration: none!important;
}

.line {
  vertical-align: top;
align-items: flex-end;
display: flex;
justify-content: space-between;
}

#title {
  font-weight: 500;
  font-size: 16px;
  padding-top:10px;
  margin-bottom: 10px;
}

#hint {
  margin-bottom: 10px;
  font-size: 12px;
}

.failed {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border-radius: 4px;
  padding-bottom: 20px;
  padding-top: 50px;
}

.failed .text {
  margin-top: 10px;
}

.failed .icon {
  position: relative;
  width: 60px;
  height: 30px;
  margin:0 auto;
}

.failed .icon:after, .failed .icon:before {
  top:0px;
  left:0px;
  content:'';
  width: 100%;
  height: 10px;
  position: absolute;
  background: #fb0000;
  border-radius: 4px;
}

.failed .icon:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.failed .icon:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.dark .failed .icon:after, .dark .failed .icon:before {
background:  #820000;
}  

.hint2 {

  font-size: 13px;
  padding:10px;
  line-height: 16px;

}