@font-face {
  font-family: UbuntuLight;
  src: url(auction_lib.php?file=font/ubuntu/Ubuntu-Light.ttf);
}
@font-face {
  font-family: UbuntuRegular;
  src: url(auction_lib.php?file=font/ubuntu/Ubuntu-Regular.ttf);
}
@font-face {
  font-family: UbuntuBold;
  src: url(auction_lib.php?file=font/ubuntu/Ubuntu-Bold.ttf);
}
@font-face {
  font-family: UbuntuMonoRegular;
  src: url(auction_lib.php?file=font/ubuntu/UbuntuMono-Regular.ttf);
}
@font-face {
  font-family: UbuntuMonoBold;
  src: url(auction_lib.php?file=font/ubuntu/UbuntuMono-Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  scroll-behavior: smooth;
  border-spacing: 0;
  border-collapse: separate;
}

div {
  /* // This breaks monaco's auto complete
  display:flex;
  flex-flow:row wrap;
  */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

a {
  text-decoration: none;
}

b {
  font-family: UbuntuBold;
}

body, html {
  font-family: UbuntuRegular;
  font-size: 1vw;
  width: 100%;
  height: 100%;
  color: #454545;
  background-color: white;
}
@media only screen and (orientation: landscape) and (min-width: 1280px) {
  body, html {
    font-size: 12.8px;
  }
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  body, html {
    font-size: 3.33333vw;
  }
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

#app {
  background-color: white;
  font-size: 1.2rem;
  line-height: 1.7rem;
  width: 100%;
  height: 100%;
}

.grid_list_1_1 {
  display: grid !important;
  grid-template-columns: 1fr;
}
.grid_list_1_2 {
  display: grid !important;
  grid-template-columns: 1fr;
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_1_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_list_2_1 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_2_1 {
    grid-template-columns: 1fr;
  }
}
.grid_list_2_2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_2_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_list_3_1 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_3_1 {
    grid-template-columns: 1fr;
  }
}
.grid_list_3_2 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_3_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_list_4_1 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_4_1 {
    grid-template-columns: 1fr;
  }
}
.grid_list_4_2 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_4_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_list_5_1 {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_5_1 {
    grid-template-columns: 1fr;
  }
}
.grid_list_5_2 {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_5_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_list_6_1 {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_6_1 {
    grid-template-columns: 1fr;
  }
}
.grid_list_6_2 {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .grid_list_6_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .slite_desktop_only {
    display: none;
  }
}

.slite_mobile_only {
  display: none;
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .slite_mobile_only {
    display: flex;
  }
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.dialog {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100dvw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  position: fixed;
}
@media screen and (orientation: portrait), screen and (max-width: 600px) {
  .dialog {
    align-items: start;
    overflow-y: auto;
  }
}