@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnPKruQQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firasans/v16/va9E4kDNxMZdWfMOD5VfkA.ttf) format('truetype');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnZKvuQQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnSKzuQQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnLK3uQQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
body {
  background-color: black;
  color: white;
  /*background-image: url(/imgs/bg.webp);*/
  font-family: 'Fira Sans', sans-serif;
}
.input {
  background-image: url(/imgs/Text-L.webp);
  width: calc(100% - 20px);
  background-size: 100% 100px;
  background-repeat: no-repeat;
  height: 100px;
  padding: 13px;
  font-family: 'Fira Sans', sans-serif;
  color: white;
  position: relative;
}
.input:focus-within {
  background-image: url(/imgs/Text-L-Focused.webp);
}
.input:focus-within label {
  color: black;
}
.input.sm {
  background-image: url(/imgs/Text-S.webp);
}
.input.sm:focus-within {
  background-image: url(/imgs/Text-S-Focused.webp);
}
.input.md {
  background-image: url(/imgs/Text-M.webp);
}
.input.md:focus-within {
  background-image: url(/imgs/Text-M-Focused.webp);
}
.input.lg {
  background-image: url(/imgs/Text-L.webp);
}
.input.lg:focus-within {
  background-image: url(/imgs/Text-L-Focused.webp);
}
.input.otp {
  background-image: url(/imgs/Text-OTP.webp);
}
.input.otp:focus-within {
  background-image: url(/imgs/Text-S-OTP.webp);
}
.input.otp input {
  letter-spacing: 22.5px;
  padding-left: 32px;
}
.input.otp span {
  /* margin-left: -43px; */
  font-size: 12px;
  /* font-weight: 500; */
  /* margin-left: -43px; */
  /* font-weight: 500; */
  color: red;
}
.input label {
  display: block;
  color: white;
  font-size: small;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 1300px) {
  .input label {
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) {
  .input label {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .input label {
    font-size: 12px;
  }
}
.input input {
  display: inline-block;
  border-width: 0;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  /* width: calc(100% - 45px); */
  font-size: larger;
  padding: 10px;
  line-height: 1px;
  color: inherit;
  letter-spacing: 5px;
}
.input a.otp {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  position: absolute;
  right: 20px;
  bottom: 30px;
  color: white;
}
.input.alert {
  margin-bottom: unset;
}
.input.alert input {
  width: calc(100% - 100px);
}
.input.alert > .message {
  padding: 2px;
}
.input.alert > .message.error {
  color: red;
  float: right;
}
.input.alert > .message.success {
  color: green;
  float: right;
}
@media screen and (max-width: 1300px) {
  .input.otp input {
      letter-spacing: 22px;
      padding-left: 32px;
  }
}

@media screen and (max-width: 960px) {
  .input.otp input {
      letter-spacing: 22.5px;
      padding-left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .input.otp input {
    letter-spacing: 20px;
    padding-left: 30px;
  }
}
.floating-form {
  position: absolute;
  top: 50%;
  left: 20%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.floating-form > .signup-panel {
  background-repeat: no-repeat;
  background-image: url(/imgs/Login_BG.webp);
  margin: 0;
  padding: 10px 20px 10px 25px;
  background-size: 100% 100%;
  min-height: 550px;
}
.floating-form > .signup-panel > .header {
  text-align: center;
}
.floating-form > .signup-panel > .header > * {
  max-height: 100px;
  max-width: 80%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.floating-form > .signup-panel > .body {
  padding: 15% 0%;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .floating-form {
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .floating-form {
    width: 100% !important;
    left: 50%;
    height: 80vh;
    margin-top: 0vh;
  }
  .floating-form > .signup-panel {
    height: 60vh;
  }
}
/* Menu css */
.toggle-menu {
  width: 250px;
  position: absolute;
  top: 5px;
  left: 5px;
  text-align: center;
}
.toggle-menu .menu-row {
  width: 100%;
  display: flex;
}
.toggle-menu .menu-row .menu-col-full {
  width: 99%;
  display: inline-block;
}
.toggle-menu .menu-row .menu-col-full img {
  margin-left: -4%;
}
.toggle-menu .menu-row .menu-col {
  width: 49.5%;
  display: inline-block;
}
.toggle-menu .menu-row .menu-col.over-lap {
  margin-left: -8%;
  margin-top: 1%;
}
.toggle-menu .menu-row .menu-col .bttn {
  width: 100%;
  height: auto;
}
.toggle-menu .menu-row img {
  max-width: 100%;
}
@media screen and (max-width: 1300px) {
  .toggle-menu {
    width: 180px;
  }
}
@media screen and (max-width: 960px) {
  .toggle-menu {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .toggle-menu {
    width: 120px;
  }
}
/* Buttons and the pannels */
.list-item {
  background-image: url('/imgs/List_Messages.webp');
  width: 100%;
  /* height: 100px; */
  background-repeat: no-repeat;
  color: white;
  text-align: justify;
  font-size: larger;
  padding: 5px 20px 0px 20px;
  background-size: 100% 100%;
}
.list-item p::-webkit-scrollbar {
  display: none;
}
.list-item.sm {
  background-image: url(/imgs/List-Item-S.webp);
  max-height: 80px;
  min-height: 60px;
  padding-top: 1px;
}
.list-item.sm p {
  height: 20px;
  width: 100%;
  overflow: scroll;
}
.list-item.md {
  background-image: url('/imgs/List-Item-M.webp');
  max-height: 120px;
  min-height: 100px;
}
.list-item.md p {
  width: 100%;
  height: 60px;
  overflow: scroll;
}
.list-item.lg {
  background-image: url('/imgs/List-Item-L.webp');
  max-height: 200px;
  min-height: 160px;
  position: relative;
}
.list-item.lg p {
  height: 110px;
  width: 100%;
  overflow: scroll;
}
/* HEXAGON WITH IMAGE IN IT'S CENTER */
.hexa-card {
  background-image: url(/imgs/Hexagon_Gradient_M.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
.hexa-card > * {
  max-height: 98%;
  max-width: 98%;
  max-height: 50%;
  max-width: 50%;
  padding: 20%;
  margin-top: 10%;
}
.hexa-card.sm {
  background-image: url(/imgs/Hexagon_Gradient_S.webp);
}
.hexa-card.md {
  background-image: url(/imgs/Hexagon_Gradient_M.webp);
}
.button {
  background-color: transparent;
  background-image: url(/imgs/Button.webp);
  background-size: 100% 100px;
  background-repeat: no-repeat;
  padding-left: 15px;
  font-family: 'Fira Sans', sans-serif;
  color: white;
  display: inline-block;
  border-width: 0;
  outline: none;
  box-shadow: none;
  font-size: 28px;
  padding: 18px;
  color: inherit;
  cursor: pointer;
  width: 200px;
  height: 90px;
  text-transform: uppercase;
}
.button.blk {
  width: 100%;
}
.button:hover {
  background-image: url(/imgs/Button.webp);
}
.button:focus{
  outline: unset;
}
.button.btnValidateOtp {
  font-size: 18px;
}
/* this is for alert dialog  */
.alert-dialog {
  background-image: url(/imgs/Tabed-Title.webp);
  width: calc(100% - 20px);
  background-size: 100% 100px;
  background-repeat: no-repeat;
  height: 100px;
  padding-left: 15px;
  font-family: 'Fira Sans', sans-serif;
  color: white;
  margin-left: auto;
  margin-right: auto;
  margin-top: 165px;
  /* align-items: center; */
}
.alert-dialog label {
  display: block;
  color: white;
  padding-top: 14px;
  font-size: small;
  margin-bottom: 11px;
  padding-left: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #15a6e9;
  text-decoration: underline;
}
.alert-dialog p {
  padding-left: 17px;
  padding-top: 6px;
  font-weight: 600;
  font-size: 17px;
}
.alert-dialog .hexa-card > * {
  padding: 20%;
  margin-top: 9%;
  width: 22%;
}
/* Tabbed pannel */
.tabbed-title {
  background-image: url(/imgs/BG_Information.webp);
  width: 100%;
  background-size: 100% 100px;
  background-repeat: no-repeat;
  height: 100px;
  padding-left: 15px;
  font-family: 'Fira Sans', sans-serif;
  color: white;
  margin-left: auto;
  margin-right: auto;
  /* align-items: center; */
}
.tabbed-title.sm {
  background-image: url(/imgs/BG_Information_S.webp);
}
.tabbed-title.sm .title-body {
  margin: 15px 5px 5px 15px;
  height: 20%;
  width: 90%;
}
.tabbed-title.md {
  background-image: url(/imgs/BG_Information_M.webp);
}
.tabbed-title.md .title-body {
  margin: 8px 5px 5px 15px;
  height: 36%;
  width: 90%;
}
.tabbed-title.lg {
  background-image: url(/imgs/BG_Information_L.webp);
}
.tabbed-title.lg .title-body {
  margin: 6px 5px 5px 15px;
  height: 45%;
  width: 90%;
}
.title-header {
  padding: 15px 0 0px 20px;
  color: #00d0ff;
  text-decoration: underline;
}
.title-body {
  overflow: scroll;
}
.title-body::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
/* avtar selection */
.avatar-card {
  /* position: absolute; */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: auto;
  margin: 14px 0px 20px 108px;
}
.avatar-card::-webkit-scrollbar {
  display: none;
}
.container .button {
  color: white;
}
.avatar {
  position: relative;
  list-style: none;
  /* padding: 0px 130px; */
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  cursor: pointer;
  width: 26%;
  margin-right: 17px;
  margin-top: 25px;
  margin-left: 34px;
}
.avatar::before {
  content: "";
  background-image: url('/imgs/Avatar_Selected_BG.webp');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
}
.avatar img {
  width: 37%;
  height: auto;
  padding-top: 37px;
  padding-left: 67px;
}
.avatar p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  transform: translateY(10px);
  padding-left: 60px;
  margin-top: 4px;
}
.avatar.active {
  background-image: url('/imgs/Avatar_BG.webp');
  position: relative;
  /* padding: 0px 125px; */
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  /* text-align: center; */
  cursor: pointer;
}
.avatar1 {
  /* position: relative;  */
  /* list-style: none; */
  /* padding: 0px 130px; */
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  /* cursor: pointer; */
  width: 62%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 37px;
}
.avatar1 img {
  width: 41%;
  height: auto;
  padding-top: 51px;
  padding-left: 95px;
}
.avatar1 p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 31px;
  text-transform: uppercase;
  transform: translateY(10px);
  padding-left: 101px;
  margin-top: 8px;
  display: inline-block;
}
.img-top4 {
  max-width: 120px;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .img-top4 {
    width: 100px;
  }
}
@media screen and (max-width: 960px) {
  .img-top4 {
    width: 85px;
  }
}
@media screen and (max-width: 768px) {
  .img-top4 {
    width: 65px;
  }
}
/* pledge list */
.pledge-dialog {
  background-repeat: no-repeat;
  background-image: url(/imgs/pledge_BG.webp);
  margin: 0;
  padding: 10px 20px 10px 19px;
  background-size: 100% 100%;
  min-height: 637px;
  width: 37%;
  margin-left: auto;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .pledge-dialog {
    left: 35%;
    margin: auto;
    right: auto;
    width: 40%;
    height: 70%;
    top: 15%;
    padding: 10px;
    padding-right: 10px;
  }
}
.pledge-dialog .header {
  font-size: medium;
}
@media screen and (max-width: 768px) {
  .pledge-dialog .header {
    font-size: small;
  }
}
.pledge {
  margin-top: 20px;
}
.pledge .head {
  text-align: center;
  margin-top: 27px;
  margin-bottom: 22px;
  font-weight: bold;
}
.pledge .list-item {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.pledge .list-item.sm {
  padding-top: 10px;
  padding-bottom: 5px;
  min-height: 87px;
}
.pledge .list-item.sm p {
  height: 46px;
  width: 100%;
  overflow: scroll;
}
/* zone selection */
.zone-selection {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  background-image: url(/imgs/Carousel_BG.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: 'Fira Sans', sans-serif;
  color: #f7f2f2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0% 10%;
  /* transform: scale(0.9); */
}
.zone-dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.zones {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 10%;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zones {
    margin-bottom: 0%;
  }
}
.zone-hex {
  width: auto;
  height: 109px;
  cursor: pointer;
  margin: 1%;
}
.zone-hex img {
  width: auto;
  height: 109px;
}
@media screen and (max-width: 768px) {
  .zone-hex img {
    width: auto;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .zone-hex {
    margin: 0%;
    font-size: x-small;
  }
}
@media screen and (max-width: 768px) {
  .zone-hex span {
    font-size: 15px;
  }
}
.zone-container {
  padding: 10%;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.fullmode {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.fullmode canvas {
  height: 100vh;
  width: 100vw;
}
.info-screen {
  position: absolute;
  color: white;
  width: 100vw;
  height: 100vh;
  background-color: #123123cc;
  top: 0;
  text-align: center;
  padding: 5% 10%;
  z-index: 1;
}
.info-screen img {
  max-width: 75%;
}
.dave-icon {
  position: absolute;
  top: 0px;
  right: 0px;
}
.faq-serarch {
  position: absolute;
  width: 30%;
  height: 30%;
  top: 35px;
  right: 95px;
  z-index: 10000;
  background-image: url('/imgs/FAQs_box.webp');
  background-size: 100% 100%;
  padding-right: 15px;
  padding-top: 5%;
}
.faq-serarch .body {
  overflow-y: auto;
  height: 100%;
  padding-right: 5px;
}
.faq-serarch ul {
  margin-top: 10px;
}
.faq-serarch ul li {
  border-color: #00D1FF;
  color: white;
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 10px;
  border-width: 0.2px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  padding: 5px 7px 3px 4px;
  box-shadow: 0px 0px 5px 1px #00D1FF;
  text-decoration: none;
  margin-right: 10px;
}
.faq-serarch ul li:hover {
  background-color: #ffffff55;
  color: #00D1FF;
}
@media screen and (max-width: 1300px) {
  .faq-serarch ul li {
    margin-bottom: 8px;
    padding: 2px 5px 2px 2px;
    margin-right: 5px;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .faq-serarch ul li {
    margin-bottom: 5px;
    padding: 2px 5px 2px 2px;
    margin-right: 5px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 1300px) {
  .faq-serarch {
    width: 32%;
  }
}
@media screen and (max-width: 960px) {
  .faq-serarch {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .faq-serarch {
    margin: auto;
    right: auto;
    width: 35%;
    right: 50px;
    height: 50%;
  }
}
.music-dailog {
  position: absolute;
  width: 30%;
  height: 40%;
  top: 7%;
  right: 9%;
  z-index: 10000;
  background-image: url('/imgs/music/Music\ BG.webp');
  background-size: 100% 100%;
  padding: 20px;
  padding-right: 30px;
}
.music-dailog .header {
  font-weight: 600;
  color: #00D1FF;
  padding-bottom: 5px;
  text-align: center;
}
.music-dailog .body {
  overflow-y: auto;
  height: calc(100% - 30px);
}
.music-dailog .song {
  background-image: url('/imgs/music/Music\ Out\ line.webp');
  background-repeat: no-repeat;
  padding: 2vh 3vh;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  color: #fff;
  cursor: pointer;
}
.music-dailog .song:hover {
  background-image: url('/imgs/music/hPlaylist_song.webp');
}
.music-dailog .song::after {
  content: "";
  width: 4vw;
  height: 50%;
  background-image: url(/imgs/music/Music\ Tick.webp);
  top: 20%;
  right: 5%;
  position: absolute;
  display: inline-block;
  background-size: inherit;
  background-repeat: no-repeat;
}
.music-dailog .song.added::after {
  background-image: url('/imgs/music/Tick.webp');
}
.music-dailog .song.adding::after {
  background-image: url('/imgs/music/add\ to\ q.webp');
  width: 12vw;
  top: 1.5vh;
}
.music-dailog .song span {
  width: 85%;
  height: 25px !important;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 1300px) {
  .music-dailog .song {
    padding: 1.5vh 3vh;
  }
}
@media screen and (max-width: 960px) {
  .music-dailog .song {
    padding: 1.3vh 2vh;
  }
}
@media screen and (max-width: 768px) {
  .music-dailog .song {
    padding: 1vh 2vh;
    height: 60%;
  }
}
@media screen and (max-width: 1300px) {
  .music-dailog {
    width: 30%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 960px) {
  .music-dailog {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .music-dailog {
    width: 40%;
    height: 60%;
  }
}
.music-play{
  color: white;
  background: url(/imgs/music/Now_Playing.webp);
  background-size: 100% 100%;
  padding: 30px;
  padding-left: 6%;
  height: auto;
  max-width: 20vw;
  padding-right: 34px;
  overflow: auto;
  font-size: smaller;
  position: absolute;
  top: 5%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.music-play>.now-playing{
  color:#00d0ff;
  /* position: absolute; */
  top: -20px;
  font-weight: 600;
  left: 45%;
}
.music-play>p {
  margin-bottom: 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .music-play {
    top: 0px;
    left: 35vw;
    padding: 10px;
    padding-left: 10vw;
    width: 35vw;
    padding-right: 30px;
    font-size: x-small;
  }
}

.hello-dailog {
  position: absolute;
  z-index: 10000;
  background-image: url('/imgs/music/Music\ BG.webp');
  background-size: 100% 100%;
  width: 250px;
  height: 30%;
  bottom: 100px;
  right: 120px;
  padding: 20px;
  padding-right: 30px;
}
.hello-dailog .body {
  overflow-y: auto;
  height: 100%;
}
.hello-dailog .item {
  background-image: url('/imgs/music/Music\ Out\ line.webp');
  background-repeat: no-repeat;
  padding: 1vh 2vh;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  color: #fff;
  margin-top: 5px;
  text-align: center;
  cursor: pointer;
}
.hello-dailog .item:hover {
  background-image: url('/imgs/music/hPlaylist_song.webp');
}
@media screen and (max-width: 960px) {
  .hello-dailog .item {
    font-size: smaller;
  }
}
@media screen and (max-width: 768px) {
  .hello-dailog .item {
    font-size: small;
  }
}
@media screen and (max-width: 1300px) {
  .hello-dailog {
    width: 20%;
    height: 35%;
    bottom: 80px;
    right: 100px;
    padding: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 960px) {
  .hello-dailog {
    width: 25%;
    height: 35%;
    bottom: 70px;
    right: 80px;
    padding: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .hello-dailog {
    width: 25%;
    height: 45%;
    bottom: 50px;
    right: 55px;
    padding: 5px;
    padding-right: 5px;
  }
}
.share-dailog {
  position: absolute;
  width: 45%;
  height: 60%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10000;
  background-image: url('/imgs/share/share_dailog.webp');
  background-size: 100% 100%;
  padding: 20px;
  padding-right: 30px;
  color: white;
  padding-left: 2%;
  padding-right: 2%;
}
.share-dailog .header {
  color: #00D1FF;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
}
.share-dailog .header a {
  position: absolute;
  right: 5%;
  top: 3%;
  color: white;
  font-size: x-large;
}
.share-dailog .body {
  overflow-y: auto;
  height: 65%;
  text-align: center;
}
.share-dailog .body .share-img {
  /*width: calc(100% - 20px);
  height: auto;*/
  margin: 10px;
  box-shadow: 0px 0px 5px 5px white;
  max-height: 80%;
  max-width: calc(100% - 20px);
}
.share-dailog .body .inviteurl {
  box-shadow: 0px 0px 1px 1px #00D1FF;
  padding: 5px;
  margin: 0px 15px;
  display: inline-block;
}
.share-dailog .body .inviteurl span:nth-child(2) {
  padding: 5px;
  background: #004444;
  margin: -5px -5px -5px 5px;
  display: inline-block;
  cursor: pointer;
}
.share-dailog .footer {
  height: 20%;
  text-align: center;
}
.share-dailog .footer div {
  height: 100%;
}
.share-dailog .footer img {
  max-height: 90%;
  width: auto;
  cursor: pointer;
  width: 20%;
  margin: -5px;
}
.share-dailog .item {
  background-image: url('/imgs/music/Music\ Out\ line.webp');
  background-repeat: no-repeat;
  padding: 1vh 2vh;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  color: #fff;
  margin-top: 5px;
  text-align: center;
  cursor: pointer;
}
.share-dailog .item:hover {
  background-image: url('/imgs/music/hPlaylist_song.webp');
}
@media screen and (max-width: 768px) {
  .share-dailog {
    left: 50%;
    margin: auto;
    right: auto;
    /* width: 100%; */
  }
}
.cars-dailog {
  position: absolute;
  width: 30%;
  height: 40%;
  top: 100px;
  right: 120px;
  z-index: 10000;
  background-image: url('/imgs/music/Music\ BG.webp');
  background-size: 100% 100%;
  padding: 20px;
  padding-right: 30px;
}
.cars-dailog .header {
  color: #00D1FF;
  padding-bottom: 15px;
}
@media screen and (max-width: 1300px) {
  .cars-dailog .header {
    font-size: smaller;
  }
}
@media screen and (max-width: 768px) {
  .cars-dailog .header {
    font-size: small;
  }
}
.cars-dailog .body {
  overflow-y: auto;
  height: calc(100% - 40px);
}
.cars-dailog .item {
  background-image: url('/imgs/music/Music\ Out\ line.webp');
  background-repeat: no-repeat;
  padding: 1vh 2vh;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  color: #fff;
  margin-top: 5px;
  text-align: center;
  cursor: pointer;
}
.cars-dailog .item:hover {
  background-image: url('/imgs/music/hPlaylist_song.webp');
}
.cars-dailog .item.selected {
  background-image: url('/imgs/music/hPlaylist_song.webp');
}
.cars-dailog .fa {
  float: right;
  color: white;
}
@media screen and (max-width: 1300px) {
  .cars-dailog {
    top: 60px;
    right: 80px;
    padding: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cars-dailog {
    left: 30%;
    margin: auto;
    right: auto;
    width: 40%;
    height: 70%;
    top: 15%;
    padding: 10px;
    padding-right: 10px;
  }
}
.cars-dailog-buttons {
  position: absolute;
  right: 0;
  bottom: 0;
}
.bottom-buttons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: right;
}
.bottom-buttons img {
  cursor: pointer;
  width: 80px;
  margin-left: 0px;
}
@media screen and (max-width: 1300px) {
  .bottom-buttons img {
    width: 70px;
  }
}
@media screen and (max-width: 960px) {
  .bottom-buttons img {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bottom-buttons img {
    width: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .bottom-buttons {
    bottom: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 960px) {
  .bottom-buttons {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .bottom-buttons {
    bottom: 5px;
    right: 5px;
  }
}
.telliporting {
  position: absolute;
  color: white;
  width: 100vw;
  height: 100vh;
  background-color: #12312373;
  top: 0;
  text-align: center;
  z-index: 1000;
}
.telliporting .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: unset;
  height: unset;
}
.telliporting .loader img {
  max-height: 50px;
  position: unset;
  transform: unset;
  -ms-transform: unset;
}
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 30px;
  width: auto;
}
.loading-video video{
    max-width: 95vw;
    max-height: 70vh;
}
.loading-video .loader{
  top: 90%;
}
#carouselExampleIndicators {
  z-index: 1000;
  position: absolute;
  background-color: #000000cc;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
#carouselExampleIndicators > .carousel-inner {
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90vw;
}
.notice-dailog {
  width: 30vw;
  min-height: 10vh;
  z-index: 10000;
  background-image: url('/imgs/BG_Information.webp');
  background-size: 100% 100%;
  padding: 20px;
  padding-right: 15px;
  padding-top: 40px;
  margin-bottom: 20px;
}
.notice-dailog.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.notice-dailog > .notice {
  position: absolute;
  top: 15px;
  left: 25px;
  color: #00D1FF;
  font-weight: 600;
  text-decoration: underline;
}
#slide-container {
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 1;
  position: fixed;
}
#toggleContainer {
  height: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 95vw;
  position: absolute;
}
#galleryContainer {
  height: 100vh;
  width: 100vw;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
#galleryView {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(111deg, #000000 0%, #00000099 52%, #000000cc 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainView {
  height: auto;
  width: 100vw;
  max-height: 100vh;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 1;
  transition: all 1s;
}
#mainView:hover {
  transform: scale(1);
  transition: all 1s;
}
#leftView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(5deg);
  transform-origin: top right;
  background-color: #00D1FF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}
#leftView:hover {
  opacity: 1;
  transition: all 1s;
}
#rightView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(-5deg);
  transform-origin: top left;
  background-color: #00D1FF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}
#rightView:hover {
  opacity: 1;
  transition: all 1s;
}
.navBtns {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  position: absolute;
  opacity: 0.8;
  background-color: transparent;
  cursor: pointer;
  color: white;
}
.navBtns:hover {
  opacity: 1;
  transition: all 1s;
  background-color: #00D1FF;
}
#navLeft {
  left: 50px;
  z-index: 2;
}
#navRight {
  right: 50px;
  z-index: 1;
}
#linkTag {
  cursor: pointer;
  z-index: 1;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 5px;
  height: 80%;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.rotate {
  visibility: hidden;
  z-index: -888;
  position: absolute;
}
@media all and (orientation: portrait) {
  .rotate {
    visibility: visible;
    background: rgba(13, 1, 23, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 999999;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    position: fixed;
  }
  .rotate .image {
    height: 100%;
  }
}
