html {
  width: 100%;
  height: 100svh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  width: 100%;
  min-height: calc(100dvh + 0px);
  -webkit-tap-highlight-color: transparent;
  font-family: "Roboto";
  font-size: 16px;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
}

.root {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

html::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: url(/res/font/main_v3.woff2) format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.cross {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M0 99 L99 0 L100 1 L1 100' stroke-width='4' /></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
  fill: #ff46c066;
}

.hideScroll::-webkit-scrollbar {
  display: none;
}

.hideScroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.notistack-MuiContent {
  border-radius: 15px !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
}

.ghost {
  position: absolute;
  pointer-events: none;

  inset: 0;
  border-radius: 20px;
}

.notistack-MuiContent {
  color: #000;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 44px;
}
.notistack-MuiContent div:last-child {
  margin-right: unset !important;
  margin-left: unset !important;
  padding-left: unset !important;
}

#notistack-snackbar {
  color: #000;
  font-family: "Jura", sans-serif;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.container-loader {
  --uib-size: 80px;
  --uib-color: rgb(28, 144, 211);
  --uib-speed: 3s;
  --uib-bg-opacity: 0.09;
  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  overflow: visible;
}

.car-loader {
  fill: none;
  stroke: var(--uib-color);
  stroke-dasharray: 15, 85;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: travel var(--uib-speed) linear infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 1.5s ease;
}

.track-loader {
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}

.loader-wrapper {
  height: 100svh;
  width: 100svw;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes travel {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -100;
  }
}

.loading-wrapper {
  background-color: #121212;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*CARD STYLE*/

.card_box {
  border-radius: 20px;
  background: linear-gradient(
    170deg,
    rgba(58, 56, 56, 0.623) 0%,
    rgb(31, 31, 31) 100%
  );
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  cursor: pointer;

  height: 100%;
  z-index: 1;
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.card_box .line {
  position: absolute;
  overflow: hidden;
  width: 150px;
  height: 150px;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_box .line::before {
  content: attr(text);
  position: absolute;
  width: 150%;
  height: 40px;
  background-image: linear-gradient(
    45deg,
    #ff6547 0%,
    #ffb144 51%,
    #ff7053 100%
  );
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  /* letter-spacing: 0.1em;
  text-transform: uppercase; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.card_box .line::after {
  content: "";
  position: absolute;
  width: 10px;
  bottom: 0;
  left: 0;
  height: 10px;
  z-index: -1;
  box-shadow: 140px -140px #cc3f47;
  background-image: linear-gradient(
    45deg,
    #ff512f 0%,
    #f09819 51%,
    #ff512f 100%
  );
}
