body {
  margin: 0;
  padding: 0;
  color: #343434;
  background-color: #161616;
}

* {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: rgba(150, 150, 150, 0.2);
}

*::-webkit-scrollbar-track {
  background: #00000000;
}

#app {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vx-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.vx-flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.vx-flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.vx-flex-column.center {
  justify-content: center;
  align-items: center;
}

.vx-flex_item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.vx-flex.center {
  justify-content: center;
  text-align: center;
  align-items: center;
}

.vx-flex.column_center {
  justify-content: center;
}

#appLoading {
  position: absolute;
  width: 42px;
  height: 42px;
  left: calc(50% - 21px);
  top: 40%;
  box-sizing: border-box;
}

#appLoading::after {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 50%;
  display: inline-block;
  border: solid;
  border-image: linear-gradient(90deg, #00c2dc 0%, #ffe600 50%, #1dad00 100%) 3;
  transform-origin: center;
  animation: vxRotate 1s linear infinite;
}

#appLoading::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: 'LetData';
  font-size: 12px;
  line-height: 42px;
  color: #1dad00;
  text-align: center;
  transform: scale(.75);
}

#appLoading.error::after {
  animation: none;
  border-image: linear-gradient(90deg, #dc0000 0%, #ffe600 50%, #ad0000 100%) 3;
}

#appLoading.error::before {
  content: 'error';
  color: #ff0000;
}

#appLoading.nothing::before {
  content: 'nothing';
  color: #00ffea;
}

#appLoading.nothing::after {
  animation: none;
  border-image: linear-gradient(90deg, #00ffff 0%, #ffe600 50%, #00d0ff 100%) 3;
}

#appLoading.hide {
  display: none;
}

#loadingError {
  position: absolute;
  width: 200px;
  left: -72px;
  top: 50px;
  text-align: center;
  font-size: 13px;
  color: #eeff01;
  cursor: pointer;
}

#loadingError:hover {
  color: #00f2ff;
}

#container {
  position: absolute;
  width: 330px;
  left: calc(50% - 150px);
  top: calc(50% - 100px);
  opacity: 0;
  animation: opacity .6s;
  animation-fill-mode: forwards;
}

#title {
  position: absolute;
  top: -60px;
  width: 330px;
  font-size: 18px;
  color: #999999;
  line-height: 30px;
}

#textdes {
  font-size: 14px;
  line-height: 22px;
}

#buttonSlt {
  position: absolute;
  width: 100px;
  height: 32px;
  left: 0;
  top: 0;
  border-radius: 6px;
  outline: none;
  background-color: #666666;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all .3s;
}

#buttonSlt:hover {
  background-color: #333333;
}

#appInput {
  position: absolute;
  width: 200px;
  height: 32px;
  left: 112px;
  top: 0;
  box-sizing: border-box;
  outline: none;
  background: #333333;
  border-radius: 6px;
  border: 1px solid #666666;
  color: #d2d2d2;
  padding-left: 12px;
}

#appButton {
  position: absolute;
  width: 50px;
  height: 28px;
  left: 260px;
  top: 2px;
  box-sizing: border-box;
  outline: none;
  background-color: #7777779c;
  border-radius: 6px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all .3s;
}

#appButton:hover {
  background-color: #333333;
}

@keyframes vxRotate {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes opacity {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}