.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  margin-left: -160px;
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  margin-left: -160px;
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }

  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
  }

  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}

.Toastify__toast--info {
  background: #3498db;
}

.Toastify__toast--success {
  background: #07bc0c;
}

.Toastify__toast--warning {
  background: #f1c40f;
}

.Toastify__toast--error {
  background: #e74c3c;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@-webkit-keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  -webkit-animation: Toastify__trackProgress linear 1 forwards;
          animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform .2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}

@-webkit-keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@-webkit-keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@-webkit-keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@-webkit-keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@-webkit-keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@-webkit-keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  -webkit-animation-name: Toastify__bounceInLeft;
          animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  -webkit-animation-name: Toastify__bounceInRight;
          animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  -webkit-animation-name: Toastify__bounceInDown;
          animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  -webkit-animation-name: Toastify__bounceInUp;
          animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  -webkit-animation-name: Toastify__bounceOutLeft;
          animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  -webkit-animation-name: Toastify__bounceOutRight;
          animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  -webkit-animation-name: Toastify__bounceOutUp;
          animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  -webkit-animation-name: Toastify__bounceOutDown;
          animation-name: Toastify__bounceOutDown;
}

@-webkit-keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  -webkit-animation-name: Toastify__zoomIn;
          animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  -webkit-animation-name: Toastify__zoomOut;
          animation-name: Toastify__zoomOut;
}

@-webkit-keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@-webkit-keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn;
          animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut;
          animation-name: Toastify__flipOut;
}

@-webkit-keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@-webkit-keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@-webkit-keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  -webkit-animation-name: Toastify__slideInLeft;
          animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  -webkit-animation-name: Toastify__slideInRight;
          animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  -webkit-animation-name: Toastify__slideInDown;
          animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  -webkit-animation-name: Toastify__slideInUp;
          animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  -webkit-animation-name: Toastify__slideOutLeft;
          animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  -webkit-animation-name: Toastify__slideOutRight;
          animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  -webkit-animation-name: Toastify__slideOutUp;
          animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  -webkit-animation-name: Toastify__slideOutDown;
          animation-name: Toastify__slideOutDown;
}
/* Used to detect in JavaScript if apps have loaded styles or not. */

:root {
  --reach-menu-button: 1;
}

[data-reach-menu],
[data-reach-menu-popover] {
  display: block;
  position: absolute;
}

[data-reach-menu][hidden],
[data-reach-menu-popover][hidden] {
  display: none;
}

[data-reach-menu-list],
[data-reach-menu-items] {
  display: block;
  white-space: nowrap;
  border: solid 1px hsla(0, 0%, 0%, 0.25);
  background: hsla(0, 100%, 100%, 0.99);
  outline: none;
  padding: 1rem 0;
  font-size: 85%;
}

[data-reach-menu-item] {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/*
 The dom structure of a MenuLink is reach-menu-item > a,
 so to target all items we can use `data-reach-menu-item`
*/

[data-reach-menu-item] {
  /*
    These are styled in one rule instead of something like a[data-reach-menu-item]
    and li[data-reach-menu-item] so that apps don't have to fight specificity and
    can style both li and a menu items with one rule,
    ie: `[data-selected] { background: red; }`.
    Otherwise they'd have to define two styles, one for a and one for li.
  */
  /* reach-menu-item */
  cursor: pointer;
  /* a */
  display: block;
  color: inherit;
  font: inherit;
  text-decoration: initial;
  /* both */
  padding: 5px 20px;
}

/* pseudo pseudo selector */

[data-reach-menu-item][data-selected] {
  background: hsl(211, 81%, 36%);
  color: white;
  outline: none;
}

[data-reach-menu-item][aria-disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.nav-min-height {
  min-height: 60px;
}

@media (min-width: 941px) {
  .nav-min-height {
    min-height: 90px;
  }
}

.pool-container {
  width: 100%;
}

@media (min-width: 941px) {
  .max-height-wrapper {
    height: 660px;
  }
}

@media (min-width: 1481px) {
  .max-height-wrapper {
    height: 700px;
  }
}

@media screen and (max-height: 860px) {
  .max-height-wrapper {
    height: 530px !important;
  }
}

@media screen and (max-height: 600px) {
  .max-height-wrapper {
    height: 360px !important;
  }
}

.nav-and-footer-container {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  width: calc(100% - 2rem);
}

.pool-container .pool-container,
.nav-and-footer-container .nav-and-footer-container {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 941px) {
  .pool-container,
  .nav-and-footer-container {
    max-width: 788px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

/* breakpoint overrides */

@media (min-width: 941px) {
  .nav-and-footer-container {
    max-width: 788px;
  }
}

@media (min-width: 1481px) {
  .nav-and-footer-container {
    max-width: 1090px;
  }
}

@media (min-width: 941px) {
  .pool-container {
    max-width: 788px;
  }
}

@media (min-width: 1481px) {
  .pool-container {
    max-width: 1090px;
  }
}

.pool-max-width {
  max-width: 1090px;
}

.modal-max-width {
  max-width: 640px;
}

.modal-wrapper {
  min-height: 300px;
  max-height: 100vh;
  overflow-y: auto;
}

.modal-content-container {
  max-height: 100vh;
}

@media screen and (min-width: 640px) {
  .modal-wrapper {
    max-height: calc(100vh - 1px);
  }
}

.page {
  min-height: 400px;
  width: 100%;
}

.page-bg {
  --bg-opacity: 1;
  background-color: #2c1259;
  background-color: rgba(44, 18, 89, var(--bg-opacity));
}

.section-min-height {
  min-height: 70vh;
}

.scene {
  margin: 0 auto;
  z-index: 3;
  width: 95%;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  pointer-events: none;
}

.notification-close-btn {
  padding: 0.08rem;
}

@media (min-width: 941px) {
  .notification-close-btn {
    padding: 0.5rem;
  }
}

/* Override Mozilla default red box-shadow for invalid inputs. */

input:invalid {
  box-shadow: none;
}

/* input defaults to min-width: auto, which won't shrink past a certain point in a flex box like text inputs have in designs. */

input:invalid {
  min-width: 0;
}

span {
  --inactive: #9bc9eb;
  --active: #98b6ee;
  --speed: 1.2s;
  --size: 30px;
  --unit: 10px;
}

@-webkit-keyframes loadingFader {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loadingFader {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.loading-fader {
  -webkit-animation: loadingFader 3s infinite ease-in-out;
          animation: loadingFader 3s infinite ease-in-out;
  margin: 0 auto;
  opacity: 0;
  text-align: center;
  width: 170px;
}

.spinner-hidden .loading-indicator {
  display: none;
}

.spinner-small .loading-indicator img {
  transform: scale3d(0.5, 0.5, 0.5);
}

@media (min-width: 941px) {
  .spinner-small .loading-indicator img {
    transform: scale3d(0.75, 0.75, 0.75);
  }
}

@media (min-width: 1481px) {
  .spinner-small .loading-indicator img {
    transform: scale3d(1, 1, 1);
  }
}

.loading-indicator {
  /* clip-path: url(#svg-mask); */
  /* background-clip: content-box; */
  align-items: center;
  background-color: #120420;
  /* background-color: orange; */
  display: flex;
  justify-content: center;
  height: 100%;
  position: fixed;
  text-align: center;
  width: 100%;
  transform-origin: 50% 50%;
}

/* can only get this working in Firefox. Polyfill? */

/* svg#circleMask {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-origin: 50% 50%;
}

svg#circleMask mask circle {
  transform-origin: 50% 50%;
  transform: scale3d(0, 0, 0);
}

.clipOut {
  -webkit-mask: url(#mask);
  mask: url(#mask);
}

.clipOut circle {
  animation: clipOut 1s infinite cubic-bezier(.55,.09,.68,.53);
}

@keyframes clipOut {
  from {
    transform: scale3d(0, 0, 0);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
} */

.loading-indicator img {
  margin-top: -25vh;
}

.spinner {
  margin: 0 auto;
  width: 170px;
  text-align: center;
}

.spinner > div {
  width: 14px;
  height: 14px;
  margin: 0 10px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bounceLoad 1.4s infinite ease-in-out both;
          animation: bounceLoad 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

@-webkit-keyframes bounceLoad {
  0%,
  80%,
  100% {
    transform: scale3d(0, 0, 0);
  }

  40% {
    transform: scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes bounceLoad {
  0%,
  80%,
  100% {
    transform: scale3d(0, 0, 0);
  }

  40% {
    transform: scale3d(0.5, 0.5, 0.5);
  }
}

@media (min-width: 941px) {
  @-webkit-keyframes bounceLoad {
    0%,
    80%,
    100% {
      transform: scale3d(0, 0, 0);
    }

    40% {
      transform: scale3d(1, 1, 1);
    }
  }
  @keyframes bounceLoad {
    0%,
    80%,
    100% {
      transform: scale3d(0, 0, 0);
    }

    40% {
      transform: scale3d(1, 1, 1);
    }
  }
}

* {
  caret-color: #0527e6;
  --color-bg-body: #ffffff;
  --color-bg-card: #000000;
  --color-bg-card-selected: #c4b9d4;
  --color-bg-primary: #000000;
  --color-bg-secondary: #586ff0;
  --color-bg-default: #e0e0e0;
  --color-bg-darkened: #1a083a;
  --color-bg-inverse: rgb(0, 0, 0);
  --color-bg-overlay: rgba(0, 0, 0, 0.7);
  --color-bg-black: #111;
  --color-bg-accent-grey-1: rgba(94, 53, 240, 0.2);
  --color-bg-accent-grey-2: #43286e;
  --color-bg-highlight-1: #0f0f2e;
  --color-bg-highlight-2: #111047;
  --color-bg-highlight-3: #191520;
  --color-bg-highlight-4: #221331;
  --color-bg-highlight-5: #211d29;
  --color-bg-grey: rgba(24, 18, 18, 0.7);
  --color-bg-red: #aa0b0b;
  --color-bg-green: #1b2453;
  --color-bg-yellow-1: #ff9303;
  --color-bg-yellow-2: rgba(255, 147, 3, 0.3);
  --color-bg-blue-1: #4565ff;
  --color-bg-blue-2: rgba(69, 101, 255, 0.4);
  --color-bg-teal: rgb(0, 4, 255);
  --color-bg-purple-1: #3c56daa6;
  --color-bg-purple-2: rgba(41, 68, 219, 0.4);
  --color-text-accent-1: #292530;
  --color-text-accent-2: #292433;
  --color-text-accent-3: #211b2e;
  --color-text-primary: #000000;
  --color-text-primary-soft: #25223d;
  --color-text-secondary: #0d0816;
  --color-text-default: #000000;
  --color-text-default-soft: #1f1838;
  --color-text-inverse: rgb(118, 116, 124);
  --color-text-match: rgb(0, 0, 0);
  --color-text-black: #111;
  --color-text-highlight-1: #0b473e;
  --color-text-highlight-2: #1a584e;
  --color-text-highlight-3: #09332c;
  --color-text-whitesmoke: rgba(54, 54, 54, 0.6);
  --color-text-red: #e61b1b;
  --color-text-green-1: #063d35;
  --color-text-green-2: #214083;
  --color-text-yellow-1: #ffc403;
  --color-text-yellow-2: #ff9403;
  --color-text-blue: #68a7ff;
  --color-text-teal: #075858;
  --color-text-purple: #401c94;
  --color-border-accent-1: #bbb2ce;
  --color-border-accent-2: #bbb2ce;
  --color-border-accent-3: #212bb6;
  --color-border-accent-4: #96bffc;
  --color-border-primary: #242daa;
  --color-border-card: #251762;
  --color-border-secondary: #2d23b8;
  --color-border-default: #2527a5;
  --color-border-inverse: rgb(0, 0, 0);
  --color-border-highlight-1: #11105a;
  --color-border-highlight-2: #2724b6;
  --color-border-red: #e61b1b;
  --color-border-green-1: #413ef3;
  --color-border-green-2: #4221bd;
  --color-border-transparent: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--color-bg-body);
}

html,
body,
table {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'pnum' 1, 'tnum' 0, 'onum' 0, 'lnum' 0,
    'dlig' 0;
}

::-moz-placeholder, .input::-moz-placeholder, .textarea::-moz-placeholder {
  color: rgb(235, 203, 253, 0.3) !important;
}

:-ms-input-placeholder, .input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
  color: rgb(235, 203, 253, 0.3) !important;
}

::placeholder,
.input::placeholder,
.textarea::placeholder {
  color: rgb(235, 203, 253, 0.3) !important;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected,
select:-internal-autofill-previewed,
select:-internal-autofill-selected {
  background-color: white !important;
}

::-moz-selection {
  background-color: rgb(76, 122, 249);
  color: rgb(0, 0, 0);
}

::selection {
  background-color: rgb(76, 122, 249);
  color: rgb(0, 0, 0);
}

html {
  overflow-x: hidden;
}

body {
  /* @apply font-sans-lato; */
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

hr {
  border: 0;
  height: 0;
  border-top: 3px solid rgba(120, 70, 220, 0.1);
  border-bottom: none;
  background: transparent;
  margin: 20px auto;
  width: 90%;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

a {
  color: var(--color-text-highlight-3);
  text-decoration: none;
  border-bottom-width: 2px;
  --border-opacity: 1;
  border-color: #2c1259;
  border-color: rgba(44, 18, 89, var(--border-opacity));
}

a:hover {
  --text-opacity: 1;
  color: #EF7301;
  color: rgba(239, 115, 1, var(--text-opacity));
  --border-opacity: 1;
  border-color: #6b46c1;
  border-color: rgba(107, 70, 193, var(--border-opacity));
}

a[disabled],
a[disabled]:hover {
  color: var(--color-text-blue);
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
  margin: 0.5rem 0;
}

p {
  letter-spacing: 0.05em;
}

label {
  font-family: omnes-pro, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  display: block;
  cursor: pointer;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

form:after {
  content: '';
  display: table;
  clear: both;
}

.pt-button {
  min-width: 180px;
}

@media screen and (min-width: 640px) {
  .pt-button {
    min-width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .pt-button {
    min-width: 220px;
  }
}

button[disabled] {
  opacity: .3 !important;
  cursor: not-allowed !important;
}

input:not([type='submit'])[disabled],
textarea[disabled] {
  border-color: var(--color-border-transparent) !important;
  opacity: .5 !important;
  cursor: not-allowed !important;
}

input[type='submit'][disabled] {
  border-color: var(--color-border-transparent);
  cursor: not-allowed;
}

input:not([type='submit'])[readOnly] {
  cursor: not-allowed !important;
}

input[type='submit'][disabled] {
  border-color: var(--color-border-transparent);
  cursor: not-allowed;
}

.is-etherscan-arrow {
  height: 1em;
  position: relative;
  top: -2px;
  width: 1em;
}

input[type='text'] {
  caret-color: rgb(0, 0, 0) !important;
}

[anim='ripple'] {
  position: relative;
  overflow: hidden;
}

[anim='ripple']:before {
  content: '';
  position: absolute;
  display: block;
  background: var(--ripple-background, rgb(43, 35, 88));
  border-radius: 50%;
  pointer-events: none;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--d) * 1px);
  height: calc(var(--d) * 1px);
  mix-blend-mode: screen;
  opacity: calc(var(--o, 1) * var(--ripple-opacity, 0.3));
  transition: calc(var(--t, 0) * var(--ripple-duration, 150ms)) var(--ripple-easing, ease-in);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  transform-origin: center;
}

.anim-done {
  background: linear-gradient(-45deg, #08242e, #0632c2, #123a3f);
  background-size: 400% 400%;
  -webkit-animation: gradientBG 4s ease infinite;
          animation: gradientBG 4s ease infinite;
}

.anim-claiming {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, rgb(61, 41, 240));
  background-size: 400% 400%;
  -webkit-animation: gradientBG 2s ease infinite;
          animation: gradientBG 2s ease infinite;
}

@-webkit-keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.new-prize-gradient {
  background: linear-gradient(155deg, #55a0fb, #5093df, #1b1ecf);
}

.new-prize-in-gradient {
  background: linear-gradient(155deg, #403de9, #271bcf);
}

.radio-input-group {
  background-color: #2c1259;
  border-radius: 30px;
  display: block;
  position: relative;
}

.radio-input-group:hover {
  background-color: #052f8a;
}

.radio-input-group label {
  width: 100%;
  display: block;
  margin: 16px 0 !important;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
}

.radio-input-group label:before {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  content: '';
  background-color: #4096fb;
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translate(-50%, -50%) scale3d(1, 1, 1); */
  transition: all 150ms ease-out;
  opacity: 0;
  z-index: -1;
}

.radio-input-group label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #10094c;
  background-color: #0d094c;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%232c1259' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.radio-input-group input:checked ~ label {
  color: rgb(0, 0, 0);
}

.radio-input-group input:checked ~ label:before {
  transform: translate(0, 0) scale3d(1, 1, 1);
  opacity: 1;
}

.radio-input-group input:checked ~ label:after {
  background-color: #383bff;
  border-color: #40406b;
}

.radio-input-group input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.bn-onboard-custom.bn-onboard-modal {
  z-index: 1000000;
}

footer a {
  color: var(--color-text-accent-3);
}

.pool-toast.Toastify__toast-container {
  background: transparent;
  margin: 0 auto;
  max-width: 1228px;
  padding: 1rem;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 20000;
  height: 50px;
  width: 100%;
}

@media (min-width: 941px) {
  .pool-toast.Toastify__toast-container {
    margin: 0 auto;
    max-width: 420px;
  }
}

.pool-toast.Toastify__toast-container--top-center {
  top: 50px;
}

@media (min-width: 941px) {
  .pool-toast.Toastify__toast-container--top-center {
    left: initial;
    right: 80px;
    top: 150px;
    transform: initial;
  }
}

.pool-toast .Toastify__toast {
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -1px rgba(0, 0, 0, .1), 0 10px 10px 5px rgba(0, 0, 0, .04);
  background-color: black;
  border: 3px solid black;
  color: white;
  font-family: inherit;
  font-weight: 400;
  margin: 0 auto;
  min-height: 30px;
  min-width: 100%;
  overflow: visible;
  padding: 0;
}

@media (min-width: 1481px) {
  .pool-toast .Toastify__toast {
    min-width: auto;
  }
}

.pool-toast .Toastify__progress-bar {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.pool-toast .Toastify__progress-bar--default {
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #7c29f0, #23a6d5, #06c296, #8de007 ); */
  display: none;
}

.pool-toast .Toastify__toast--default:before {
  box-shadow: 0 20px 30px -3px rgba(0, 0, 0, .2), 0 15px 15px -3px rgba(0, 0, 0, .1);
  -webkit-animation: cycleBackgroundPos 5000ms infinite;
          animation: cycleBackgroundPos 5000ms infinite;
  background: var(--flashyGradient);
  background-size: 400% auto;
  border-radius: 10px;
  content: '';
  filter: blur(0px);
  height: 120%;
  position: absolute;
  left: -2%;
  top: -8px;
  width: 104%;
  z-index: -1;
}

@media (min-width: 531px) {
  .pool-toast .Toastify__toast--default:before {
    left: -1.5%;
    width: 103%;
  }
}

@media (min-width: 941px) {
  .pool-toast .Toastify__toast--default:before {
    left: -9px;
    width: 400px;
  }
}

.pool-toast .Toastify__toast--info {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.pool-toast .Toastify__toast--success {
  color: var(--color-text-green-1);
}

.pool-toast .Toastify__toast--error {
  color: var(--color-text-red);
}

.pool-toast .Toastify__toast--warning {
  color: var(--color-text-yellow-1);
}

.Toastify__progress-bar--info {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.Toastify__progress-bar--success {
  background-color: var(--color-bg-green);
}

.Toastify__progress-bar--warning {
  background-color: var(--color-bg-yellow-1);
}

.Toastify__progress-bar--error {
  background-color: var(--color-bg-red);
}

.pool-toast .Toastify__toast-body {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.5rem;
  padding: 0.5rem 0.25rem;
}

@media (min-width: 941px) {
  .pool-toast .Toastify__toast-body {
    padding: 0 2rem;
    margin: 1rem auto;
  }
}

.pool-toast .Toastify__close-button {
  color: white;
  font-size: 14px;
  right: 10px;
  top: 8px;
  position: absolute;
  opacity: 1;
}

@media (min-width: 941px) {
  .pool-toast .Toastify__close-button:after {
    font-size: 19px;
  }
}

.pool-toast .Toastify__close-button:after {
  background-color: black;
  content: '✕';
  color: white;
  font-size: 19px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.pool-toast .Toastify__toast--default .Toastify__close-button,
.pool-toast .Toastify__toast--info .Toastify__close-button {
  color: rgba(255, 255, 255, 0.8);
}

.rotate-0 {
  transform: rotate(0deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.-t-1 {
  top: -0.25rem;
}

.-t-2 {
  top: -0.5rem;
}

.-t-3 {
  top: -0.75rem;
}

.-t-4 {
  top: -1rem;
}

.-t-6 {
  top: -1.5rem;
}

.-t-8 {
  top: -2rem;
}

@media (min-width: 941px) {
  .sm\:-t-1 {
    top: -0.25rem;
  }

  .sm\:-t-2 {
    top: -0.5rem;
  }

  .sm\:-t-3 {
    top: -0.75rem;
  }

  .sm\:-t-4 {
    top: -1rem;
  }

  .sm\:-t-6 {
    top: -1.5rem;
  }

  .sm\:-t-8 {
    top: -2rem;
  }
}

@media (min-width: 1481px) {
  .lg\:-t-1 {
    top: -0.25rem;
  }

  .lg\:-t-2 {
    top: -0.5rem;
  }

  .lg\:-t-3 {
    top: -0.75rem;
  }

  .lg\:-t-4 {
    top: -1rem;
  }
}

.t-0 {
  top: 0;
}

.t-1 {
  top: 0.25rem;
}

.t-2 {
  top: 0.5rem;
}

.t-3 {
  top: 0.75rem;
}

.t-4 {
  top: 1rem;
}

.t-6 {
  top: 1.5rem;
}

.t-8 {
  top: 2rem;
}

@media (min-width: 941px) {
  .sm\:t-1 {
    top: -0.25rem;
  }

  .sm\:t-2 {
    top: -0.5rem;
  }

  .sm\:t-3 {
    top: -0.75rem;
  }

  .sm\:t-4 {
    top: -1rem;
  }

  .sm\:t-6 {
    top: -1.5rem;
  }

  .sm\:t-8 {
    top: -2rem;
  }
}

.-r-1 {
  right: -0.25rem;
}

.-r-2 {
  right: -0.5rem;
}

.-r-3 {
  right: -0.75rem;
}

.-r-4 {
  right: -1rem;
}

.-r-6 {
  right: -1.5rem;
}

.-r-8 {
  right: -2rem;
}

@media (min-width: 941px) {
  .sm\:-r-1 {
    right: -0.25rem;
  }

  .sm\:-r-2 {
    right: -0.5rem;
  }

  .sm\:-r-3 {
    right: -0.75rem;
  }

  .sm\:-r-4 {
    right: -1rem;
  }

  .sm\:-r-6 {
    right: -1.5rem;
  }

  .sm\:-r-8 {
    right: -2rem;
  }
}

@media (min-width: 1481px) {
  .lg\:-r-1 {
    right: -0.25rem;
  }

  .lg\:-r-2 {
    right: -0.5rem;
  }

  .lg\:-r-3 {
    right: -0.75rem;
  }

  .lg\:-r-4 {
    right: -1rem;
  }
}

.r-0 {
  right: 0;
}

.r-1 {
  right: 0.25rem;
}

.r-2 {
  right: 0.5rem;
}

.r-3 {
  right: 0.75rem;
}

.r-4 {
  right: 1rem;
}

.r-6 {
  right: 1.5rem;
}

.r-8 {
  right: 2rem;
}

.b-1 {
  bottom: 0.25rem;
}

.b-2 {
  bottom: 0.5rem;
}

.b-3 {
  bottom: 0.75rem;
}

.b-4 {
  bottom: 1rem;
}

.b-6 {
  bottom: 1.5rem;
}

.b-8 {
  bottom: 2rem;
}

.b-special {
  bottom: 4rem;
}

@media (min-width: 941px) {
  .sm\:b-1 {
    bottom: 0.25rem;
  }

  .sm\:b-2 {
    bottom: 0.5rem;
  }

  .sm\:b-3 {
    bottom: 0.75rem;
  }

  .sm\:b-4 {
    bottom: 1rem;
  }

  .sm\:b-6 {
    bottom: 1.5rem;
  }

  .sm\:b-8 {
    bottom: 2rem;
  }

  .sm\:b-special {
    bottom: 4.75rem;
  }
}

@media (min-width: 1481px) {
  .lg\:b-1 {
    bottom: 0.25rem;
  }

  .lg\:b-2 {
    bottom: 0.5rem;
  }

  .lg\:b-3 {
    bottom: 0.75rem;
  }

  .lg\:b-4 {
    bottom: 1rem;
  }

  .lg\:b-6 {
    bottom: 1.5rem;
  }

  .lg\:b-8 {
    bottom: 2rem;
  }

  .lg\:b-special {
    bottom: 5.75rem;
  }
}

.b-0 {
  bottom: 0;
}

.l-0 {
  left: 0;
}

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

.min-width-auto {
  min-width: auto !important;
}

.scale-0 {
  transform: scale3d(0, 0, 0);
}

.animate-once {
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
}

.spinning {
  -webkit-animation: spinningAnim 2800ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
          animation: spinningAnim 2800ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
}

@-webkit-keyframes spinningAnim {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  20% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  30% {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  70% {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  80% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
}

@keyframes spinningAnim {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  20% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  30% {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  70% {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  80% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
}

@-webkit-keyframes changeLetter {
  0% {
    content: attr(name);
  }

  50% {
    color: white;
  }

  100% {
    content: attr(title);
  }
}

@keyframes changeLetter {
  0% {
    content: attr(name);
  }

  50% {
    color: white;
  }

  100% {
    content: attr(title);
  }
}

.animate-content::after {
  content: attr(name);
}

.animate-content-enter::after {
  -webkit-animation: changeLetter 1s normal forwards ease-in-out;
          animation: changeLetter 1s normal forwards ease-in-out;
}

.animated-light {
  overflow: hidden;
  position: relative;
}

.animated-light::before {
  -webkit-animation: animatedLight 2500ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
          animation: animatedLight 2500ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
}

.animated-light::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0%;
  right: 100%;
  margin: 0;
  width: 2500px;
  height: 100vh;
  background-image: linear-gradient(
    102deg,
    rgba(150, 100, 200, 0) 0%,
    rgba(150, 100, 200, 0) 36%,
    rgba(150, 100, 200, 0.02) 43%,
    rgba(150, 100, 200, 0.1) 47%,
    rgba(150, 100, 200, 0.15) 50%,
    rgba(150, 100, 200, 0.1) 53%,
    rgba(150, 100, 200, 0.02) 57%,
    rgba(150, 100, 200, 0) 65%,
    rgba(150, 100, 200, 0) 100%
  );
  transform-origin: 50% 100%;
}

@media screen and (min-width: 640px) {
  .animated-light::before {
    height: 550px;
  }
}

@-webkit-keyframes animatedLight {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }
}

@keyframes animatedLight {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }
}

.animated-pill {
  -webkit-animation: pulseScale 5000ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
          animation: pulseScale 5000ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.animated-pill::before {
  -webkit-animation: animatedPill 3000ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
          animation: animatedPill 3000ms infinite forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
}

.animated-pill::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0%;
  left: 100%;
  margin: 0;
  width: 2000px;
  height: 200px;
  background-image: linear-gradient(
    150deg,
    rgba(190, 100, 200, 0) 0%,
    rgba(190, 100, 200, 0.2) 40%,
    rgba(190, 100, 200, 0.6) 50%,
    rgba(190, 100, 200, 0.1) 64%,
    rgba(190, 100, 200, 0) 100%
  );
  transform-origin: 100% 50%;
}

@-webkit-keyframes animatedPill {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(-200%, 0, 0);
  }
}

@keyframes animatedPill {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(-200%, 0, 0);
  }
}

@-webkit-keyframes pulseScale {
  0% {
    transform: scale3d(1, 1, 1);
  }

  40% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.15, 1.15, 1);
  }

  60% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulseScale {
  0% {
    transform: scale3d(1, 1, 1);
  }

  40% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.15, 1.15, 1);
  }

  60% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.fade-out-and-up--enter {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation: fadeOutAndUpAnim 1000ms forwards cubic-bezier(0.2, 0.8, 0.36, 1);
          animation: fadeOutAndUpAnim 1000ms forwards cubic-bezier(0.2, 0.8, 0.36, 1);
  pointer-events: none;
}

@-webkit-keyframes fadeOutAndUpAnim {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 0.75) translate3d(0, -70px, 0);
  }
}

@keyframes fadeOutAndUpAnim {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 0.75) translate3d(0, -70px, 0);
  }
}

.fade-in-and-down {
  opacity: 0;
  pointer-events: none;
}

.fade-in-and-down--enter {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation: fadeInAndDown 600ms forwards cubic-bezier(0.2, 0.8, 0.36, 1);
          animation: fadeInAndDown 600ms forwards cubic-bezier(0.2, 0.8, 0.36, 1);
  pointer-events: initial;
}

@-webkit-keyframes fadeInAndDown {
  0% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 0.75) translate3d(0, -70px, 0);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
}

@keyframes fadeInAndDown {
  0% {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 0.75) translate3d(0, -70px, 0);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
}

.fade {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 15vh;
}

@-webkit-keyframes gradientAnim {
  0% {
    background-position: 0% 50%, -200px 0;
  }

  50% {
    background-position: 100% 50%, -200px 0;
  }

  100% {
    background-position: 0% 50%, -200px 0;
  }
}

@keyframes gradientAnim {
  0% {
    background-position: 0% 50%, -200px 0;
  }

  50% {
    background-position: 100% 50%, -200px 0;
  }

  100% {
    background-position: 0% 50%, -200px 0;
  }
}

@-webkit-keyframes prePurchaseBtnAnim {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  95% {
    opacity: 0.15;
  }

  100% {
    opacity: 0;
  }
}

@keyframes prePurchaseBtnAnim {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  95% {
    opacity: 0.15;
  }

  100% {
    opacity: 0;
  }
}

.neuo-shine {
  overflow: hidden;
  position: relative;
}

.neuo-shine::before {
  -webkit-animation: neuoShine 2000ms forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
          animation: neuoShine 2000ms forwards cubic-bezier(0.5, 1.1, 0.36, 1.02);
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
}

.neuo-shine::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0%;
  right: 100%;
  margin: 0;
  width: 2500px;
  height: 30vh;
  background-image: linear-gradient(
    102deg,
    rgba(150, 100, 200, 0) 0%,
    rgba(150, 100, 200, 0) 36%,
    rgba(150, 100, 200, 0.02) 43%,
    rgba(150, 100, 200, 0.06) 47%,
    rgba(150, 100, 200, 0.1) 50%,
    rgba(150, 100, 200, 0.07) 53%,
    rgba(150, 100, 200, 0.01) 57%,
    rgba(150, 100, 200, 0) 65%,
    rgba(150, 100, 200, 0) 100%
  );
  transform-origin: 50% 100%;
}

@-webkit-keyframes neuoShine {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  49% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }

  50% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }
}

@keyframes neuoShine {
  0% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  49% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }

  50% {
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale3d(1, 1, 1) translate3d(200%, 0, 0);
  }
}

.anim-real-fastest {
  -webkit-animation-duration: 0.15s !important;
          animation-duration: 0.15s !important;
}

.anim-mid-fastest {
  -webkit-animation-duration: 0.35s !important;
          animation-duration: 0.35s !important;
}

.anim-fastest {
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
}

.anim-slow {
  -webkit-animation-duration: 1s !important;
          animation-duration: 1s !important;
}

.anim-slowest {
  -webkit-animation-duration: 1.5s !important;
          animation-duration: 1.5s !important;
}

.animated.delay-half-second {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.trans {
  transition: all 0.2s ease-out;
}

.trans-bg {
  transition-property: background;
}

.trans-snail {
  transition-duration: 1.75s;
}

.trans-escargot {
  transition-duration: 1.5s;
}

.trans-slowest {
  transition-duration: 1.25s;
}

.trans-slower {
  transition-duration: 0.75s;
}

.trans-slow {
  transition-duration: 0.5s;
}

.trans-mediumer {
  transition-duration: 0.425s;
}

.trans-mediumest {
  transition-duration: 0.35s;
}

.trans-medium {
  transition-duration: 0.225s;
}

.trans-fast {
  transition-duration: 0.15s;
}

.trans-faster {
  transition-duration: 0.075s;
}

.trans-fastest {
  transition-duration: 0.05s;
}

.trans-elastic {
  transition-timing-function: cubic-bezier(0.75, -0.5, 0, 1.5);
}

.transition-fast {
  transition: all 300ms;
}

.transition-fast-ease-out {
  transition: all 300ms ease-out;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'DM Mono';

  src: url('/fonts/DMMono-Regular.woff2') format('woff2'),
    url('/fonts/DMMono-Regular.woff') format('woff');

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';

  src: url('/fonts/TitilliumWeb-Regular.woff2') format('woff2'),
    url('/fonts/TitilliumWeb-Regular.woff') format('woff');

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';

  src: url('/fonts/TitilliumWeb-Bold.woff2') format('woff2'),
    url('/fonts/TitilliumWeb-Bold.woff') format('woff');

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

html,
body,
table {
  -webkit-tap-highlight-color: transparent;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'pnum' 1, 'tnum' 0, 'onum' 0, 'lnum' 0,
    'dlig' 0;
}

body {
  font-family: Titillium Web, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  letter-spacing: 0.025em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 1.5rem;
}

@media (min-width: 941px) {
  h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1481px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.25rem;
}

@media (min-width: 941px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1481px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 941px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1481px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.125rem;
}

@media (min-width: 941px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1481px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1rem;
}

@media (min-width: 941px) {
  h5 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1481px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}

@media (min-width: 941px) {
  h6 {
    /* @apply text-sm; */
  }
}

@media (min-width: 1481px) {
  h6 {
    /* @apply text-base; */
  }
}

.bn-onboard-custom.bn-onboard-modal {
  /* font-family: 'Helvetica Neue', 'DM Mono', 'Courier', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important; */
  z-index: 100000;
  /* z-index:99 */
}

.bn-onboard-custom.bn-onboard-modal {
  overflow: auto !important;
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 941px) {
  .bn-onboard-custom.bn-onboard-modal {
    overflow: auto !important;
    /* width: auto !important;
    height: auto !important; */
  }
}

.bn-onboard-custom {
  margin: 0;
  font-family: 'Titillium Web', Arial, sans-serif !important;
}

.bg-body.theme-light .bn-onboard-custom .bn-onboard-modal-content {
  box-shadow: 0 10px 25px -1px rgba(0, 0, 0, 0.1), 0 10px 10px 5px rgba(0, 0, 0, 0.04) !important;
}

.bn-onboard-custom .bn-onboard-modal-content {
  box-shadow: 0 20px 30px 10px rgba(0, 0, 0, 0.3), 0 20px 20px -3px rgba(0, 0, 0, 0.05) !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  padding: 32px !important;
  height: 100% !important;
  width: 100% !important;
}

@media (min-width: 941px) {
  .bn-onboard-custom .bn-onboard-modal-content {
    border-radius: 12px !important;
    max-width: 300px !important;
    height: auto !important;
    width: auto !important;
  }
}

.bn-onboard-custom .bn-onboard-modal-content-close {
  border-radius: 100% !important;
}

.bn-onboard-custom .bn-onboard-modal-content-header {
  background: #9899ff !important;
  height: 70px !important;
  margin: 0 -2rem !important;
  padding: 1rem 2rem !important;
}

@media (min-width: 941px) {
  .bn-onboard-custom .bn-onboard-modal-content-header {
    margin: -2rem -2rem -0rem !important;
  }
}

.bn-onboard-custom.bn-onboard-modal-content-close {
  top: 3.75rem !important;
}

@media (min-width: 941px) {
  .bn-onboard-custom.bn-onboard-modal-content-close {
    top: 1.75rem !important;
  }
}

.bn-onboard-custom.bn-onboard-modal-content-close svg {
  fill: #fff !important;
  height: 14px !important;
  width: 14px !important;
}

.bn-onboard-custom .bn-onboard-modal-content-header-icon {
  display: none;
}

.bn-onboard-custom .bn-onboard-icon-button {
  border-radius: 10px !important;
  border: 2px solid #4c249f !important;
}

.bn-onboard-custom .bn-onboard-icon-button div {
  width: 25px;
  height: 25px;
}

.bn-onboard-custom .bn-onboard-icon-button div img,
.bn-onboard-custom .bn-onboard-icon-button div svg {
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  height: auto;
}

.bn-onboard-custom .bn-onboard-icon-button span {
  color: #002237 !important;
  margin-left: 16px;
  /* font-weight:500!important */
}

.bn-onboard-custom .bn-onboard-custom.bn-onboard-dark-mode-background,
.bn-onboard-custom .bn-onboard-custom.bn-onboard-dark-mode-background-hover:hover {
  background: #4c249f !important;
}

.bn-onboard-custom.bn-onboard-selected-wallet {
  background: #4c249f !important;
}

.bn-onboard-custom.bn-onboard-dark-mode-background.bn-onboard-prepare-error {
  background-color: black !important;
  font-size: 1rem;
  font-weight: 900;
  padding-left: 1rem;
}

.bn-onboard-custom.bn-onboard-prepare-description {
  font-size: 1rem;
  font-weight: 900;
}

.bn-onboard-custom.bn-onboard-selected-wallet i {
  color: #5af5db !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

.bn-onboard-custom.bn-onboard-dark-mode-link {
  border: 2px solid #5af5db !important;
  color: #5af5db !important;
  font-weight: 900 !important;
}

.bn-onboard-custom .bn-onboard-select-wallet-info {
  color: #784ffe !important;
  transition: 0.3s;
}

.bn-onboard-custom .bn-onboard-modal-content-header-heading {
  font-size: 1rem !important;
  margin-left: 0;
  color: #341762 !important;
}

.bn-onboard-custom.bn-onboard-select-description {
  display: none !important;
}

.bn-onboard-custom.bn-onboard-modal-select-wallets {
  flex-flow: column !important;
  margin: 1.5rem -7px !important;
}

.bn-onboard-custom.bn-onboard-dark-mode {
  background: #172262 !important;
}

.bn-onboard-custom.bn-onboard-dark-mode .bn-onboard-select-wallet-info {
  color: #a472f7 !important;
  font-weight: 900 !important;
  transition: 0.1s;
}

.bn-onboard-custom.bn-onboard-dark-mode .bn-onboard-select-wallet-info:hover {
  color: #fff !important;
}

.bn-onboard-custom.bn-onboard-icon-display {
  padding: 2rem 0 !important;
}

.bn-onboard-custom.bn-onboard-modal-selected-wallet p {
  font-size: 1rem !important;
  padding: 0 0 2rem 0 !important;
}

.bn-onboard-custom.bn-onboard-dark-mode .bn-onboard-icon-button span,
.bn-onboard-custom.bn-onboard-dark-mode .bn-onboard-modal-content-header-heading {
  color: #fff !important;
}

.bn-onboard-dark-mode-close-background:hover {
  background: #21262b !important;
}

.bn-onboard-custom.bn-onboard-select-wallet-definition,
.bn-onboard-custom.bn-onboard-select-wallet-definition a {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.bn-onboard-custom.bn-onboard-select-wallet-definition a {
  color: #05e6c4 !important;
}

.bn-onboard-select-info-container .bn-onboard-custom.bn-onboard-prepare-button {
  display: none !important;
}

@media only screen and (max-width: 450px) {
  .bn-onboard-custom.bn-onboard-modal-select-wallets {
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1), inset 0 0 5px rgba(0, 0, 0, 0.05);
    margin: 0 -2rem 1.5rem -2rem !important;
    max-height: 400px !important;
    padding: 1rem 2rem !important;
  }
}

[data-reach-tooltip] {
  --text-opacity: 1;
  color: #dc6be5;
  color: rgba(220, 107, 229, var(--text-opacity));
  background: white;
  box-shadow: 0 -10px 10px -1px rgba(0, 0, 0, 0.05), 0 20px 20px -3px rgba(0, 0, 0, 0.1),
    rgba(14, 16, 60, 0.08) 0px 15px 30px;
  border: 0;
  color: #210a45;
  padding: 1.25rem 2rem;
  border-radius: 8px;
  pointer-events: initial;
  max-width: 16rem;
  white-space: initial;
  z-index: 1823774;
}

@media (min-width: 941px) {
  [data-reach-tooltip] {
    max-width: 30rem;
  }
}

[data-reach-dialog-overlay] {
  background: text-purple-400;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  z-index: 1823770;
}

[data-reach-dialog-content] {
  background: transparent;
  margin: 10vh auto;
  padding: 0;
  max-width: 600px;
  pointer-events: none;
  outline: none;
  width: 80vw;
}

[data-reach-dialog-content] > div,
[data-reach-dialog-content] > button {
  pointer-events: initial;
}

[data-reach-popover] {
  padding: 0;
  border-width: 0;
  border-color: var(--color-border-transparent);
  border-radius: 0.125rem;
  margin-top: 10px;
  z-index: 5001;
}

[data-reach-menu-items] {
  padding: 0;
  border-width: 0;
  border-color: var(--color-border-transparent);
  border-radius: 0.125rem;
  font-size: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  background-color: var(--color-bg-body);
}

@media (min-width: 941px) {
  [data-reach-menu-items] {
    font-size: 1.125rem;
  }
}

[data-reach-menu-item] {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--color-text-accent-1);
  display: flex;
  align-items: center;
  transition: all 200ms ease-in;
}

@media (min-width: 941px) {
  [data-reach-menu-item] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

[data-reach-menu-item]:first-child {
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

[data-reach-menu-item]:last-child {
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

[data-reach-menu-item].selected {
  color: var(--color-text-accent-1);
  background-color: rgba(76, 36, 159, 0.7);
}

[data-reach-menu-item]:hover {
  color: var(--color-text-highlight-3);
  background-color: rgba(76, 36, 159, 0.7);
}

.dialog-inner {
  border-radius: 6px;
}

.dialog-inner-content {
  flex: 1;
}

@media screen and (max-width: 780px) {
  [data-reach-dialog-content] {
    max-width: initial;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
  }

  .dialog-inner {
    border: 0;
    border-radius: 0;
    height: 100%;
    width: 100%;
  }

  .dialog-inner-content {
    height: 100%;
  }
}

