@import "https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;400;500;600&display=swap";
html {
  width: 100%;
  height: 100%;
  margin: 0; }
  html * {
    font-family: "Prompt"; }

body {
  width: 100%;
  height: 100%;
  margin: 0; }
  body * {
    font-family: "Prompt"; }

h1 {
  margin: 0; }

h2 {
  margin: 0; }

h3 {
  margin: 0; }

h4 {
  margin: 0;
  font-weight: 400; }

h5 {
  margin: 0; }

p {
  margin: 0;
  font-size: 14px; }

* {
  box-sizing: border-box; }

input:focus {
  outline: unset; }

button:focus {
  outline: unset; }

button[disabled="disabled"] {
  pointer-events: none;
  opacity: 0.5; }

.MarginAuto {
  margin: auto; }

.Container {
  min-height: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .Container h2 {
    margin-bottom: 16px;
    color: #07b339;
    font-family: sans-serif; }
  .Container .Description {
    text-indent: 24px;
    width: 100%;
    color: #acacac;
    margin-bottom: 12vh; }
  .Container .Login {
    background-color: #00c300;
    border: none;
    padding: 18px 64px;
    color: white;
    width: 100%;
    font-size: 18px; }
  .Container .LoginWrapper {
    text-align: center;
    padding: 25px; }

.Header {
  z-index: 1;
  top: 0;
  position: fixed;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  background-color: #1f2845;
  color: white; }
  .Header .TabBack {
    display: flex;
    padding-left: 20px;
    align-items: center; }
    .Header .TabBack img {
      height: 20px;
      padding: 0 8px 0 0;
      margin-right: 8px; }
    .Header .TabBack .tab-name {
      margin-left: 8px;
      display: flex;
      flex-direction: column; }
      .Header .TabBack .tab-name .tab-version {
        display: flex;
        align-items: center;
        width: fit-content;
        font-size: 10px;
        color: #999999;
        font-weight: 300; }
        .Header .TabBack .tab-name .tab-version .net-ststus-main {
          margin-left: 8px;
          z-index: 1; }
        .Header .TabBack .tab-name .tab-version .net-ststus-bet {
          margin-left: -3px; }
        .Header .TabBack .tab-name .tab-version .net-ststus-polling {
          margin-left: -3px; }
        .Header .TabBack .tab-name .tab-version .net-ststus-main, .Header .TabBack .tab-name .tab-version .net-ststus-bet {
          width: 6px;
          height: 6px;
          border-radius: 999px; }
          .Header .TabBack .tab-name .tab-version .net-ststus-main.off, .Header .TabBack .tab-name .tab-version .net-ststus-bet.off {
            background-color: #f81010; }
          .Header .TabBack .tab-name .tab-version .net-ststus-main.on, .Header .TabBack .tab-name .tab-version .net-ststus-bet.on {
            background-color: #4bd900; }
        .Header .TabBack .tab-name .tab-version .net-ststus-polling {
          width: 6px;
          height: 6px;
          border-radius: 999px; }
          .Header .TabBack .tab-name .tab-version .net-ststus-polling.off {
            background-color: #888888; }
          .Header .TabBack .tab-name .tab-version .net-ststus-polling.on {
            background-color: #ff9500; }
  .Header .TabName {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .Header .TabName .h4 {
      margin: auto; }
  .Header .TabDescription {
    padding-right: 20px; }

.Footer {
  bottom: 0;
  position: fixed;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 4px 24px;
  background-color: #1f2845;
  color: white; }
  .Footer .left-menu {
    display: flex;
    align-items: center; }
    .Footer .left-menu img {
      height: 20px;
      padding: 0 8px 0 0;
      margin-right: 8px; }

.Logout {
  width: 100%;
  background-color: red;
  color: white;
  padding: 18px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border: none;
  font-size: 6vw; }

.UserWrapper {
  display: flex;
  align-items: center; }
  .UserWrapper .ProfileName {
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .UserWrapper .ProfileName p {
      line-height: 21px; }
    .UserWrapper .ProfileName small {
      font-size: 12px; }
  .UserWrapper img {
    margin-right: 8px;
    min-height: 44px;
    min-width: 44px;
    max-height: 44px;
    max-width: 44px;
    border-radius: 50%; }

.modal-mask {
  position: fixed;
  z-index: 9900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: table;
  transition: opacity .3s ease; }
  .modal-mask .modal-wrapper {
    z-index: 999;
    display: table-cell;
    vertical-align: middle;
    padding: 10px; }
    .modal-mask .modal-wrapper .modal-container {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0px auto;
      background-color: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
      transition: all .3s ease; }
      .modal-mask .modal-wrapper .modal-container .m-body {
        padding: 10px; }
      .modal-mask .modal-wrapper .modal-container .m-footer {
        display: flex; }
        .modal-mask .modal-wrapper .modal-container .m-footer .button {
          border: none;
          padding: 8px 0;
          color: white;
          width: 50%; }
          .modal-mask .modal-wrapper .modal-container .m-footer .button.is-flat {
            color: black; }
          .modal-mask .modal-wrapper .modal-container .m-footer .button.is-success {
            background-color: #00c300; }
      .modal-mask .modal-wrapper .modal-container .modal-close {
        position: absolute;
        top: 10px;
        right: 16px;
        font-size: 20px; }
      .modal-mask .modal-wrapper .modal-container .modal-header {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px; }
      .modal-mask .modal-wrapper .modal-container .modal-body .loading-wrapper {
        display: flex;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.33);
        top: 0; }
      .modal-mask .modal-wrapper .modal-container .modal-body .modal-management {
        overflow: auto;
        max-height: 80vh;
        padding: 10px; }

.modal-enter {
  opacity: 0; }

.modal-leave-active {
  opacity: 0; }

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }
