/* TODO(amol): Rewrite this using SOOT internal styling over time */

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #666666;
  font-family: 'Diatype Rounded';
  font-size: 16px;
  line-height: 1.1em;
  overscroll-behavior: none;
  background: #e9e9e9;
  overflow: hidden;
}

a {
  color: #ff0;
  text-decoration: none;
}

button {
  cursor: pointer;
  text-transform: uppercase;
  border: none;
}

@font-face {
  font-family: 'NeueHaasGroteskDisp W02';
  src: url(media/NHaasGroteskDSW02-55Rg.3248bcc0.woff2) format('woff2'),
    url(media/NHaasGroteskDSW02-55Rg.f9680536.woff) format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Panama';
  src: url('media/PanamaMonospace-Regular.woff2') format('woff2'),
    url('media/PanamaMonospace-Regular.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Haas';
  src: url('media/NeueHaasUnicaPro-Thin.woff2') format('woff2'),
    url('media/NeueHaasUnicaPro-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diatype Rounded';
  src: url('media/ABCDiatypeRounded-Regular-Trial.woff2') format('woff2'),
    url('media/ABCDiatypeRounded-Regular-Trial.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Diatype Rounded';
  src: url('media/ABCDiatypeRounded-Medium.woff2') format('woff2'),
    url('media/ABCDiatypeRounded-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Diatype Rounded';
  src: url('media/ABCDiatypeRounded-Bold.woff2') format('woff2'),
    url('media/ABCDiatypeRounded-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* COMPONENTS */

.headline {
  position: relative;
  font-family: 'Diatype Rounded';
  font-weight: 700;
  font-size: 64px;
  line-height: 0.85em;
  margin: 0;
  color: #666666;
}
.headline::before{
  content: attr(data-before);
  position: absolute;
  left: 0;
  color: #ECFF0F;
  z-index: -1;
  /* -webkit-text-stroke: #ECFF0F 28px; */
  filter: blur(6px) url(#lm-tooltip-outline-heavy);
  text-shadow: 10px 10px 10px #ECFF0F, 10px -10px 10px #ECFF0F, -10px 10px 10px #ECFF0F, -10px -10px 10px #ECFF0F, 10px 0px 10px #ECFF0F, 0px 10px 10px #ECFF0F, -10px 0px 10px #ECFF0F, 0px -10px 10px #ECFF0F;

}

.button {
  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  color: #666666;
  cursor: pointer;
  display: inline-block;
  font-family: 'Diatype Rounded';
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1em;
  padding: 0.5rem;
  position: relative;
  text-align: center;
  pointer-events: auto;

  transition: background 0.3s;
}

.button:hover {
  background: white;
  border: none;
}

.overlays {
  z-index: 1000;
  position: absolute;
}

#OverlayBackground {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgb(255 255 255 / 50%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.right-bar {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.right-bar__help {
  color: black;
  display: none;
}

.right-bar__help__icon {
  background: black;
  border-radius: 50px;
  box-shadow: 0 0 0.5vh 0.5vh black;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 22px;
  padding: 0px 5px;
  position: relative;
  text-align: center;
  pointer-events: auto;
}

.right-bar__help__icon:hover {
  background: white;
  color: black;
  box-shadow: 0 0 0.5vh 0.5vh white;
  border: none;
}

.right-bar__logo {
  width: auto;
  height: 32px;
  display: block;
}

.right-bar__logo img {
  height: 100%;
}

.right-bar__logo--unhovered {
  display: block;
}

.center-card {
  display: flex;
  margin-left: 5vw;
  background: transparent;
  position: relative;
  text-align: left;
  padding: 0 1rem;
}

.center-card__info {
  max-width: 380px;
  height: 100%;
  padding: 0px 1rem;
  margin: 0;
  pointer-events: auto;
  text-align: left;

  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

.center-card__video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(217, 217, 217, 0.7);
}

.center-card__video-holder{
  width: 640px;
  max-width: calc(100vw - 479px * 2);
}

.center-card__header {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.center-card__header.mobile {
  display: none;
}

.center-card__description {
  max-width: 280px;
  font-size: 0.75rem;
  line-height: 1.1em;
  font-family: 'Diatype Rounded';
  font-weight: 500;
  color: #666666;
  margin: 0px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.center-card__description p {
  margin: 0;
  padding: 0;
}


.overlay {
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(256, 256, 256, 0.5);
  color: black;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0%;
  pointer-events: none;
  position: fixed;
  top: 0%;
  transition: 0.5s;
  width: 100%;
  z-index: 1003;
}

.overlay > * {
  /* Reenable pointer events for child elements of the overlay, but not THEIR
   * child elements */
  pointer-events: auto;
}

.introOverlay {
  pointer-events: auto;
}

.short-text-input {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  text-align: center;
  vertical-align: middle;
  border-radius: 0.5rem;
  overflow: hidden;

  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.short-text-input__input {
  border: none;
  display: block;
  font-family: 'Diatype Rounded' !important;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1em;
  color: #929292;
  background: transparent;
  outline: none;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  width: calc(100% - 3rem);
}
.short-text-input__input::placeholder {
  color: #929292;
}
.disabled .short-text-input__input {
  width: calc(100% - 0rem);
}

.short-text-input__submit {
  display: flex;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  justify-content: center;
  align-items: center;
}

/* GENERAL MODIFIERS */

.button.large {
  padding: 12px 15px;
  box-shadow: 0 0 1.5vh 0.5vh black;
}

.button.large:hover {
  padding: 12px 15px;
  box-shadow: 0 0 1.5vh 0.5vh white;
}

.extra-large {
  font-size: 50px;
}

.large {
  font-size: 35px;
}

.small {
  font-size: 12px;
}

.theme-transparent {
  background: none;
  border: black 2px solid;
  box-shadow: none;
  color: black;
}

.theme-transparent:hover {
  background: white;
  box-shadow: 0 0 1vh white;
  border: white 2px solid;
}

/* COMPONENT MODIFIERS */

.button.payment {
  min-width: 65px;
}

/* DEPRECATED -- previous implementation of css. Over time, move more of the */
/* CSS over to the component/modifier style. See go/style for more. */

footer {
  position: fixed;
  bottom: 1vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: black;
  z-index: 1000;
  font-family: 'NeueHaasGroteskDisp W02';
}

small {
  font-size: 16px;
  line-height: 10px;
  margin-top: 1vh;
}

* {
  -webkit-tap-highlight-color: transparent;
}

#footerMobile,
#footerDesktop {
  display: none;
}

#menuButtonMobile {
  display: none;
}

#searchBox {
  visibility: hidden;
  width: 420px;
  max-width: calc(100vw - 2rem);
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  position: fixed;
  z-index: 100;
  display: inline-block;
  vertical-align: middle;
}

#searchInput {
  font-family: 'Diatype Rounded' !important;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1em;
  color: #666666;
  background: transparent;
  border: none;
  width: 100%;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  border-radius: 0.5rem;

  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#searchInput:focus {
  outline: none;
  font-family: 'Diatype Rounded' !important;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1em;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}

.autocomplete-items {
  position: absolute;
  bottom: 100%;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.5rem;
  max-height: 50vh;
  overflow: scroll;

  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1em;

  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.autocomplete-items:empty {
  display: none;
}
.autocomplete-items::-webkit-scrollbar {
  display: none;
}

.autocomplete-items > * {
  padding: 0.75rem 1rem;
  margin-top: -0.4rem;
  color: #929292;
  transition: background 0.3s;
}
.autocomplete-items > * > strong {
  color: #666666;
  font-weight: inherit;
}
.autocomplete-items > *:first-child {
  padding-top: 1.1rem;
}
.autocomplete-items > *:hover {
  background: white;
}
.autocomplete-items > .autocomplete-active {
  background: rgba(255, 255, 255, 0.5);
}

#textOverlay {
  position: relative;
  width: 200px;
  max-height: 79%;
  overflow-y: auto;

  font-family: 'Diatype Rounded' !important;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5em;
  border-radius: 0.25rem;

  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #666666;
  padding: 0.5em;
  margin-right: 1rem;
  z-index: 1500;
  display: none;
}

#textContent {
  margin-bottom: 0em;
}

#textContent a {
  color: #d72e1f;
  text-decoration: underline;
}

#selectedOverlay {
  position: absolute;
  width: 100vw;
  height: 100svh;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  padding: 8.8vh;
  box-sizing: border-box;
  background: #ffffff78;
  z-index: 600;
  display: none;
}

#selectedOverlayInner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#imageButtonsBlock {
  position: absolute;
  left: 100%;
  z-index: 600;
  padding: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
}

#imageButtonsBlock::-webkit-scrollbar {
  display: none;
}
#imageButtonsBlock {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.imageButtonsBlockInner {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0px 1rem;
  align-items: start;
  gap: 0.25rem;
}

.findButton {
  color: #666666;
  font-family: 'Diatype Rounded' !important;
  font-size: 0.75rem;
  line-height: 1em;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
  cursor: pointer;
  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  max-width: 140px;
  width: max-content;
  white-space: normal;
  text-align: left;

  transition: background 0.2s ease-in-out;
}
.findButton.readonly {
  cursor: default;
}

.liquid {
  color: black;
  background: transparent !important;
  font-family: 'NeueHaasGroteskDisp W02' !important;
  font-weight: bold;
  box-shadow: transparent 0px 0px 10px, transparent 0px 0px 10px,
    transparent 0px 0px 10px !important;
  cursor: auto !important;
  padding-left: 0;
}

.findButton:hover:not(.readonly) {
  background: white;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.opsButtonList {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  width: 140px;
  height: 400px;
  z-index: 1001;

  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: flex-start;
  justify-content: center;
  pointer-events: auto;
}
.opsButtonList .list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}

.opsItem {
  position: absolute;
  width: 100px;
  height: 60px;
  background: none;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1em;
  cursor: pointer;
  background: none;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

#OpsToggleButton {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 0.5rem;
  z-index: 1002;
}

#AboutToggleButton {
  display: none;
  position: fixed;
  top: 2rem;
  left: 0.5rem;
  z-index: 101;
}

.opsItemLabel {
  position: absolute;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
#OpsButtonList:hover .opsItemLabel {
  opacity: 1;
}

.opsItemInner {
  position: relative;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 10px;
  font-family: 'Diatype Rounded';
  font-weight: 500;
  padding: 3px 17px;
  display: inline;
  color: #666666;
}
.selectedOp .opsItemInner,
.opsItem:hover .opsItemInner{
  filter: url(#lm-tooltip-outline);
}

.opsItemIcon {
  width: 100px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  transform: var(--rotation);
  margin-right: -0.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.opsItemIcon.embossed:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: calc(-0.7071067811865475 * -1 * 0.75px) calc(0.7071067811865476 * -1 * 0.75px) 1.25px 0px
  rgba(0, 0, 0, 0.25) inset,
calc(-0.7071067811865475 * 0.75px) calc(0.7071067811865476 * 0.75px) 1.5px 0px rgba(255, 255, 255, 0.8)
  inset,
calc(-0.7071067811865475 * 0.75px) calc(0.7071067811865476 * 0.75px) 0.25px 0px rgba(0, 0, 0, 0.25),
calc(-0.7071067811865475 * -1 * 0.75px) calc(0.7071067811865476 * -1 * 0.75px) 0.25px 0px
  rgba(255, 255, 255, 0.8);

}

.opsItemIcon img {
  width: 150px;
  height: 150px;
  transform: var(--rotation-reverse);
  object-fit: cover;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

.opsItem.opUtility .opsItemIcon,
.opsItemIcon.smallIcon {
  background: #e9e9e9;
}

.opsItem.opUtility .opsItemIcon img,
.opsItemIcon.smallIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.opsItem.opUtility .opsItemIcon {
  width: 60px;
  height: 36px
}

.opsItem.opUtility .opsItemLabel {
  left: 70%;
}

#OpsToggleButton {
  width: 83.333px;
  height: 50px;
}
#OpsToggleButton .opsItemIcon {
  width: 83.333px;
  height: 50px;
  transform: rotate(300deg);
  background: #E9E9E9;
}
#OpsToggleButton .opsItemIcon img {
  transform: rotate(0deg);
  width: 100%;
  height: 100%;
}


h1 {
  font-family: 'Diatype Rounded';
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1em;
  font-weight: 700;
}

h2 {
  font-family: 'Diatype Rounded';
  font-weight: 700;
}

h3 {
  font-family: 'Diatype Rounded';
  font-weight: 500;
}

h4 {
  font-family: 'Diatype Rounded';
  font-weight: 700;
  font-size: 1rem;
  filter: url(#lm-tooltip-outline);
  color: #666666;
  margin: 0;
}

/* INTRO */

.enterButton {
  cursor: pointer;
}

/* PAYMENT */

.payment-overlay {
  /* Start hidden. We use opacity so we can get javascript fades. */
  opacity: 0;
  visibility: hidden;
}

.payment-overlay form {
  width: 100%;
  max-width: 420px;
  display: inline-block;
}

.payment-overlay-inner {
  width: 90%;
  position: relative;
  text-align: center;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  /* Pointer events are managed by javascript, but we have to start hidden. */
  /* TODO(amol): Get rid of this pointer event bs and use display none. */
  pointer-events: none;
}

.payment-overlay-description {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.payment-overlay-subtext {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
}

.payment-overlay h4 {
  font-size: 22px;
  margin: 0;
  font-family: 'NeueHaasGroteskDisp W02';
  text-align: center;
}

.payment-overlay h4 span {
  background: none;
  padding: 0px 5px;
  border-radius: 100px;
  box-shadow: none;
  background: #5dff9e;
  box-shadow: 0 0px 2px #5dff9e, 0 0px 15px #5dff9e, 0 0px 15px #5dff9e,
    0 0 20px #5dff9e, 0 0px 26px #5dff9e;
}

.payment-overlay .right-col:hover h4 span,
.payment-overlay .left-col:hover h4 span {
  background: white;
  padding: 0px 5px;
  border-radius: 100px;
  box-shadow: 0 2px 2px white, 0 2px 15px white, 0 2px 15px white,
    0 0 20px white, 0 2px 26px white;
}

.payment-overlay-logo {
  pointer-events: auto;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  padding: 0px 20px;
  display: block;
  line-height: 50px;
  font-size: 50px;
  box-shadow: 0 0 20px black, 0 0 25px black, 0 0 20px black, 0 0 30px black,
    0 0 10px black, 0 0 50px black, 0 0 30px black, 0 0 10px black,
    0 0 10px black, 0 0 10px black, 0 0 10px black, 0 0 50px black,
    0 0 30px black, 0 0 10px black;
}

.payment-overlay-logo:hover {
  box-shadow: 0 0 20px white, 0 0 25px white, 0 0 20px white, 0 0 30px white,
    0 0 10px white, 0 0 50px white, 0 0 30px white, 0 0 10px white,
    0 0 10px white, 0 0 10px white, 0 0 10px white, 0 0 50px white,
    0 0 30px white, 0 0 10px white;
}

.payment-overlay .input-wrapper {
  padding: 0 5vw;
}

.payment-overlay a,
.payment-overlay a:visited {
  text-decoration: underline;
  color: black;
}

.payment-overlay .two-column-options {
  float: left;
  width: 100%;
}

.right-col {
  width: 49%;
  float: left;
}

.left-col {
  width: 49%;
  float: left;
  border-right: 1px solid rgba(0, 0, 0, 0.59);
}

.payment-overlay .margin40bottom {
  margin-bottom: 30px;
}

.payment-overlay .why-soot {
  font-family: 'NeueHaasGroteskDisp W02';
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 18px;
  width: auto;
  height: auto;
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  margin: 40px 0 20px 0;
}

/*END SIGNUP*/

@media only screen and (max-width: 1540px) {

  .center-card__video-holder {
    max-width: min(640px, 100%);
  }

}

@media only screen and (max-width: 1024px) {
  /* COMPONENTS */
  .introOverlay {
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: blur(3px);
    background: rgba(256, 256, 256, 0.2);
  }

  .center-card {
    max-width: min(calc(100vw - 2rem), 360px);
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    padding: 2rem;
  }
  .center-card__info {
    padding: 0;
  }
  .center-card__header{
    display: none;
  }
  .center-card__video-holder {
    display: none;
  }
  .center-card__header.mobile {
    display: block;
    text-align: left;
    padding: 0;
    margin-bottom: 0;
  }
  .center-card__video {
    border-radius: 0.5rem;
  }

  #imageButtonsBlock {
    left: 0;
    top: 100%;
    width: 100%;
    padding: 0.5rem 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
  .imageButtonsBlockInner {
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0;
    width: auto;
    max-width: calc(100vw - 10rem);
  }
  #imageButtonsContainer {
    flex: 1;
  }
  .findButton {
    max-width: 100%;
  }

  .introOverlay .introOverlay-inner {
    width: 70% !important;
  }

  .introOverlay .introOverlay-inner h2 {
    width: 100% !important;
  }


  .introModal {
    width: 95%;
  }

  .right-bar__logo {
    top: 0;
    height: 30px;
  }

  h3 {
    padding-bottom: 0px;
  }

  #footerDesktop {
    display: none !important;
  }

  #menuButtonMobile {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
  }

  #searchBox {
    visibility: hidden;
    bottom: 1rem;
    left: 1rem;
    max-width: calc(100vw - 8rem);
    transform: none;
  }

  .liquid {
    padding-left: 0;
  }

  .liquid:hover {
    color: black !important;
  }

  #selectedOverlay{
    padding: 16px;
  }
  #selectedOverlayInner {
    flex-direction: column;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 6rem);
  }
  #textOverlay {
    margin-right: 0px;
    margin-bottom: 8px;
  }

  #OpsToggleButton {
    display: block;
  }

  .opsButtonList {
    display: none;
  }
  .opsButtonList.opsExpanded {
    display: flex;
    width: 100% !important;
    height: 100% !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    background: #ffffff78;
    pointer-events: auto;
    justify-content: center;
    align-items: flex-start;
  }
  .opsItemLabel {
    opacity: 1;
  }

}

/* End Signup Mobile */

.mLabel {
  padding: 0 0.25em;
}

.text-button {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  font-size: 11px;
  border-radius: 10px;
  font-family: 'NeueHaasGroteskDisp W02';
  padding: 3px 17px;
  margin-bottom: 0.5em;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.5), 0 0 22px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1000000;
  pointer-events: all;
}

.text-button:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 11px rgba(255, 255, 255, 0.75),
    0 0 22px rgba(255, 255, 255, 0.75);
}

.text-button .selected {
  background: white !important;
  box-shadow: 0 0 1vh white !important;
  color: black !important;
}