:root {
  --theme-color: hsl(188, 98%, 10%);
  --transition-duration: 250ms;
}
body {
  /*background-color: var(--theme-color);*/
  transition: background-color var(--transition-duration);
}
*::-webkit-scrollbar {
  display: none;
}
*.example {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* ************************************************************
***************************************************************
***************************************************************
 GLOBAL & BASIC ELEMENTS
***************************************************************
***************************************************************
************************************************************* */
#smoothPreloadScreen  {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: hsl(var(--col_gs_black));
}
.viewBox,
.modalBox {
  min-height: calc(var(--windowHeight) - var(--footerNavHeight));
  max-width: var(--windowWidth);
  overflow-x: visible;
  position: relative;
}
.viewBox section,
.modalBox section {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  padding-left: 9.66vw;
  padding-right: 9.66vw;
  padding-top: var(--headerNavHeight) !important;
  padding-bottom: calc(var(--footerNavHeight)) !important;
  display: none;
}
.viewBox section.active{
  display: block;
}
.modalBox section.active {
  display: flex;
  padding-bottom: 2.5rem !important;
}
.modalBox section.active > .body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.viewBox section.posAbs,
.modalBox section.posAbs {
  position: absolute;
  padding-left: 9.66vw;
  padding-right: 9.66vw;
}
.viewBox section.posRla,
.modalBox section.posRla {
  position: relative;
}
.viewBox section.posFix,
.modalBox section.posFix {
  position: fixed;
}
.viewBox section .container,
.modalBox section .container {
  max-width: 500px;
  margin: 0px auto;
  padding: 2rem;
}
.modalBox section .inner {
  padding: 2rem;
}

.modalBox.active {
  z-index: 1001; /* 1 over Footer menu bar */
}
.modalBox {
  position: fixed;
  /*position: absolute;*/
  /*background: hsl(var(--col_gs_gray6));*/
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  min-height: calc(var(--windowHeight) - 50px);
}
.modalBox section {
  max-height: 100%;
  flex-direction: column;
  min-height: calc(var(--windowHeight));
  overflow-x: hidden;
  overflow-y: scroll;
  background: hsla(var(--col_gs_gray6),0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-top: 0px !important;
}
.modalBox section.contentHeight {
  min-height: auto;
  position: absolute;
  top: auto;
  bottom: 0px;
}
.modalBox section.contentHeight .header {
  padding-top: 1rem;
}
.modalBox section .header {
  position: sticky;
  top: 0rem;
  left: 0px;
  transform: translateX(-9.66vw);
  width: calc(100% + 19.32vw);
  padding: 1rem;
  margin-bottom: 0rem;
  z-index: 999;
  background: hsl(var(--col_gs_gray6));
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.modalBox section .header.visible {
  display: flex;
}
.modalBox section .header > div {
  width: 60%;
  text-align: center;
  color: var(--fiery_3);
  font-weight: 400;
  white-space: nowrap;
}
.modalBox section .header > div:first-child {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 20%;
  text-align: left;
}
.modalBox section .header > div:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 20%;
  text-align: right;
}
.modalBox section .header .center {
  font-weight: 600;
}
.modalBox section .header .left,
.modalBox section .header .right {
  color: hsl(var(--col_pr_3));
}
.modalBox section .header .backBtn {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  cursor: pointer;
}
.modalBox section .header svg {
  width: 1.25em;
  height: 1.25em;
}
.modalBox section .header .finBtn {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  cursor: pointer;
}
.modalBox section .header .right {
  cursor: pointer;
}
.modalBox section.contentHeight:before {
  content: ' ';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 2.25rem;
  height: 0.33rem;
  border-radius: 0.165rem;
  transform: translateX(-50%);
  z-index: 1001;
  background-color: gray;
}
/* Modals on Big Screens */
@media screen and (min-width: 768px) {
  .viewBox section,
  .modalBox section {
    padding-left: 4.166vw;
    padding-right: 4.166vw;
    /*padding-top: var(--headerNavHeight) !important;*/
    padding-bottom: 0 !important;
  }
  .viewBox section > .body {
    padding-bottom: inherit !important;
  }
  .modalBox.active {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
  }
  .modalBox section {
    padding: 2rem;
    left: 50%;
    top: 50%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 2rem;
    min-width: 680px !important;
    min-height: 680px !important;
    max-width: 680px !important;
    max-height: 680px !important;
    width: 33vw !important;
    height: 33vw !important;
  }
  .modalBox section.active {
    display: flex;
    flex-direction: column;
  }
  .modalBox section.active > .body {
    justify-content: center;
  }
  .modalBox section .header {
    width: calc(100% + 4rem);
    transform: translateX(-2rem);
    padding: 1rem !important;
    justify-content: flex-end;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .modalBox .header .right {
    display: block;
  }
  .modalBox section .body {
    flex-grow: 1;
    min-height: auto !important;
    padding: 0px var(--gap_1) !important;
  }
}
.viewLoading {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: none;
  background-color: rgba(0,0,0,0.5);
}
.metasChanger {
  display: none !important;
}
/* ************************************************************
***************************************************************
***************************************************************
 LOADING BUBBLES
***************************************************************
***************************************************************
************************************************************* */
.pulse-container-outer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-container {
  width: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pulse-bubble {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--col_se_3);
}
.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}
/* ************************************************************
***************************************************************
***************************************************************
 ALERT
***************************************************************
***************************************************************
************************************************************* */
.alert {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 350px;
  z-index: 10000;
  padding: 1.5rem 1rem 0rem 1rem;
  border-radius: 16px;
  text-align: center;

  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.alert .title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(var(--col_gs_white));
}
.alert .message {
  font-size: 0.8125rem;
  font-weight: 400;
  color: hsl(var(--col_gs_white));
}
.alert .line {
  width: calc(100% + 2rem);
  height: 1px;
  margin: 1.5rem 0px 0rem -1rem;
  background-color: hsl(var(--col_gs_white));
  opacity: 0.1;
}
.alert .buttons {
  color: hsl(var(--col_se_3));
  font-weight: 500;
  font-size: 1.0625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.alert .buttons > div {
  cursor: pointer;
  padding-top: 0.95rem;
  padding-bottom: 1.5rem;
  flex-grow: 1;
}
