@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
}

*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  border-radius: 6px;
}

*::-webkit-scrollbar-track {
  background: #111;
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 6px;
  border: 2px solid #111;
}
*::-webkit-scrollbar-thumb:hover {
  background: #444;
}

a {
  color: #3f6fb8;
  -webkit-text-decoration: 1px dotted underline;
          text-decoration: 1px dotted underline;
  transition: 100ms;
}
a:hover {
  color: #1a75ff;
  -webkit-text-decoration: 1px solid underline;
          text-decoration: 1px solid underline;
}

@media screen and (max-width: 900px) {
  body #main {
    margin: 80px 0px 40px 0px;
    width: 100%;
    min-height: calc(100% - 120px);
  }
}
body {
  color: #fff;
  background: #111;
  position: absolute;
  inset: 0px;
  overflow-x: hidden;
}

#load {
  position: absolute;
  inset: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 300ms ease-out;
  background: #111;
  z-index: 10;
}
#load #bar {
  width: 30%;
  height: 7px;
  background: #0c0c0c;
  border-radius: 7px;
}
#load #bar div {
  width: 0%;
  height: 7px;
  background: #181818;
  border-radius: 7px;
  transition: width 250ms ease-out;
}

#main {
  width: calc(100% - 30px);
  min-height: calc(100% - 30px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(34, 34, 34, 0.5333333333);
  border-radius: 15px;
  padding: 15px;
}

#baseinfo {
  display: flex;
  height: 210px;
  width: 100%;
  margin: 30px;
  justify-content: space-around;
  align-items: center;
}
#baseinfo span {
  overflow: hidden;
  flex-grow: 1;
  margin-right: 10px;
}
#baseinfo span h1 {
  margin: 6px 0px;
  height: 48px;
  overflow: hidden;
}
#baseinfo span h4 {
  margin: 0px;
}

#scorecontainer {
  width: 170px;
  height: 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#scorecontainer:hover #score, #scorecontainer:hover #score h1 {
  opacity: 0;
}
#scorecontainer:hover #breakdown, #scorecontainer:hover #info {
  opacity: 1;
  pointer-events: auto;
}
#scorecontainer #score, #scorecontainer #breakdown, #scorecontainer #background {
  position: absolute;
  width: 170px;
  height: 170px;
  bottom: 20px;
  top: 0px;
  left: 0px;
  transition: all 100ms ease-in-out;
}
#scorecontainer #score h1, #scorecontainer #breakdown h1, #scorecontainer #background h1 {
  font-size: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -67px;
  position: absolute;
  transition: all 100ms ease-in-out;
}
#scorecontainer #breakdown {
  opacity: 0;
}
#scorecontainer #info {
  pointer-events: none;
  position: fixed;
  top: 95px;
  right: 125px;
  width: 340px;
  height: 170px;
  opacity: 0;
  transition: all 100ms ease-in-out;
  font-size: 13px;
}
#scorecontainer #info span {
  margin: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#scorecontainer #info span:nth-child(1) span {
  background: #FF5151;
}
#scorecontainer #info span:nth-child(2) span {
  background: #FFBC51;
}
#scorecontainer #info span:nth-child(3) span {
  background: #D3FF51;
}
#scorecontainer #info span:nth-child(4) span {
  background: #68FF51;
}
#scorecontainer #info span:nth-child(5) span {
  background: #51FFA8;
}
#scorecontainer #info span:nth-child(6) span {
  background: #51EAFF;
}
#scorecontainer #info span:nth-child(7) span {
  background: #517CFF;
}
#scorecontainer #info span:nth-child(8) span {
  background: #9151FF;
}
#scorecontainer #info span .percentage {
  width: 25px;
  border-radius: 3px;
  height: 6px;
  background: #111;
  margin: 5px;
}
#scorecontainer #info span .percentage span {
  height: 6px;
  border-radius: 3px;
  width: 0px;
  max-width: 25px;
}

#chartcontainer {
  position: relative;
  margin-left: 5px;
}
#chartcontainer canvas {
  position: absolute;
}
#chartcontainer canvas#chart {
  top: 10px;
  left: 50px;
}
#chartcontainer .container {
  position: absolute;
  padding: 4px;
  transform: translateX(50px);
}
#chartcontainer .container span {
  opacity: 0;
  width: 2px;
  height: 2px;
  border-radius: 3px;
  transition: opacity 100ms ease-out;
  display: block;
}
#chartcontainer:hover .container span {
  opacity: 1;
}
#chartcontainer p {
  margin: 0px;
  font-size: smaller;
  color: #444;
  text-align: center;
  font-weight: bold;
  position: absolute;
}
#chartcontainer #x {
  bottom: -15px;
  transform: translateX(-50%);
  left: 50%;
}
#chartcontainer #y {
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  left: -25px;
}
#chartcontainer #name {
  top: -20px;
  transform: translateX(-50%);
  left: 50%;
  font-size: small;
}
#chartcontainer #hover {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #222;
  background: #111;
  z-index: 1;
  transition: opacity 100ms ease-in-out;
  white-space: nowrap;
  font-size: smaller;
  pointer-events: none;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5333333333);
}/*# sourceMappingURL=index.css.map */