html {
  width: 100%;
  height: 100dvh;
}

body {
  width: 100%;
  height: 100%;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-display: swap;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: local("Pacifico Regular"), url("/web_res/main.woff2") format("woff2");
}

body {
  font-family: "Roboto";
  font-size: 16px;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
}

#root {
  flex-grow: 1;
  display: grid;
  grid-template-areas: "main" "bottom";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
  width: 100%;
}

@keyframes main-preloader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.main-preloader {
  grid-area: main / bottom;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.main-preloader svg {
  height: 208px;
  width: 164px;
  animation-name: main-preloader;
  animation-duration: 5s;
  transform: rotate(0deg);
  animation-iteration-count: infinite;
  fill: rgba(0, 0, 0, 0.5);
}

.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;
}

#divider {
  min-width: 8px;
}

#divider-tiny {
  min-width: 4px;
}

#listAddons {
  display: flex;
  overflow: auto;
  min-height: 116px;
  margin-left: -16px;
  margin-right: -16px;
  gap: 9px;
  margin-top: 9px;
  margin-bottom: 8px;
}

.hideScroll::-webkit-scrollbar {
  display: none;
}

.hideScroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.price {
  display: flex;
  gap: 8px;
}

.item-to-cart {
  display: flex;
  align-items: center;
  width: 218px;
  min-width: 218px;
  height: 98px;
  background-color: #fff;
  border-radius: 16px;
  cursor: pointer;
  gap: 8px;
}

.notistack-MuiContent {
  border-radius: 15px !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
}
