html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
}
p, h1 {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  outline: none;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
input,
textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

[v-cloak] {
  visibility: hidden;
}

body {
  background-color: #170c08;
}

.flex-1 {
  flex: 1;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-modal-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.fx-modal-root .fx-modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.fx-modal-root .fx-modal-mask.fx-modal-mask-hidden {
  opacity: 0;
}
.fx-modal-root .fx-modal-wrap {
  position: relative;
}

.fx-modal-enter-active,
.fx-modal-leave-active {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fx-modal-enter-active .fx-modal-wrap,
.fx-modal-leave-active .fx-modal-wrap {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fx-modal-enter,
.fx-modal-leave-active {
  opacity: 0;
}
.fx-modal-enter .fx-modal-wrap,
.fx-modal-leave-active .fx-modal-wrap {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
