@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap);
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: rgb(0, 0, 0);
  font-family: "Nunito Sans", Arial, sans-serif;
}

canvas {
  display: block;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

button:disabled {
  cursor: default;
}

h2,
p,
ul,
button {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666666;
}

::-webkit-scrollbar-track {
  background: #222222;
  border-radius: 10px;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.vr-modal,
.vr-modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.vr-modal-overlay {
  z-index: -1;
  background: rgba(0, 0, 0, 0.35);
}

.vr-modal-container {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #222222;
  padding: 1.1rem 0;
  display: flex;
  flex-direction: column;
}

.vr-modal-container.in {
  animation: openModal 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.vr-modal-container.out {
  animation: closeModal 0.15s ease-out forwards;
}

.vr-modal.fadeOut {
  animation: fadeOut 0.15s ease-out forwards;
}

.vr-modal .header,
.vr-modal .body {
  padding: 0 1rem;
}

.vr-modal .body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.vr-modal .footer {
  padding: 0.75rem 0;
}

.vr-modal .header>.title {
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 1.75rem;
}

.vr-modal .header>.title:not(.error) {
  color: #f28928;
}

.vr-modal .header>.title.error {
  color: #ff0000;
}

.vr-modal .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  padding: 0.65rem 1rem;
  color: white;
}

.vr-modal .play-btn.real-mode {
  width: 100%;
  font-size: 1.25rem;
  padding: 0.5em 0;
}

.vr-modal .play-btn.real-mode.active {
  background: linear-gradient(140deg, #f28928 23.81%, #ffbc10 73.15%);
  color: #ffffff;
}

.vr-modal .play-btn.real-mode.disabled {
  background: rgb(82, 82, 9);
  color: white;
  opacity: 0.7;
}

.vr-modal .play-btn img {
  width: 1em;
  vertical-align: middle;
  margin-top: -0.25rem;
  margin-left: 0.35rem;
}

button.play-btn.demo-mode:hover {
  border-color: #000000;
  background: linear-gradient(140deg, #f28928 23.81%, #ffbc10 73.15%);
  color: #222222;
}

#play-button:hover,
#reserve-button:hover {
  filter: saturate(150%);
}

button.close-btn:hover {
  font-weight: 700;
}

.vr-modal p,
.vr-modal ul {
  color: white;
}

.vr-modal .play-btn.real-mode.active#reserve-button {
  margin-top: 0.5em;
  padding: 0.5rem 0 0.45rem 0;
  background: linear-gradient(145deg, #3f3f46 16.24%, #606060 76.26%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.vr-modal #credit-slider,
.vr-modal #reserve-slider {
  width: 85%;
  height: 2.25em;
  -webkit-appearance: none;
  background: #000;
  border-radius: 3em;
  overflow: hidden;
}

.vr-modal #credit-slider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 2.25em;
  height: 2.25em;
  border-radius: 50%;
  background: #f28928;
  cursor: pointer;
  border: 0.3em solid #333;
  box-shadow: -21em 0 0 20em #f28928;
}

.vr-modal #credit-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.25em;
  height: 2.25em;
  border-radius: 50%;
  background: #f28928;
  cursor: pointer;
  border: 0.3em solid #333;
  box-shadow: -21em 0 0 20em #f28928;
}

.vr-modal #reserve-slider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 2.25em;
  height: 2.25em;
  border-radius: 50%;
  background: #f28928;
  cursor: pointer;
  border: 0.3em solid #333;
  box-shadow: -21em 0 0 20em #f28928;
}

.vr-modal #reserve-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.25em;
  height: 2.25em;
  border-radius: 50%;
  background: #f28928;
  cursor: pointer;
  border: 0.3em solid #333;
  box-shadow: -21em 0 0 20em #f28928;
}

@media (min-width: 481px) {
  .vr-modal .body {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    column-gap: 2rem;
    width: 100%;
  }

  .vr-modal-container {
    /* height: fit-content; */
    max-height: 100%;
    overflow-y: auto;
  }
}

@media (min-width: 768px) {
  .vr-modal .body {
    column-gap: 1rem;
  }

  .vr-modal {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vr-modal-container {
    width: 75%;
    min-height: 275px;
    height: fit-content;
    max-height: 100%;
    border-radius: 18px;
    overflow-y: auto;
  }
}

@media (min-width: 992px) {
  .vr-modal-container {
    width: 60%;
  }

  /* .vr-modal .body {
    column-gap: 2rem;
  } */
}

@media (min-width: 1200px) {
  .vr-modal-container {
    width: 50%;
  }
}

@media (min-width: 1440px) {
  .vr-modal-container {
    width: 35%;
  }
}

@keyframes openModal {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes closeModal {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.25);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 100%;
  }

  100% {
    opacity: 0%;
  }
}
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
    background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
    background: linear-gradient(135deg, #73a5ff, #5477f5);
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 2147483647;
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: 0.4;
    padding: 0 5px;
}

.toastify-right {
    right: 15px;
}

.toastify-left {
    left: 15px;
}

.toastify-top {
    top: -150px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
    .toastify-right, .toastify-left {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: fit-content;
    }
}

