/* You can add global styles to this file, and also import other style files */
@font-face {
  font-family: Poppins-Regular;
  src: url('Poppins-Regular.35d26b781dc5fda684cc.ttf');
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url('Poppins-SemiBold.ac8d04b620e54be9b0f0.ttf');
}
@font-face {
  font-family: Poppins-Bold;
  src: url('Poppins-Bold.cdb29a5d7ccf57ff05a3.ttf');
}
@font-face {
  font-family: Poppins-Italic;
  src: url('Poppins-Italic.e373f6163127e2d469af.ttf');
}
@font-face {
  font-family: Poppins-Medium;
  src: url('Poppins-Medium.673ed42382ab264e0bf5.ttf');
}
@font-face {
  font-family: 'Sacramento-Regular';
  src: url('Sacramento-Regular.5bd7d5208f7a9c18fe22.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SeaweedScript-Regular';
  src: url('SeaweedScript-Regular.4e0df69f0d20f3185d53.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
#container {
  flex: 1;
  height: 100svh;
  overflow: auto;
  background-color: #0d0d0d;
}
.parentRoot {
  background-color: #0d0d0d;
  height: 100%;
  display: flex;
  padding-left: 10vw;
  padding-right: 10vw;
  align-items: center;
  justify-content: center;
}
.desktopRoot {
  width: 375px;
  height: 677px;
  -webkit-overflow-scrolling: touch;
  margin: 0px;
  padding: 0px;
  flex-shrink: 0;
  flex-basis: auto;
  display: flex;
  overflow: hidden;
  border: double 1em transparent;
  border-radius: 20px;
  border-width: 0.5px;
  background-image: linear-gradient(#0d0d0d, #0d0d0d),
    linear-gradient(to bottom, #434343 33%, #fff 51%, transparent 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.desktopRoot.smallScreen {
  width: 350px;
  height: 600px;
}
.desktopRoot.mediumScreen {
  width: 350px;
  height: 620px;
}
.desktopRootPanel {
  height: 100svh;
  display: flex;
}
.desktopRootPanel.desktop {
  align-items: center;
  justify-content: center;
}
.sidePanelDesktopMode {
  visibility: visible;
  padding-left: 10vw;
  width: 100%;
  flex-direction: column;
  background-color: #3e3f3e;
}
.gradientText {
  background: linear-gradient(to left, #e94578, #fc8440);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: bold;
  background-clip: text;
}
.socialIcons {
  margin-right: 3.6vh;
  width: 23px;
  height: 23px;
}
.storeButton {
  margin-right: 2.6vh;
  width: 140px;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: calc(100% + env(safe-area-inset-top));
}
*:focus {
  outline: none;
}
body {
  touch-action: pan-y;
  display: flex;
  overflow-y: auto;
  overscroll-behavior-y: none;
  overscroll-behavior: none;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: scrollbar;
  overflow-y: hidden;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}
#loader {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #444444;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.imagesContainer {
  display: flex;
  flex-direction: row;
  margin-top: 45px;
}
.imagesItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 5vw;
  height: 120px;
}
.cardImage {
  width: 70px;
}
.cardTitle {
  color: #fff;
  font-size: 12px;
  font-family: Poppins-Semibold;
  margin-top: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cardSubTitle {
  color: #fff;
  font-size: 12px;
  font-family: Poppins-Regular;
  margin-top: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.subTitle {
  color: #fff;
  font-size: 35px;
  font-family: Poppins-Semibold;
  margin-top: 25px;
}
.title {
  color: #fff;
  font-size: 58px;
  margin-top: 15px;
  font-family: Poppins-Semibold;
}
.zypeLogo {
  width: 100px;
  margin-top: 5vh;
}
@media only screen and (max-width: 900px) {
  #leftPanel {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .subTitle {
    font-size: 28px;
  }
  .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1280px) {
  .sidePanelDesktopMode {
    padding-left: 5vw;
  }
}
@media only screen and (max-height: 620px) {
  .parentRoot {
    align-items: flex-start;
  }
  .cardImage {
    width: 55px;
  }
  .subTitle {
    font-size: 28px;
  }
  .title {
    font-size: 48px;
  }
  .zypeLogo {
    width: 80px;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

