@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --textColor: hsl(0, 0%, 20%);
  --background: hsl(197, 100%, 97%);
  --color: hsl(236, 79%, 62%);
  --colorHover: hsl(236, 79%, 70%);
  --header: 8rem;
  --menuLinks: 5rem;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size-adjust: 100%;
  margin-right: 0 !important;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
body {
  color: var(--textColor);
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
}
::-moz-selection {
  background-color: var(--color);
  color: #fff;
}
::selection {
  background-color: var(--color);
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
figure,
address {
  margin: 0;
}
h1 {
  font-size: clamp(2rem, 1.7288rem + 1.3559vw, 3rem);
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
label {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  label {
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  label {
    font-size: 1.6rem;
  }
}
label span {
  font-size: 1.2rem;
  color: var(--color);
  font-weight: 700;
}
.buttonAdd {
  display: inline-block;
  border-radius: 0.4rem;
  background-color: var(--color);
  color: #fff;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.buttonAdd:hover {
  background-color: var(--colorHover);
  color: #fff;
}
.status {
  border-radius: 0.4rem;
  height: 3rem;
  width: 8rem;
  font-size: 1.4rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.status0 {
  background-color: red;
}
.status1 {
  background-color: green;
}
.formImage {
  margin-bottom: 1rem;
  max-width: 15rem;
  width: 100%;
  height: 15rem;
  border-radius: 1rem;
  overflow: hidden;
}
.tableImage {
  border-radius: 0.5rem;
  max-width: 5rem;
  width: 100%;
  height: 5rem;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tableImage img,
.formImage img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tableButton {
  border-radius: 0.4rem;
  height: 3rem;
  min-width: 9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
  color: #fff;
  transition: all 400ms ease;
  font-size: 1.4rem;
}
.tableButton:hover {
  background-color: var(--colorHover);
  color: #fff;
}
.centered {
  text-align: center !important;
}
.wrapperSide {
  background-color: #fff;
  margin-top: 2rem;
  padding: 5rem;
  border-radius: 1rem;
}
.wrapperSideDesc {
  margin-bottom: 2rem;
}
.wrapperSideDesc p {
  font-size: 1.6rem;
}
.wrapperSideDesc span {
  margin-right: 0.5rem;
  font-weight: 800;
  color: var(--color);
}
.swal2-popup {
  font-size: 1.4rem !important;
}
.swal2-actions button {
  outline: none !important;
  box-shadow: none !important;
}
.form-group {
  margin-bottom: 1rem;
}
.form-control {
  font-size: 1.4rem;
  padding: 1rem;
  transition: all 400ms ease;
  border: 1px solid #eaeaea;
}
.form-control,
.form-control:hover,
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .form-control {
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  .form-control {
    font-size: 1.6rem;
  }
}
/*--LOGIN--*/
.loginPage {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginForm {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 30rem;
  width: 100%;
  border-radius: 1rem;
  background-color: #fff;
  padding: 3rem;
}
@media (min-width: 576px) {
  .loginForm {
    max-width: 40rem;
    padding: 5rem;
  }
}
@media (min-width: 992px) {
  .loginForm {
    max-width: 45rem;
  }
}
.loginForm div {
  width: 100%;
}
.formHead {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #eaeaea;
}
.formHead h1 {
  font-weight: 900;
  text-transform: uppercase;
}
.formSubmit {
  border-radius: 0.4rem;
  background-color: var(--color);
  transition: all 400ms ease;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  font-weight: 500;
}
.formSubmit:hover {
  background-color: var(--colorHover);
  color: #fff;
}
@media (min-width: 768px) {
  .formSubmit {
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  .formSubmit {
    font-size: 1.6rem;
  }
}
/*--& LOGIN &--*/
/*--MENU--*/
.mobileMenuIcon {
  font-size: 1.6rem;
}
.mobileMenuDropdown {
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  display: none;
}
.mobileMenuDropdownSide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.mobileMenuDropdownSide a {
  font-size: 1.6rem;
  padding: 1rem 0;
  color: #333;
  font-weight: 500;
  transition: all 400ms ease;
  width: 100%;
  display: block;
}
.mobileMenuDropdownSide a:hover {
  background-color: var(--color);
  color: #fff;
}
#header {
  background-color: #fff;
  height: var(--header);
}
.menu {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--textColor);
  font-size: clamp(2rem, 1.7288rem + 1.3559vw, 3rem);
  transition: all 400ms ease;
}
.logo:hover {
  color: var(--color);
}
.menuLinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 3rem;
}
.menuLinks a {
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 400ms ease;
  color: var(--textColor);
}
.menuLinks a:hover {
  color: var(--color);
}
/*--& MENU &--*/
.home {
  margin-top: 2rem;
}
.mainGrid {
  column-count: 1;
  column-gap: 2rem;
}
@media (min-width: 768px) {
  .mainGrid {
    column-count: 3;
  }
}
@media (min-width: 1500px) {
  .mainGrid {
    column-count: 4;
  }
}
.grid-item {
  border-radius: 1rem;
  padding: 2rem;
  background-color: #fff;
  break-inside: avoid;
  margin-bottom: 2rem;
}
.grid-item-head {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #eaeaea;
}
.grid-item-head h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
.productBox {
  display: flex;
  justify-content: flex-start;
}
.productBox:not(:last-child) {
  margin-bottom: 1rem;
}
.productImage {
  max-width: 5rem;
  width: 100%;
  height: 5rem;
  overflow: hidden;
  border-radius: 0.4rem;
  background-color: #eaeaea;
}
.productImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productBox .content {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.productBox .content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.productBox .content p {
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.contentRight span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color);
}
.qrMenu {
  max-width: 100%;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 2rem 1rem;
  background-color: #fff;
  background-image: url(../images/background2.png);
  background-size: contain;
  background-position: center;
  overflow-x: hidden !important;
}
@media (min-width: 768px) {
  .qrMenu {
    background-size: 30%;
  }
}
.qrMenuDesc {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 450px) {
  .qrMenuDesc {
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
  }
}
.qrMenuLogo {
  max-width: 13rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.qrMenuLogo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qrCatGrids {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 350px) {
  .qrCatGrids {
    gap: 1.2rem;
  }
}
@media (min-width: 425px) {
  .qrCatGrids {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.qrCatItems {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}
.qrCatIcon {
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  height: 9rem;
  margin-bottom: 1rem;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  border: 1px solid #eaeaea;
  transition: all 400ms ease;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.qrCatIcon a {
  position: relative;
  z-index: 10;
}
@media (min-width: 350px) {
  .qrCatIcon {
    height: 8rem;
  }
}
@media (min-width: 375px) {
  .qrCatIcon {
    height: 10rem;
  }
}
@media (min-width: 425px) {
  .qrCatIcon {
    height: 11rem;
  }
}
.qrCatItems:hover h3 a {
  color: var(--color);
}
.qrCatIcon img {
  max-width: 5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 350px) {
  .qrCatIcon img {
    max-width: 4rem;
  }
}
@media (min-width: 375px) {
  .qrCatIcon img {
    max-width: 6.5rem;
  }
}
.qrCatItems h3 {
  display: flex;
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--textColor);
  align-items: center;
}
@media (min-width: 425px) {
  .qrCatItems h3 {
    font-size: 1.4rem;
  }
}
.qrCatItems h3 a {
  color: var(--textColor);
  transition: all 400ms ease;
}
.qrMenuCatHead {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  text-align: center;
}
.qrMenuCatHead h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.qrMenuCatHead a {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color);
  transition: all 400ms ease;
}
.qrMenuCatHead a:hover {
  color: var(--colorHover);
}
.qrMenuListItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0.5rem;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.qrMenuListItem:not(:last-child) {
  margin-bottom: 1.5rem;
}
.qrProductImages {
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qrProductImages img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.calculate {
  width: calc(100% - 10rem);
  padding-left: 2rem;
}
.qrMenuListItem .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.qrMenuListItem .content h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.qrMenuListItem .content p {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  line-height: 2rem;
  font-style: italic;
}
.qrProPrice {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.5rem;
}
.qrProPrice span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color);
}
.slider {
  max-width: 100%;
  width: 100%;
  margin-bottom: 2rem;
}
.sliderImage {
  max-width: 100%;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sliderImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catImages {
  max-width: 8rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.catImages img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@font-face {
  font-family: pill;
  src: url(../../../components/fonts/magnolia_sky.ttf);
}
.pill {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pill a {
  font-size: 2rem;
  color: red;
  font-family: pill;
  transition: all 400ms ease;
}
.pill a:hover {
  color: #333;
}
.modal-header {
  border-bottom: none !important;
}
.modal-body figure {
  width: 100%;
}
.modal-body figure img {
  width: 100%;
}
.popImages {
  max-width: 25rem;
  margin-bottom: 2rem;
}
.popImages img {
  width: 100%;
}
.mt1 {
  margin-top: 1rem;
}
.menu2Categories {
  margin: 2rem 0;
  padding-bottom: 2rem;
}
.menu2CategoriesItems {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  background-color: #fff;
  padding: 2rem 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .menu2CategoriesItems {
    padding: 3.5rem 1.5rem;
  }
}
.menu2CategoriesItems::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.menu2CategoriesItems:not(:last-child) {
  margin-bottom: 1rem;
}
.menu2CategoriesItems h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  color: #fff;
}
@media (min-width: 1200px) {
  .menu2CategoriesItems h3 {
    font-size: 1.6rem;
    font-weight: 700;
  }
}
.categoriesIcon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 300ms ease;
  color: #fff;
  position: relative;
}
.menu2ProBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.menu2ProBoxImage {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.menu2ProBoxImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease;
}
.menu2ProBox:hover .menu2ProBoxImage img {
  transform: scale(1.1);
}
.menu2ProBox .content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.menu2ProBox .content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.menu2ProBox .content p {
  font-size: 1.4rem;
  opacity: 0.8;
  font-weight: 500;
  margin-bottom: 1rem;
  flex: 1;
}
.menu2ProBox .content span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color);
}
.content-equal [class^="col"] {
  display: flex;
}
.menu2ProductContent {
  display: none;
}
.subCategoryitem {
  background-color: var(--color);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  padding: 1rem;
  border-radius: 0.3rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 992px) {
  .menu2 {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .menu2 {
    width: 50%;
    margin: 0 auto;
  }
}
.removeProImage {
  background-color: var(--color);
  color: #fff;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
}
.removeProImage:hover {
  background-color: var(--colorHover);
  color: #fff;
}
.menuend {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  text-align: center;
}
@font-face {
  font-family: pill;
  src: url(../fonts/magnolia_sky.ttf);
}
.menuend a {
  font-size: 2.5rem;
  font-family: "pill";
  transition: all 300ms ease;
  color: #333;
}
.menuend a:hover {
  color: red;
}
.menulogos {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menulogoscontent {
  height: 100%;
  width: 50rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  row-gap: 1rem;
}
.menulogoitem {
  width: 20rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.2rem solid #eaeaea;
  transition: all 300ms ease;
  border-radius: 0.3rem;
  position: relative;
}
@media (min-width: 576px) {
  .menulogoitem {
    width: 25rem;
    height: 25rem;
  }
}
.menulogoitem:hover {
  border: 0.2rem solid var(--color);
}
.menulogoitem a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menulogoitem a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trs {
  transform: scale(1.5);
}
.logolinks {
  width: auto !important;
  height: auto !important;
  font-size: 1.4rem !important;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  transition: all 300ms ease;
}
.logolinks:hover {
  color: var(--colorHover) !important;
}
