@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@300;400;500;600&family=Mohave:wght@300;400;500;600&family=Red+Hat+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap");
:root {
  --navbtn-width: 2.3rem;
  --burger_color: rgb(62, 62, 62);
  --navbtn-height: calc(var(--navbtn-width) * 0.5);
  --rectangle_height: calc(var(--navbtn-width) * 0.1);
  --rectangle_radius: calc(var(--navbtn-width) * 0.04);
  --translate: calc(var(--navbtn-width) * 0.17);
  --transition: 0.65s;
  --topnav-height: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.border {
  border: 1px solid grey;
}

.thickborder {
  border: 2px solid grey;
}

.rounded {
  border-radius: 6px;
}

.mb1 {
  margin-bottom: 1rem;
}

.my1 {
  margin: 1rem 0;
}

.m1 {
  margin: 1rem;
}

.px25 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px1 {
  padding: 0 1rem;
}

.p1 {
  padding: 1rem;
}

.py1 {
  padding: 1rem 0;
}

.pb1 {
  padding-bottom: 1rem;
}

.text_muted {
  color: rgb(116, 116, 116);
}

.bottombar {
  width: 100% !important;
  position: static;
  padding: 0 !important;
  margin-top: 0.25rem;
}

.fancy-burger {
  position: relative;
  width: var(--navbtn-width);
  height: var(--navbtn-height);
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.rectangle {
  position: absolute;
  height: var(--rectangle_height);
  background: var(--burger_color);
  border-radius: var(--rectangle_radius);
  transition: transform var(--transition);
}

.rectangle--small {
  width: calc(var(--navbtn-width));
}

.rectangle--top {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.rectangle--middle {
  top: 50%;
  left: 0;
  width: var(--navbtn-width);
  transform: translateY(-50%);
}

.rectangle--bottom {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}

.rectangle--top.open {
  transform: translateX(var(--translate)) rotate(45deg);
}

.rectangle--middle.open {
  transform: translateY(-50%) rotate(-45deg);
}

.rectangle--bottom.open {
  transform: translateX(calc(var(--translate) * -1)) rotate(45deg);
}

.topnav {
  position: fixed;
  padding: 0.5rem 0;
  top: 0;
  width: 100%;
  height: var(--topnav-height);
  background-color: rgba(227, 225, 225, 0.8);
  z-index: 5;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.menubody, .maincontent {
  padding-top: var(--topnav-height);
}

.alertmsg {
  position: absolute;
  top: 10px;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: rgb(231, 231, 231);
  border-radius: 2rem;
  overflow-x: hidden;
  z-index: 15 !important;
  left: 0;
  right: 0;
  width: min(80vw, 60em);
  margin-left: auto;
  margin-right: auto;
  animation-name: alertfade;
  animation-duration: 5.1s;
  animation-fill-mode: forwards;
  max-height: 3em;
}
.alertmsg .msg {
  padding: 0 1rem;
  white-space: nowrap;
  overflow: hidden;
  animation: fadein;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.alertmsg .button {
  margin: 0.4rem 0;
}

.clientlogo {
  width: 11rem;
  height: 3rem;
  cursor: pointer;
}

.myorerlink {
  cursor: pointer;
}

.orderbody {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes alertfade {
  0% {
    width: 2em;
  }
  10% {
    width: min(90vw, 40em);
  }
  90% {
    width: min(90vw, 40em);
  }
  100% {
    width: 2em;
    display: none;
  }
}
.errormsg {
  background-color: #8b1313;
}

.successmsg {
  background-color: #05713f;
}

.warningmsg {
  background-color: #a47808;
}

.tablewrapper {
  overflow-x: auto;
  min-width: 100%;
  table-layout: fixed;
}

.topnav, .topnav-left, .topnav-right, .topbar {
  display: flex;
  padding: 0.4rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.topnav div, .topnav-left div, .topnav-right div, .topbar div {
  padding: 0 0.4rem;
}

.sidebar {
  background-color: #484848 !important;
}

.inverted label {
  color: white !important;
}

.navlogo {
  padding: 0 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.mobileonly {
  display: none;
}

.desktoponly {
  display: block;
}

.maincontent {
  margin: 1rem;
}

.mainheading {
  font-size: 1.3rem;
}

.autogrid_container {
  max-width: 100vw;
  padding-inline: 0.25rem;
}

.autogrid_content {
  display: grid;
  width: 100%;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem));
}

.autogrid_content_pub {
  display: grid;
  width: 100%;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem));
}
.autogrid_content_pub p {
  font-size: 12px;
  line-height: 1.2em;
  padding: 0.2em 0 0.5em 0;
}
.autogrid_content_pub .text_muted {
  font-size: 12px;
}

.pricetag {
  position: absolute;
  top: 0;
  right: 0;
}

.stickyserachdiv {
  position: sticky;
  top: var(--topnav-height);
  width: 100%;
  padding: 0.5rem 1rem;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.stickyserachdiv .input {
  width: 100%;
}

@media screen and (max-width: 620px) {
  .autogrid_content {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  .autogrid_content_pub {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  }
  .autogrid_content_pub .card_header {
    font-size: 1rem;
  }
}
.autogrid_card {
  border: 1px solid rgb(223, 223, 223);
  border-radius: 6px;
  padding: 0.3rem;
  position: relative;
  box-shadow: 0px 0px 19px -6px rgba(0, 0, 0, 0.78);
}

.content {
  position: relative;
}

.card__image {
  width: 100%;
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.card_header {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
  .mobileonly {
    display: block;
  }
  .desktoponly {
    display: none;
  }
  .topbar {
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  .topbar div {
    padding: 0.4rem 0;
  }
}
.menubody {
  background: linear-gradient(to left top, #ffffff, #ebebeb);
}

.corousel_body {
  display: flex;
  padding: 0.5rem 0.25rem;
  align-items: top;
  justify-content: center;
  min-height: auto;
}

.wrapper {
  max-width: 1100px;
  width: 95%;
  position: relative;
}

.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -2px;
}

.wrapper i:last-child {
  right: -2px;
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: start;
  align-items: center;
}

.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 0;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.23);
  border: 2px solid rgba(0, 0, 0, 0.23);
}

.carousel .card .img {
  background: #ececec;
  height: 14rem;
  width: 100%;
  border-radius: 8px;
}

.card .img img {
  width: 100%;
  height: 14rem;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #fff;
}

.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 10px 0 5px;
}

.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
  padding: 0 0 0.5rem 0;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: 50%;
  }
}
@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
.featuredheader {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(134, 36, 36);
  padding: 0.5rem 0;
}

.w100btn {
  width: 100% !important;
  margin: 0 !important;
}/*# sourceMappingURL=style.css.map */