*.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no_mouse_evt {
  pointer-events: none;
}

.copyrightMention {
  opacity: 1;
}

.bg_2d_ui_items {
  user-select: none;
  z-index: 35;
  /* opacity: 1.0; */
}

.bg_2d_items {
  user-select: none;
  /* opacity: 1.0; */
}

.welcomeUI {
  opacity: 1;
}

.decklistUI {
  opacity: 1;
}

.deckedUI {
  opacity: 1;
}

.selectHeroUI {
  opacity: 1;
}

.sideboardUI {
  opacity: 1;
}

.player_browser_2d_ui_items {
  user-select: none;
  z-index: 35;
  /* opacity: 1.0; */
}

.vs_screen_item {
  visibility: hidden;
}

.fab_ui_button_text {
  margin-top: 0.15vmin;
  padding-top: 0.15vmin;
}

.fab_login_ui {
  visibility: hidden;
}

.fab_ui_button_ctn {
  transform: translateX(-50%) translateY(-50%);
}

.fab_ui_button_overlay {
  position: fixed;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 35;
}

.fab_ui_popup_window_title {
  text-shadow: 0.2vmin 0.3vmin #000;
}

.fab_ui_popup_window {
  position: fixed;
  z-index: 36;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-color: rgba(30, 30, 30, 0);
}

.waiting_opponent_screen_item {
  /* visibility: hidden; */
  font-family: "Amanda Std";
  color: rgb(255, 255, 255);
  opacity: 1;
  position: fixed;
  z-index: 40;
  font-size: 4vmin;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  text-shadow: 2px 2px 2px black;
}

@font-face {
  font-family: Amanda Std;
  src: url("fab.otf");
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: black;
  cursor: url(cursor.cur), auto;
  overflow-y: hidden;
  overflow-x: hidden;
}

.ui2doverlay {
  background-color: rgba(120, 120, 120, 0.8);
  justify-content: center;
  display: flex;
  width: 80%;
}

.frameimg {
  margin-left: -1.2vmin;
  margin-right: -1.2vmin;
}

td.searchFilterIcon {
  text-align: center;
  padding-top: 3px;
  padding-bottom: 2px;
}

.scrollable {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.filter {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  background-color: rgba(50, 50, 50, 0.5);
}

.fixed {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
}

.glmask {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 17;
  background-color: rgba(200, 80, 10, 0.2);
}

.hoverBlue:hover {
  color: rgb(100, 120, 255);
}

.noevt {
  pointer-events: none;
}

.popup {
  position: absolute;
  font-weight: 600;
  color: rgb(230, 245, 255);
  font-size: 1.8vmin;
  font-style: italic;
  font-family: Amanda Std;
  z-index: 20;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  max-width: 50ch;
  border-color: rgb(100, 110, 120);
  border-style: solid;
  border-width: 1px 1px;
  border-radius: 1.5vmin;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.popup-right {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

.cardBrowserItem {
  visibility: hidden;
}

.slide-in {
  animation: slide-in 0.4s forwards;
  -webkit-animation: slide-in 0.4s forwards;
}

@keyframes slide-in {
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(0%);
  }
}
.slide-in-right {
  animation: slide-in-right 0.4s forwards;
  -webkit-animation: slide-in-right 0.4s forwards;
}

@keyframes slide-in-right {
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide-in-right {
  100% {
    -webkit-transform: translateX(-100%);
  }
}
.slide-up {
  animation: slide-up 0.4s forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
}
.slide-down {
  animation: slide-down 0.4s forwards;
}

@keyframes slide-down {
  100% {
    transform: translateY(0%);
  }
}
.dice {
  visibility: hidden;
  position: absolute;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.65);
  top: 50%;
  transform: translateY(-50%);
  width: 104px;
  height: 104px;
  border-radius: 10%;
  z-index: 99;
}

.dot {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}

.first-face {
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-face {
  display: flex;
  justify-content: space-between;
}

.second-face .dot:nth-of-type(2) {
  align-self: flex-end;
}

.third-face {
  display: flex;
  justify-content: space-between;
}

.third-face .dot:nth-of-type(1) {
  align-self: flex-end;
}

.third-face .dot:nth-of-type(2) {
  align-self: center;
}

.fourth-face, .sixth-face, .fifth-face {
  display: flex;
  justify-content: space-between;
}

.fourth-face .column, .sixth-face .column, .fifth-face .column {
  visibility: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fifth-face .column:nth-of-type(2) {
  justify-content: center;
}

.popuptitle {
  font-style: normal;
  font-weight: 1000;
  font-size: 2.3vmin;
  padding-bottom: 0.7ch;
}

.popuppartodd {
  padding: 1.5ch;
  background-color: rgba(0, 0, 0, 0.95);
}

.popupparteven {
  padding: 1.5ch;
  background-color: rgba(30, 30, 30, 0.95);
}

.popupparttop {
  border-top-left-radius: 1.5vmin;
  border-top-right-radius: 1.5vmin;
}

.popuppartbottom {
  border-bottom-left-radius: 1.5vmin;
  border-bottom-right-radius: 1.5vmin;
}

.extensionlogoimg {
  top: 50%;
  transform: translateY(50%);
}

/*
.fab_ui_button {
    --buttonShadowColor: rgba(0, 0, 0, 1.0);
    font: 2.0vmin Amanda Std;
    font-size: 3vmin;
    overflow: hidden;
    white-space: nowrap;
}

.fab_ui_label {
    --buttonShadowColor: rgba(0, 0, 0, 1.0);
    font: 2.0vmin Amanda Std;
    font-size: 3vmin;
    overflow: hidden;
    white-space: nowrap;
}
// */
.fab_ui_button {
  --buttonShadowColor: rgba(0, 0, 0, 1.0);
  font: 2vmin Amanda Std;
  overflow: hidden;
  white-space: nowrap;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 3vmin;
  text-shadow: 0.3vmin 0.3vmin 0.2vmin black;
  transform: translate(-50%, -50%);
  padding-inline: 2vmin;
  text-align: center;
  box-sizing: border-box;
  border-radius: 3vmin;
  line-height: 5vmin;
  min-width: 20vmin;
}

.fab_ui_label {
  --buttonShadowColor: rgba(0, 0, 0, 1.0);
  font: 2vmin Amanda Std;
  overflow: hidden;
  white-space: nowrap;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 3vmin;
  text-shadow: 0.3vmin 0.3vmin 0.2vmin black;
  transform: translate(-50%, -50%);
  padding-inline: 1vmin;
  text-align: center;
  box-sizing: border-box;
  border-radius: 3vmin;
  line-height: 5vmin;
}

.fab_ui_button:hover {
  animation: animate 2s linear infinite;
}

.fab_ui_button_orange {
  background: linear-gradient(90deg, rgba(255, 230, 8, 0.95), rgba(255, 20, 20, 0.96), rgba(255, 230, 8, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(255, 80, 80, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(255, 230, 8, 0.96);
}

.fab_ui_button_orange:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(255, 230, 8, 0.96), 0px 0px 1vmin 1vmin rgba(255, 80, 80, 0.96);
}

.fab_ui_button_red {
  background: linear-gradient(90deg, rgba(255, 8, 8, 0.95), rgba(255, 75, 20, 0.96), rgba(255, 8, 8, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(255, 121, 80, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(255, 8, 8, 0.96);
}

.fab_ui_button_red:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(253, 122, 61, 0.9607843137), 0px 0px 1vmin 1vmin rgb(255, 66, 66);
}

.fab_ui_button_blue {
  background: linear-gradient(90deg, rgba(40, 40, 250, 0.96), rgba(0, 0, 120, 0.96), rgba(40, 40, 250, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(111, 125, 255, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(0, 0, 120, 0.96);
}

.fab_ui_button_blue:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(111, 125, 255, 0.96), 0px 0px 1vmin 1vmin rgba(40, 40, 200, 0.96);
}

.fab_ui_button_green {
  background: linear-gradient(90deg, rgba(0, 202, 51, 0.96), rgba(0, 177, 59, 0.96), rgba(0, 202, 51, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(80, 248, 184, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(0, 177, 59, 0.96);
}

.fab_ui_button_green:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(80, 248, 184, 0.96), 0px 0px 1vmin 1vmin rgba(0, 202, 51, 0.96);
}

.fab_ui_button_lightgrey {
  background: linear-gradient(90deg, rgba(140, 140, 140, 0.96), rgba(40, 40, 40, 0.96), rgba(140, 140, 140, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(200, 200, 200, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(20, 20, 20, 0.96);
}

.fab_ui_button_grey {
  background: linear-gradient(90deg, rgba(40, 40, 40, 0.96), rgba(0, 0, 0, 0.96), rgba(40, 40, 40, 0.96));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(200, 200, 200, 0.96), 0px 0px 0.5vmin 0.5vmin rgba(10, 10, 10, 0.96);
}

.fab_ui_button_grey:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(200, 200, 200, 0.96), 0px 0px 1vmin 1vmin rgba(40, 40, 40, 0.96);
}

.fab_ui_button_clear {
  background: linear-gradient(90deg, rgba(40, 40, 40, 0), rgba(0, 0, 0, 0), rgba(40, 40, 40, 0));
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgba(200, 200, 200, 0), 0px 0px 0.5vmin 0.5vmin rgba(10, 10, 10, 0);
}

.fab_ui_button_clear:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgba(200, 200, 200, 0), 0px 0px 1vmin 1vmin rgba(40, 40, 40, 0);
}

.fab_ui_button_clearred {
  /* background: linear-gradient(90deg, rgba(155, 0, 0, 1.0), rgba(0, 0, 0, 0.0), rgba(155, 0, 0, 1.0)); // */
  background: rgba(110, 0, 0, 0.4);
  background-size: 200%;
  box-shadow: 0px 0px 0.25vmin 0.25vmin rgb(185, 0, 0), 0px 0px 0.5vmin 0.5vmin rgba(110, 0, 0, 0.5);
}

.fab_ui_button_clearred:hover {
  box-shadow: 0px 0px 0.5vmin 0.5vmin rgb(185, 0, 0), 0px 0px 1vmin 1vmin rgba(110, 0, 0, 0.5);
}

@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
.fab_ui_button:before {
  /*
      content: "";
      background: linear-gradient(45deg, #f15523, #ef3224, #7c3697, #ef3224, #f15523);
  */
  background-size: 200%;
  border-radius: 3vmin;
  opacity: 0;
  transition: 0.5%;
}

.fab_ui_button:hover:before {
  filter: blur(1.5vmin);
  opacity: 1;
  animation: animate 2s linear infinite;
}

* {
  box-sizing: border-box;
  cursor: url(cursor.cur), auto;
}

::selection {
  color: black;
  background: white;
}

.inputElement::-moz-selection {
  background: rgb(255, 255, 255);
}

.inputElement::selection {
  background: rgb(255, 255, 255);
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.001s !important;
  }
}
.input-group {
  width: 100%;
  max-width: 16vmin;
  display: flex;
  flex-direction: column;
}
@supports (mix-blend-mode: darken) {
  .input-group {
    position: relative;
    mix-blend-mode: lighten;
  }
  .input-group__label {
    background: rgb(0, 0, 0);
    border: none;
  }
}
.input-group__label {
  font-family: Amanda Std;
  font-size: 1.9vmin;
  color: #ccd;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  border: none;
}
.input-group__input {
  -webkit-border-radius: 0.5vmin;
  -moz-border-radius: 0.5vmin;
  border-radius: 0.5vmin;
  -webkit-box-shadow: rgb(0, 0, 0) 0.3vmin 0.3vmin 1vmin;
  -moz-box-shadow: rgb(0, 0, 0) 0.3vmin 0.3vmin 1vmin;
  box-shadow: rgb(0, 0, 0) 0.3vmin 0.3vmin 1vmin;
  color: #fff;
  font-size: 1.9vmin;
  font-family: Amanda Std;
  line-height: 1;
  border-style: none;
  outline: none;
  height: 3.5vmin;
  width: 100%;
  padding: 0.9vmin 1vmin;
  border: 0.25vmin solid transparent;
  background-color: rgb(0, 0, 0);
  background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(255, 255, 255)), linear-gradient(to right, rgb(255, 255, 255), rgb(0, 0, 0));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 0.5vmin;
  background-size: 150% 100%;
  transition: background-position 0.8s ease-out;
}
.input-group__input:hover {
  background-position: 100% 0;
}

