.category-tabs {
  width: 100%;
  border-bottom: 1px solid darkgray;
  padding: 20px;
  padding-bottom: 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 95px;
  z-index: 100;
  background-color: var(--background-color);
}

.category-tabs .MuiTabs-root {
  max-width: 100vw;
  /* overflow: scroll; */
}

.category-tabs .MuiTab-wrapper {
  color: darkgray;
  text-transform: capitalize;
  font-size: 1.2rem;
}

.category-tabs a {
  color: darkgray;
}
.category-tabs .Mui-selected a {
  color: black !important;
}
.category-tabs .Mui-selected a {
  color: black !important;
}

.category-tabs a:hover {
  text-decoration: none;
  color: black;
}

.category-tabs .Mui-selected .MuiTab-wrapper {
  color: black;
}

.category-tabs span[class^='PrivateTabIndicator'],
.category-tabs span[class*=' PrivateTabIndicator'],
.category-tabs span[class^='jss'],
.category-tabs span[class*=' jss'] {
  background-color: var(--font-color) !important;
}

.MuiTab-wrapper a {
  width: 100%;
  height: 100%;
}
.category-tabs .MuiTabs-root {
  min-height: 32px;
}
.MuiTab-root {
  min-height: 32px !important;
  padding: 0px !important;
}
@media screen and (max-width: 600px) {
  .category-tabs {
    margin: 0px;
    top: 55px;
  }
  .MuiTab-root {
    padding: 6px 12px !important;
  }
}

:root {
  --primary-color: #000;
  --font-color: #000;
  --on-primary: #fff;
  --hinted-font-color: #000;
  font-size: 87.5%;
}

h1 {
  font-size: 42px;
  font-size: 3rem;
  line-height: 44px;
  line-height: 3.125rem;
  font-weight: 500;
  color: var(--font-color);
  margin: 12px 0;
  margin: calc(var(--size) * 1.5) 0;
}

h2 {
  font-size: 28px;
  font-size: 2em;
  line-height: 32px;
  line-height: 2.2em;
  font-weight: 500;
  color: var(--font-color);
  margin: 10px 0;
  margin: calc(var(--size) * 1.25) 0;
}

h3 {
  font-size: 26px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2.2rem;
  font-weight: 400;
  color: var(--font-color);
  margin: 8px 0;
  margin: var(--size) 0;
}

h4 {
  font-size: 20px;
  font-size: 1.75rem;
  line-height: 24px;
  line-height: 2rem;
  font-weight: 600;
  color: var(--hinted-font-color);
  text-transform: uppercase;
  margin: 6px 0;
  margin: calc(var(--size) * 0.75) 0;
}

h5 {
  font-size: 20px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.75rem;
  font-weight: 400;
  color: var(--font-color);
  margin: 8px 0;
  margin: var(--size) 0;
}

h6 {
  font-size: 12px;
  line-height: 16px;

  font-size: 0.875rem;
  line-height: 1.125rem;

  font-weight: 600;
  text-transform: uppercase;
  color: var(--hinted-font-color);

  margin: 6px 0;
  margin: calc(var(--size) * 0.75) 0;
}

p {
  font-size: 14px;
  line-height: 20px;

  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: var(--font-color);

  margin: 6px 0;
  margin: calc(var(--size) * 0.75) 0;
}

small {
  font-size: 12px;
  line-height: 16px;

  font-size: 0.875rem;
  line-height: 1.125rem;

  font-weight: 400;
  color: var(--hinted-font-color);
  margin: 4px 0;
  margin: calc(var(--size) * 0.5) 0;
}

a,
.link {
  color: var(--link-color);
  text-decoration: none;
}

a:hover,
.link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 27px;
    line-height: 36px;
    font-weight: 500;
  }

  h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
  }

  h3 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
  }

  h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  h5 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
  }

  h6 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }

  p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }

  small {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
  }
}

:root {
  --size: 8px;
}

@media screen and (max-width: 599px) {
  :root {
    --size: 6px;
  }
}

html,
body {
  padding: 0px;
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background:var(--background-color)
}

* {
  box-sizing: border-box;
  margin: 0px;
}

/* BUTTON */

button,
.btn {
  padding: 8px 12px;
  padding: calc(var(--size) * 1) calc(var(--size) * 1.5);
  outline: none;
  border: none;
  text-align: center;
  text-decoration: none;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--on-primary);
  margin: 10px 10px 10px 0;
  margin: calc(var(--size)) calc(var(--size)) calc(var(--size)) 0;
  cursor: pointer;
}

.btn-outlined {
  background: transparent;
  color: var(--font-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary {
  color: var(--on-secondary);
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outlined.btn-secondary {
  color: var(--font-color);
  background: transparent;
  border: 2px solid var(--secondary-color);
}

.btn-sm {
  padding: 4px 8px;
  padding: calc(var(--size) * 0.5) calc(var(--size) * 1);
}

.btn-lg {
  padding: 12px 16px;
  padding: calc(var(--size) * 1.5) calc(var(--size) * 2);
}

.btn-fullwidth {
  width: 100%;
  text-align: center;
}

.icon-btn {
  border-radius: 50px;
  width: 40px;
  height: 40px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  margin: 0;
  color: var(--font-color);
}

.icon-btn:active {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.darkMode .icon-btn:active {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

@media (hover: hover) {
  button:hover {
    opacity: 0.84;
  }

  button:disabled:hover {
    opacity: 1;
  }

  /* .icon-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
  } */

  .darkMode .icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
}

button:active {
  opacity: 0.92;
}

.btn-outlined:active {
  background: var(--primary-color);
  color: var(--on-primary);
  opacity: 1;
}

.btn-outlined.btn-secondary:active {
  background: var(--secondary-color);
}

button:disabled {
  background: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  color: var(--hinted-font-color);
  cursor: no-drop;
}

.darkMode button:disabled {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: var(--hinted-font-color);
}

.container {
  padding: 24px;
  padding: calc(var(--size) * 3);
  max-width: 1220px;
  margin: 0 auto;
}

.hidden-desktop {
  display: none;
}

#cart-page {
  margin-top: 100px;
  padding-top: 40px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-left: -12rem; */
  margin-left: -3%;
  width: 100%;
}
.page-container {
  margin: auto;
  max-width: 1100px;
}
#item-page {
  margin-top: 100px;
  padding: 20px;
}

#item-page .top-part {
  display: flex;
}

#item-page .similar-products {
  display: block;
}

#checkout-page {
  display: flex;
  margin-top: 120px;
}

#checkout-page > .hidden-mobile {
  margin-top: 30px;
}

#payment-page {
  margin-top: 100px;
}

#payment-page .gastronaut-payment-container {
  width: 50%;
  margin: auto;
  text-align: center;
  height: 70vh;
}

.category-page-container {
  position: relative;
  z-index: 5;
}

.MuiButton-containedPrimary {
  background-color: var(--primary-color) !important;
}

#success-page-desktop{
  display: block;
}
#success-page-mobile{
  display: none;
}
#allProducts-mobile{
  display: none;
}
#allProducts-desktop{
  display: block;
}
#product-mobile-image-gallery{
  display: none;
}
#product-desktop-image-gallery{
    display: block;
}
@media screen and (max-width: 1136px) {
  /* #cart-page {
    margin-top: 100px;
    padding: 40px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: 0rem;
  } */
  
  #cart-page {
    margin-top: 100px;
    padding-top: 40px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    /* margin-left: -12rem; */
    width: 100%;
    padding: 40px;
    margin-left: -3%;
  }
  .Table-row .item-description{
    text-align: left;
    max-width: 145px  !important;
    padding-left: 20px;
  }
}

@media screen and (max-width: 800px) {
  /* #cart-page {
    margin-top: 100px;
    padding: 40px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: 0rem;
  } */
  #cart-page {
    margin-top: 100px;
    padding-top: 40px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    /* margin-left: -12rem; */
    width: 100%;
    padding: 40px;
  }
  .Table-row .item-description{
    text-align: left;
    max-width: 105px  !important;
    padding-left: 20px;
  }
}

@media screen and (max-width: 1024px) {
  #myApp {
    width: 100%;
  }

  #checkout-page {
    display: inline-flex;
    margin-top: 120px;
  }
  #checkout-page > .hidden-mobile {
    margin-top: 30px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 600px) {
  #myApp {
    position: relative;
    min-height: 100vh;
  }
  #allProducts-mobile{
    display: block;
  }
  #allProducts-desktop{
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

  .hidden-mobile {
    display: none;
  }

  #cart-page {
    display: block;
    margin-top: 50px;
    padding: 10px;
    margin-left: -3%;
  }

  #cart-page .big-cart-container {
    display: none;
  }

  #item-page {
    margin-top: 50px;
  }

  #item-page .top-part {
    flex-direction: column;
    margin-bottom: 20px;
  }

  #item-page .similar-products {
    display: none;
  }

  #checkout-page {
    margin-top: 50px;
  }

  #payment-page {
    margin-top: 70px;
  }

  #payment-page .gastronaut-payment-container {
    width: 100%;
    margin: auto;
    text-align: center;
    height: 70vh;
  }
  .page-container {
    margin-left: 0px;
    margin-right: 0px;
  }

  .category-page-container {
    position: relative;
    z-index: 5;
    transform: translate3d(0, 0, 200px);
  }
  #success-page-desktop{
    display: none;
  }
  #success-page-mobile{
    display: block;
    padding:20px;
  }
  #product-mobile-image-gallery{
    display: block;
  }
  #product-desktop-image-gallery{
      display: none;
  }
}

.errorBody{
    background-color: #21252c;
    height: 100%;
    scroll-behavior:none;
    display: grid;
}
  .moon {
    background: linear-gradient(90deg, rgba(208,208,208,1) 48%, rgba(145,145,145,1) 100%);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 14rem;
    border-radius: 50% / 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.5)
  }

  .planet{
    background: linear-gradient(90deg, rgba(208,208,208,1) 48%, rgba(145,145,145,1) 100%);
    position: absolute;
    top: 11rem;
    left: 8rem;
    /* width: 250px; */
    /* height: 250px; */
    width: 25vw !important;
    height: 25vw !important;
    border-radius: 100%;
    box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.5)
  }

  .crater {
    position: absolute;
    border-radius: 100%;
    opacity: 0.6;
    background: linear-gradient(90deg, rgba(122,122,122,1) 38%, rgba(195,195,195,1) 100%);
  }
  .crater1 {
    width: 60px;
    height: 120px;
    bottom: 10px;
    right: 270px;
    transform: rotate(105deg);
  }
  .crater2 {
    width: 40px;
    height: 80px;
    bottom: 20px;
    left: 270px;
    transform: rotate(55deg);
  }
  .crater3 {
    width: 60px;
    height: 180px;
    bottom: 20px;
    left: 50%;
    transform: rotate(90deg);
  }
  /* .star {
    background: grey;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    transform: rotate(250deg);
    opacity: 0.4;
    animation-name: shimmer;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  } */

  
.star {
    position: absolute;
    width: 1px;
    height: 1px;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid var(--on-primary);
    border-left: 0.3em solid transparent;
    /* Controlls the size of the stars. */
    font-size: 8px;
    opacity: 0.4;
    animation-name: shimmer;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  .star:before, .star:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid var(--on-primary);
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
  }
  .star:after {
    transform: rotate(35deg);
  }

  @keyframes shimmer{
    from{
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .star1 {
    top: 40%;
    left: 35%;
    animation-delay: 1s;
  }
  .star2 {
    top: 60%;
    right: 90%;
    animation-delay: 3s;
  }
  .star3 {
    top: 20%;
    right: 95%;
    animation-delay: 2s;
  }
  .star4 {
    bottom: 80%;
    right: 40%;
    animation-delay: 2s;
  }
  .star5 {
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
  }
  .star5{
    top: 20%;
    left: 95%;
    animation-delay: 2s;
  }
  .star6{
    top: 60%;
    left: 90%;
    animation-delay: 3s;
  }

  .star7{
    top: 60%;
    left: 60%;
    animation-delay: 3s;
  }
  .error {
    position: absolute;
    left: 14vw;
    top: 26vw;
    transform: translateY(-60%);
    font-family: 'Righteous', cursive;
    color: #343e49;
  }

  .title {
    font-size: 6vw;
    margin-left: 2rem;
  }
  .subtitle {
    font-size: 2rem;
    margin-left: 2rem;
  }
  .description {
    opacity: 0.5s;
    margin-left: 2rem;
   }
  .button {
    min-width: 7rem;
    margin-top: 3rem;
    margin-right: 0.5em;
    padding: 0.5em 2em;
    outline: none;
    border: 2px solid #2f3640;
    background-color: transparent;
    border-radius: 8em;
    color: #576375;
    cursor: pointer;
    transition-duration: 0.2s;
    font-size: 0.75em;
    font-family: 'Righteous', cursive;
  }
  .button:hover {
    color: #21252c;
  }
  .button--active {
    background-color: #e67e22;
    border: 2px solid #e67e22;
    color: white;
  }
  .button--active:hover {
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5s);
    color: white;
  }
  .astronaut{
    height: 200px;
    width: 100px;
    right: 0;
    margin-top: 15%;
    margin-left:70% ;
    transform: translatey(0px);
    -webkit-animation: float 3s ease-in-out infinite;
            animation: float 3s ease-in-out infinite;
  }


  @-webkit-keyframes float {
    0% {
      transform: translatey(0px);
    }
    50% {
      transform: translatey(-90%);
    }
    100% {
      transform: translatey(0px);
    }
  }
  
  @keyframes float {
    0% {
      transform: translatey(0px);
    }
    50% {
      transform: translatey(-90%);
    }
    100% {
      transform: translatey(0px);
    }
  }

  .asteroids-belt {
    opacity: 0.7;
    border-color: transparent !important;
    height: 300px;
    width: 300px;
    margin-top: -150px;
    margin-left: -150px;
    -webkit-animation: orb 179.9558282773s linear infinite;
            animation: orb 179.9558282773s linear infinite;
    overflow: hidden;
  }
  .spaceship{
    width: 500px;
    height: 500px;
    bottom: 0%;
    left: 30%;
    position: absolute;
  }

    
  @media  screen and (min-width: 1400px) {
    .error {
      position: absolute;
      left: 13vw !important;
      top: 24vw !important;
      transform: translateY(-60%);
      font-family: 'Righteous', cursive;
      color: #343e49;
    }
  }

  @media only screen and (max-width: 768px){
    .error {
      position: absolute;
      left: 18vw !important;
      top: 40vw !important;
      transform: translateY(-60%);
      font-family: 'Righteous', cursive;
      color: #343e49;
    }
    .planet{
      background: linear-gradient(90deg, rgba(208,208,208,1) 48%, rgba(145,145,145,1) 100%);
      position: absolute;
      top: 10%;
      left: 2rem;
      width: 55vw !important;
      height: 55vw !important;
      border-radius: 100%;
      box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.5)
    }
    .astronaut {
      height: 200px;
      width: 100px;
      right: 0;
      margin-top: 30rem !important;
      margin-left: 50% !important;
      transform: translatey(0px);
      -webkit-animation: float 3s ease-in-out infinite;
      animation: float 3s ease-in-out infinite;
  }
  }

  @media  screen and (max-width: 600px) {
    .error {
      position: absolute;
      left: 19% !important;
      top: 19em !important;
      transform: translateY(-60%);
      font-family: 'Righteous', cursive;
      color: #343e49;
    }

    .moon {
      background: linear-gradient(90deg, rgba(208,208,208,1) 48%, rgba(145,145,145,1) 100%);
      position: fixed !important;
      bottom: 0px !important;
      width: 100%;
      height: 105px;
      border-radius: 50% / 100%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.5)
    }

    .crater {
      position: fixed;
      border-radius: 100%;
      opacity: 0.6;
      background: linear-gradient(90deg, rgba(122,122,122,1) 38%, rgba(195,195,195,1) 100%);
    }
    .crater1 {
      width: 30px;
      height: 80px;
      bottom: -10px;
      right: 70%;
      transform: rotate(105deg);
    }
    .crater2 {
      width: 40px;
      height: 60px;
      bottom: 0px;
      left: 80%;
      transform: rotate(55deg);
    }
    .crater3 {
      width: 30px;
      height: 80px;
      bottom: 30px;
      left: 50%;
      transform: rotate(90deg);
    }
    .spaceship{
      width: 300px;
      height: 300px;
      bottom: -4%;
      left: -4%;
      position: fixed;
    }

    .planet{
      background: linear-gradient(90deg, rgba(208,208,208,1) 48%, rgba(145,145,145,1) 100%);
      position: absolute;
      top: 8rem;
      left: 10%;
      /* width: 180px;
      height: 180px; */
      width: 85vw !important;
      height: 85vw !important;
      border-radius: 100%;
      box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.5)
    }
    .error {
      position: absolute;
      left: 28vw !important;
      top: 80vw !important;
      transform: translateY(-60%);
      font-family: 'Righteous', cursive;
      color: #343e49;
    }
  
    .title {
      font-size: 20vw;
    }
    .subtitle {
      font-size: 6vw;
    }
    .description {
      opacity: 0.5s;
      width: 160px !important;
     }
     .astronaut {
      height: 200px;
      width: 100px;
      right: 0;
      margin-top: 105vw !important;
      margin-left: 50% !important;
      transform: translatey(0px);
      -webkit-animation: float 3s ease-in-out infinite;
      animation: float 3s ease-in-out infinite;
  }
  }
#hero-slider {
  min-height: 500px;
  max-height: 500px;
  display: flex;
  overflow: hidden;
  background-color: var(--primary-color);
}

#hero-slider .one-image-slide {
  width: 100vw;
  height: 500px;
}

#hero-slider .one-image-slide.no-image {
  text-align: center;
  padding-top: 35vh;
  font-size: 3rem;
}

#hero-slider .one-image-slide img {
  width: 100vw;
  height: 500px;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  #hero-slider {
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    z-index: 0;
  }

  #hero-slider .one-image-slide {
    width: 100vw;
    height: 300px;
  }

  #hero-slider .one-image-slide.no-image {
    padding-top: 25vh;
  }

  #hero-slider .one-image-slide img {
    width: 100vw;
    height: 300px;
    object-fit: cover;
  }
}

.item-cards {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  row-gap: 21px;
  column-gap: 21px;
  padding: 20px;
  align-items: center;
}

.item-cards .card {
  background-color: var(--background-color);
  padding: 0px;
  width: 100%;
  /* height:   calc(50vw + (1500 - 700)  * ((60vh - 500px) / (1920 - 500))); */
  /* height: calc(50vh + (1500 - 250) * ((55vw - 500px) / (1920 - 500))); */
  /* height: calc(37vw + (1500 - 250) * ((36vw - 500px) / (2000 - 500))); */
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0px 0px 8px 0 rgb(0 0 0 / 10%);
  transition: box-shadow 500ms ease;
}

.item-cards .card:hover {
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
}

.item-cards .card-image-div {
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 100%;
}

.item-cards .card-image {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: contain;
  background-position: center;
  background-color: white;
}

.item-cards .card-image-position {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: cover;
  background-position: center;
  object-position: 100% 0%;
}

.item-cards .card-image-cover {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: cover;
  background-position: center;
}

.item-cards .card-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 180px;
}

.item-cards .card-title {
  font-size: 130%;
  margin: 2px 0;
  font-weight: 100;
  text-align: left;
  line-height: normal;
  max-height: 44px;
  overflow: hidden;
}

.item-cards .card-content {
  width: 100%;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-cards .card-description {
  /* text-overflow: ellipsis;
  max-width: 200px;
  white-space: nowrap; */
  height: 30px;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: none;
}

.item-cards .card-description p {
  margin: 0px !important;
  /* text-overflow: ellipsis;
  max-width: 200px;
  white-space: nowrap;
  height: 20px;
  overflow: hidden; */
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: var(--hinted-font-color);
}

.item-cards .view-link {
  padding: 10px;
  margin-top: 20px;
  text-decoration: underline;
}

.item-cards .card-price h6 {
  margin-bottom: 0px;
  margin-top: 10px;
}

.item-cards .card-price h5 {
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .item-cards .card-title {
    font-size: 140%;
  }
}
@media screen and (max-width: 960px) {
  .item-cards .card-image-cover {
    background-size:contain;
    background-position: center;
  }
}
@media only screen and (width: 768px) {
  .item-cards .card-image-cover {
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 600px) {
  .item-cards {
    display: block;
    margin: 0px;
    padding: 0px;
    padding-bottom: 50px;
  }

  .item-cards .card {
    width: 100%;
    height: max-content;
    box-shadow: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .item-cards .card-body {
    width: calc(100% - 90px);
    padding: 0px 10px;
    position: relative;
    min-height: auto;
  }

  .item-cards .card-image {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: contain;
    background-position: center;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
    background-color: var(--background-color);
  }

  .item-cards .card-image-cover {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
  }

  .item-cards .card-image-position {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: cover;
    background-position: center;
    object-position: 100% 0%;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
  }

  .item-cards .card-title {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    height: 25px;
    width: 77%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .item-cards .card-description {
    width: 70%;
    height: 30px;
    font-size: 14px;
    text-transform: none;
    margin: 0px;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    margin-bottom: 10px;
    display: none;
  }

  .item-cards .view-link {
    display: none;
  }

  .item-cards .card-content {
    position: absolute;
    bottom: -0.6rem;
    right: 6px;
    margin: 0px;
    width: auto;
    text-align: right;
  }

  .item-cards .card:hover {
    box-shadow: none;
  }
}

.item-description-container {
  position: relative;
  max-width: 405px;
  width: 30%;
  min-width: 100px;
  margin: 3%;
}

.item-main-info {
  margin-bottom: 20px;
}

.item-main-info h3 {
  width: 80%;
  font-weight: 100;
  text-transform: capitalize;
}
.item-main-info h3::first-letter {
  text-transform: uppercase;
}

/* .item-details-price {
  position: absolute;
  top: 1.5rem;
  right: 0px;
  margin-top: -1rem;
} */
.item-details-price {
  position: relative;
  right: 0px;
  margin-top: -1.5rem;
  float: right;
}
.item-details-price h6 {
  margin: 0;
}

.item-details-price h5 {
  margin-top: 0;
}

.quantity-input-wrapper {
  position: relative;
  border: 1px solid black;
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: center;
}

.productinput {
  font-size: 18px;
  padding: 10px;
  width: 20%;
  border: none;
  text-align: center;
  background-color: inherit;
}

.quantity-plus,
.quantity-minus {
  background-color: var(--background-color);
  color: black;
  border: none;
  font-size: 18px;
  margin: 0;
}

.option-selection {
  margin: 20px 0px;
  width: 100%;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-option-width {
  width: 100%;
}

.option-selection .MuiFormControl-root {
  width: 100%;
  height: 50px;
}

.option-selection .MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -15px) scale(0.75) !important;
}

.option-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.option-col {
  width: 30%;
  text-align: left;
  padding: 0px 10px;
}

.option-col:last-child {
  text-align: right;
}

.option-col:first-child {
  width: 40%;
  text-align: left;
}

.btn-split {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.btn-split .split-line {
  border-bottom: 1px solid black;
  width: 45%;
}

.item-back-button {
  display: flex;
  align-items: center;
}

.item-btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.item-custom-fields {
  font-size: 20px;
  font-weight: 200;
  border-top: 1px solid darkgray;
  border-bottom: 1px solid darkgray;
  padding: 20px 0px;
  margin-bottom: 30px;
}

.item-custom-fields > div {
  margin: 8px 0px;
}

.item-custom-fields > div > span {
  font-weight: 800;
}

@media screen and (max-width: 600px) {
  .item-description-container {
    position: relative;
    max-width: none;
    width: 95%;
    margin: auto;
  }

  .item-details-price {
    position: absolute;
    right: 0px;
    top: 1.5rem;
  }

  .item-back-button {
    display: none;
  }
}

.image-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2%;
  width: 65%;
}

.image-carousel-container .thumbnails-container {
  height: 575px;
  width: 25%;
  position: relative;
  margin-left: 10px;
}

.image-carousel-container .thumbnails-arrow-top {
  display: none;
  margin-top: 0px;
  position: absolute;
  top: 0px;
  left: 75px;
  z-index: 1000;
}

.image-carousel-container .thumbnails-arrow-down {
  display: none;
  margin-top: 0px;
  position: absolute;
  bottom: 0px;
  left: 75px;
  z-index: 1000;
}

.image-carousel-container .thumbnails-images {
  overflow: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
  height: 573px;
  width: 100%;
}

.card-image-category-product {
  width: 100%;
  height: 575px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card-image-category-product-cover-position {
  width: 100%;
  height: 575px;
  position: relative;
  background-size: cover;
  background-position: center;
  object-position: 100% 0%;
}
.card-image-category-product-cover {
  width: 100%;
  height: 575px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card-product-image {
  width: 100%;
  height: 183px;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.leftGrid {
  width: 60%;
  min-width: 300px;
  padding: 10px;
  box-shadow: 1px 4px 5px 0 rgb(0 0 0 / 20%);
}

.show-image-carousel {
  z-index: 999;
}
.show-image-carousel .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: fixed;
  top: 0;
  left: 0;
}
.show-image-carousel .img-show-carousel {
  width: 35rem;
  height: 35rem;
  background: #fff;
  position: fixed;
  background-position: center;
  background-size: cover;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
}
.img-show-carousel span {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
}
.img-show-carousel::-webkit-scrollbar {
  display: block;
}
.img-show-carousel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.6);
}
.img-show-carousel img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-carousel-biggerImage-close {
  color: white;
  float: right;
  z-index: 1000;
  margin-top: 7rem;
  font-size: 30px;
  cursor: pointer;
}
.zoom-in-buttons {
  z-index: 1000;
    display: flex;
    height: 60px;
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 50%);
}
.card-bigger-image{
  width: 100%;
  height: 100%;
  background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.image-carousel-container .thumbnails-images::-webkit-scrollbar{
  display: none;
}

@media screen and (max-width: 600px) {
  .image-carousel-container {
    display: none;
  }
}

.item-image-slider {
  display: none;
}

@media screen and (max-width: 600px) {
  .item-image-slider {
    overflow: scroll;
    height: 300px;
    width: 100vw;
    display: flex;
    position: relative;
    left: -20px;
    flex-direction: column;
  }

  .item-image-slider .one-slide {
    width: 100vw;
    height: 300px;
    background-color: white;
  }

  .item-image-slider .one-slide img {
    width: 100vw;
    height: 300px;
    background-size: contain;
    background-position: center;
  }
}

#footer {
  width: 100%;
  text-align: center;
  padding: 20px 0 30px 0;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}

#footer .footer-elem {
  padding: 5px 20px;
}

#footer .powered-by {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

#footer .powered-by img {
  height: 15px;
  width: auto;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 600px) {
  #footer {
    padding: 10px 0 10px 0;
    font-size: 0.8rem;
    width: 100%;
    z-index: 8;
    position: absolute;
    bottom: 0;
    margin-top: 2rem;
  }

  #footer .powered-by img {
    height: 13px;
    width: auto;
    margin-left: 5px;
    position: relative;
    top: 2px;
  }

  #footer .powered-by {
    border: none;
  }
} ;

.container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.purchaseInfo {
  width: 50%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.purchaseInfo > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.purchaseInfo ul {
  flex-grow: 1;
  padding: 0;
}

.formContainer {
  width: 100%;
  padding: 10px;
}

.pillContainer {
  margin: 20px 0;
}

.itemRight {
  flex-grow: 0;
  text-align: right;
}

.loading {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.successContainer {
  min-height: 200px;
  display: flex;
  padding: 30px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.successContainer * {
  text-align: center;
  margin: 10px 0 !important;
}

.successContainer svg {
  width: 100px;
  height: 100px;
  color: #4bb543;
}

.errorContainer {
  min-height: 200px;
  display: flex;
  padding: 30px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.errorContainer * {
  text-align: center;
  margin: 10px 0 !important;
}

.errorContainer svg {
  width: 100px;
  height: 100px;
  color: #dc2538;
}

@media screen and (max-width: 600px) {
  .container {
    flex-direction: column;
  }

  .purchaseInfo {
    width: 100%;
  }

  .pillContainer button {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}

.bigCart-container {
  width: 100%;
  padding: 20px;
}

table {
  border-collapse: collapse;
  width: 100%;
}
.table-header {
  text-align: center;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.table-header th {
  font-weight: 400;
  min-width: 100px;
  padding: 10px;
  border-bottom: 1px solid darkgrey;
}

.table-header .mycart-title {
  text-align: left;
  padding-left: 20px;
}

.table-header .delete-header {
  min-width: 80px;
}

.table-row td {
  text-align: center;
  padding: 15px;
  vertical-align: top;
}
.big-cart-container {
  padding: 20px 25px;
  width: 100%;
}
.Table-row .image {
  position: relative;
  border-radius: 7px;
  align-items: center;
  height: 80px;
  width: 80px;
  overflow: hidden;
  background-color: var(--background-color, #fff);
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
  cursor: pointer;
}
.Table-row .image .image-contain {
  height: 80px;
  width: 80px;
  background-size: contain;
  background-position: center;
}

.Table-row .image .image-cover {
  height: 80px;
  width: 80px;
  background-size: cover;
  background-position: center;
}

.Table-row button {
  height: 20px;
  width: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: transparent;
  color: black;
  border: none;
  display: block;
}
.margin-top-table-container {
  margin-top: 8px;
}
.quantity-padding{
  padding-right: 2rem !important;
}
.Table-row .quantity-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid black;
}

.Table-row .item-description {
  text-align: left;
  max-width: 250px; 
  padding-left: 20px;
  text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.Table-row .item-description h5 {
  font-size: 16px;
  text-transform: uppercase;
}

.Table-row .item-description-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 20px;
  font-size: 14px;
}

.Table-row  .item-availability {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8px;
}





.big-table-container{
  display: block;
}
.small-table-container{
  display: none;
}

@media screen and (max-width: 1100px) {
  .big-table-container{
    display: none;
  }
  .small-table-container{
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .big-table-container{
    display: none;
  }
  .small-table-container{
    display: none;
  }
}
.big-cart-container {
  padding: 0px 30px;
}

.big-cart-container .no-item-line {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
}

table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.table-headers {
  font-size: 16px !important;
  text-transform: uppercase;
}

.image {
  position: relative;
  border-radius: 7px;
  align-items: center;
  height: 120px;
  width: 120px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
  cursor: pointer;
}
.image .image-contain {
  height: 120px;
  width: 120px;
  background-size: contain;
  background-position: center;
}

.image .image-cover {
  height: 120px;
  width: 120px;
  background-size: cover;
  background-position: center;
}

.cart-item-desc {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}

.item-description-text {
  text-overflow: ellipsis;
  overflow: hidden;
  height: 18px;
}
.item-option {
  padding-bottom: 5px;
}
.item-description h5 {
  font-size: 16px;
  text-transform: lowercase;
  font-weight: 600;
}
.item-description h5::first-letter {
  text-transform: capitalize;
}
.item-description {
  padding: 0px 15px;
}

.margin-top-table-container {
  margin-top: 8px;
}
.second-cart-column .quantity-btn {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  border: 1px solid black;
}
.second-cart-column .quantity-btn button {
  background-color: var(--background-color);
  color: black;
  border: none;
  height: 20px;
  padding: 0px;
  margin: 0px;
}

@media screen and (max-width: 600px) {
  .table {
    border: 0;
  }

  .outer-table-container thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .outer-table-container tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }

  .outer-table-container td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  .outer-table-container td::before {
    /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .outer-table-container .mycart-item-desc::before {
    /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
  }

  .outer-table-container td:last-child {
    border-bottom: 0;
  }
  .margin-top-table-container .quantity-btn {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid black;
    width: 60px;
    display: inline-flex;
  }
  .cart-item-desc {
    display: inline-flex;
    width: auto;
  }
}

.outerTableContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid black;
}
.firstcart-column {
  display: flex;
  flex-direction: row;
  align-items: end;
  padding: 0px;
  flex: 50%;
}
.second-cart-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  flex: 50%;
}
.second-cart-column-children {
  flex: 15%;
  text-align: center;
  margin-left: 2rem;
}
.price-column-magin {
  margin-left: 1.8rem;
}
.total-column-margin {
  margin-left: 1.5rem;
}
.last-cart-column-child {
  flex: 5%;
}
.last-cart-column-child .MuiIconButton-root {
  color: black;
}
.outerItemTableContainer {
  display: flex;
  flex-direction: row;
  align-items: end;
  padding: 15px 5px;
}


@media screen and (max-width: 1100px) {
      
  .small-table-headers{
    font-size: 16px !important;
    text-transform:uppercase;
  }
  .smallOuterTableContainer{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #BBC8D4;
  }
  .small-firstcart-column{
    display: flex;
    flex-direction: row;
    align-items: end;
    padding: 0px;
    flex: 40%;
  }
  .small-second-cart-column{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    flex: 60%;
    margin: 0px 15px;
  }
  .small-second-item-cart-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    flex: 60%;
    margin: 0px 15px;
  }
  .small-second-cart-column-children{
      flex: 20%;
      text-align: center;
  }
  .small-price-column-magin{
      margin-left: 1.8rem;
  }
  .small-total-column-margin{
    margin-left: 1.5rem;
  }
  .small-last-cart-column-child{
      flex:6%;
  }
  .small-last-cart-column-child .MuiIconButton-root{
      color: black;
  }
  .item-description-text{
      text-transform: lowercase;
  }
  .item-description-text::first-letter{
      text-transform: capitalize;
  }
  .small-second-cart-column .quantity-btn {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    border: 1px solid #BBC8D4;
    width: 80px;
    margin-left: 1rem;
  }
  .small-outerItemTableContainer{
    display: flex;
    flex-direction: row;
    align-items: end;
    padding: 15px;
  }
  .small-margin-top-table-container {
    margin-top: 8px;
  }
  .small-second-cart-column-children{
    flex: 15%;
    text-align: center;
    margin-left: 0rem;
  }
  .small-second-cart-desc-column{
    flex: 35%;
    text-align: center;
    margin-left: 0rem;
  }

  .small-item-option{
    padding-bottom: 5px;
  }
  .small-item-description h5 {
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 600;
  }
  .small-item-description h5::first-letter {
    text-transform: capitalize;
  }

  .small-second-cart-column .quantity-btn button{
    background-color: var(--background-color);
      color: black;
      border: none;
      height: 20px;
      padding: 0px;
      margin: 0px;
  }
  .small-cart-item-info{
      border-bottom: 1px solid #BBC8D4;
  }
  .image {
    position: relative;
    border-radius: 7px;
    align-items: center;
    height: 120px;
    width: 120px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
    cursor: pointer;
  }
  .image .image-contain {
    height: 120px;
    width: 120px;
    background-size: contain;
    background-position: center;
  }
  
  .image .image-cover {
    height: 120px;
    width: 120px;
    background-size: cover;
    background-position: center;
  }
  .item-description-text {
    text-overflow: ellipsis;
    overflow: hidden;
    height: 70px;
  }
  .small-item-option{
    padding-bottom: 5px;
  }
  .small-cart-description{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    flex: 30%;
  }
}
@media screen and (max-width: 900px) {
    .image {
        position: relative;
        border-radius: 7px;
        align-items: center;
        height: 90px;
        width: 90px;
        overflow: hidden;
        background-color: rgb(255, 255, 255);
        border-radius: 8px;
        box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
        cursor: pointer;
      }
      .image .image-contain {
        height: 90px;
        width: 90px;
        background-size: contain;
        background-position: center;
      }
      
      .image .image-cover {
        height: 90px;
        width: 90px;
        background-size: cover;
        background-position: center;
      }
      .small-second-cart-column .quantity-btn {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        border: 1px solid #BBC8D4;
        width: 50px;
        margin-left: 1rem;
    }
    .item-description-text {
        text-overflow: ellipsis;
        overflow: hidden;
        height: 70px;
        margin: 0px 20px;
    }
    .small-item-option {
        margin: 0px 20px;
    }
    .item-availability{
        margin: 0px 20px;
    }
}
.cart-accordion {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
  -webkit-box-shadow: 5px 0px 5px rgba(50, 50, 50, 0.3),
    -5px -5px 5px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 5px 0px 5px rgba(50, 50, 50, 0.3),
    -5px -5px 5px rgba(50, 50, 50, 0.3);
  box-shadow: 5px 0px 5px rgba(50, 50, 50, 0.3),
    -5px -5px 5px rgba(50, 50, 50, 0.3);
  z-index: 100;
}
.btn-mobile-checkout {
  width: 150px;
  height: 50px;
  font-size: 16px;
}
.cart-accordion .accordion-header {
  padding: 0 !important;
}

.cart-accordion .accordion-header .MuiAccordionSummary-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin: 0; */
}

.cart-accordion .expand-icon {
  color: darkgrey;
}

.cart-accordion .closed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
}

.cart-accordion .closed-header > .total-price {
  font-size: 1.3rem;
  font-weight: 500;
}

.cart-accordion .closed-header .delivery-price {
  color: darkgray;
  margin: 5px 0px;
}

.cart-accordion .accordion-body {
  width: 100%;
}

.cart-accordion .accordion-body-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0px;
  position: relative;
  -webkit-animation: fadeInUp 1s ease-in-out 0s forwards;
  animation: fadeInUp 1s ease-in-out 0s forwards;
  visibility: hidden;
}

.cart-accordion .total-price {
  border-bottom: none;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.cart-accordion .big-checkout-btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.cart-btn {
  -webkit-animation: fadeInUp 1s ease-in-out 0s forwards;
  animation: fadeInUp 1s ease-in-out 0s forwards;
  visibility: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

.accordion-body-line.first {
  -webkit-animation-delay: 1ms;
  animation-delay: 1ms;
}
.accordion-body .second {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
/* .accordion-body .third {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.accordion-body .fourth {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.accordion-body .fifth {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
} */

.checkout-container {
  padding: 20px 50px;
  width: 65%;
}

.checkout-container .tab-title {
  margin-top: 20px;
}

.checkout-user-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
  margin-top: 20px;
}

.checkout-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.checkout-tabs .MuiTabs-root {
  width: 100%;
}

.checkout-tabs .one-tab {
  width: 50%;
  text-align: center;
  font-size: 1.3rem;
  border-bottom: 1px solid darkgray;
  padding-bottom: 5px;
  color: darkgray;
  text-transform: capitalize;
}

.checkout-tabs .Mui-selected {
  color: black;
}

.checkout-tabs span[class^='PrivateTabIndicator'],
.checkout-tabs span[class*=' PrivateTabIndicator'],
.checkout-tabs span[class^='jss'],
.checkout-tabs span[class*=' jss'] {
  background-color: black !important;
}

.checkout-container .order-btn {
  width: 100%;
  text-transform: uppercase;
}

.checkout-container .pickup-disclaimer {
  font-size: 1.2rem;
  margin-top: 20px;
}

.payment-card-container {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 20px 0px;
}

.payment-card {
  height: 90px;
  width: 90px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  margin: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-card span {
  font-weight: 500;
  font-size: 16px;
  opacity: 1;
  display: inline-block;
  z-index: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.payment-card span::before {
  font-weight: 900;
  font-size: 36px;
  color: rgba(12, 12, 12, 0.2);
  position: absolute;
  content: attr(label);
  top: 40px;
  left: 30px;
  z-index: -1;
  white-space: nowrap;
}

.selected span::before {
  /* color: #6fcf97; */
  color: var(--link-color);
}

.payment-card.selected {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
}

.payment-card img {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 27px;
  width: 27px;
}

.discount-input {
  width: 70%;
  display: flex;
  align-items: baseline;
  margin-top: 15px;
}

.discount-input button {
  min-width: 96px;
  height: 31px;
  border: none;
  margin: 0px;
  margin-left: 15px;
}

.voucher-or-coupon-title {
  text-transform: uppercase;
}

.MuiCheckbox-colorPrimary.Mui-checked {
  color: var(--primary-color) !important;
}
.checkout-tabs .MuiTabs-root .MuiTabs-fixed{
  min-height: 32px;
  height: 32px;
}
@media screen and (max-width: 600px) {
  .checkout-container {
    padding: 30px 10px;
    margin-bottom: 150px;
    padding-bottom: 50px;
    width: 100%;
  }

  .checkout-user-info {
    display: block;
  }

  .checkout-container .tab-title {
    display: none;
  }

  .discount-input {
    width: 100%;
    margin-top: 10px;
  }
  .checkout-tabs .MuiTabs-root .MuiTabs-fixed{
    min-height: 40px;
    height: 40px;
  }
}

.cart-container {
  position: relative;
  flex-direction: column;
  background-color: var(--background-color, #fff);
  width: 400px;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
  /* border-radius: 8px; */
  padding: 7%;
}
.cart-page-container {
  width: 400px;
  position: relative;
  flex-direction: column;
  background-color: var(--background-color, #fff);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
  /* border-radius: 8px; */
  padding: 7%;
}

.cart-summary-description {
  display: none;
}

.cart-header {
  text-transform: uppercase;
}

.product-card .delete-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

.product-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 15px 0px;
  position: relative;
}

.product-card .item-image {
  min-width: 90px;
  min-height: 90px;
  width: 90px;
  height: 90px;
  cursor: pointer;
}

.product-card .item-image .img-contain {
  width: 100%;
  height: 90px;
  background-size: contain;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.product-card .item-image .img-cover {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  background-color: var(--background-color, #fff);
}

.product-card .quantity-btn {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid black;
  margin: 5px 0px;
}

.product-card .quantity-btn button {
  height: 20px;
  width: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: transparent;
  color: black;
  border: none;
  display: block;
}

.product-card .item-info {
  width: 45%;
}

.product-card .item-title {
  font-weight: 500px;
  font-size: 1rem;
  text-transform: uppercase;
}

.product-card .item-description {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.1rem;
  margin: 3px 0px;
}

.product-card .item-price {
  font-size: 1.3rem;
}

.product-card .item-option {
  color: darkgray;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.total-cart {
  margin-top: 40px;
  text-transform: uppercase;
}
.cart-header-font {
  font-size: 1.2rem;
}

.btn-cart {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.btn-split {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.btn-split .split-line {
  border-bottom: 1px solid black;
  width: 45%;
}

.cart-title {
  margin: 20px 0px;
  border-bottom: 1px solid darkgray;
  padding-bottom: 20px;
}
.marginMobileItem {
  text-align: center;
  margin: 2rem 0;
}
.coupon-line-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid darkgray;
  padding-top: 10px;
  margin-top: 20px;
}
.desktop-summary {
  display: block;
}
.mobile-summary {
  display: none;
}
@media screen and (max-width: 1100px) {
  .cart-page-container {
    width: 250px;
    position: relative;
    flex-direction: column;
    background-color: var(--background-color, #fff);
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
    /* border-radius: 8px; */
    padding: 7%;
  }
}
@media screen and (max-width: 600px) {
  .cart-container {
    position: relative;
    flex-direction: column;
    background-color: var(--background-color, #fff);
    width: 100%;
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
  }
  .cart-page-container {
    position: relative;
    flex-direction: column;
    background-color: var(--background-color, #fff);
    width: 100%;
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
  }
  .cart-summary-description {
    display: block;
  }
  .marginMobileItem {
    text-align: center;
    margin-top: 15rem;
  }
  .cart-mobile-accordion {
    display: block;
  }

  .coupon-line-cart {
    display: none;
  }

  .desktop-summary {
    display: none;
  }
  .mobile-summary {
    display: block;
  }
  .mobileMarginLeft{
    margin-left: 1.5rem;
  }
}

.search-popup {
  width: 350px;
  min-height: 110px;
  text-align: center;
  padding: 25px;
  max-height: 75vh;
  overflow: scroll;
  overflow-x: hidden;
}

.search-popup .input-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid darkgray;
  justify-content: center;
}

.header-search-input {
  border: none;
  background-color: var(--background-color);
  padding: 0px;
  font-size: 16px;
  height: 20px;
  width: 95%;
}

.header-search-input:focus {
  outline: none;
}

.header-search-loading {
  margin-top: 20px;
  color: var(--primary-color);
}

.search-card {
  width: 100%;
  height: max-content;
  box-shadow: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.search-card-body {
  width: calc(100% - 90px);
  padding: 0px 10px;
  position: relative;
}

.search-card-image {
  min-width: 90px;
  min-height: 90px;
  width: 90px;
  height: 90px;
  position: relative;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.search-card-image-position {
  min-width: 90px;
  min-height: 90px;
  width: 90px;
  height: 90px;
  position: relative;
  object-fit: cover;
  object-position: 100% 0%;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.search-card-image-cover {
  min-width: 90px;
  min-height: 90px;
  width: 90px;
  height: 90px;
  position: relative;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.search-card-title {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  height: 30px;
  width: 100%;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}

.search-card-description {
  width: 100%;
  height: 40px;
  font-size: 14px;
  text-transform: none;
  margin: 0px;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  margin-bottom: 10px;
}

.search-card-content {
  position: relative;
  bottom: 0rem;
  right: 0px;
  margin: 0px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.search-card-price h6 {
  margin-bottom: 0px;
  margin-top: 10px;
}

.search-card-price h5 {
  margin-top: 0px;
  font-size: 18px;
}
.noResultsPadding {
  padding: 40px;
}

#header {
  z-index: 1000;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 20px 9%;
  display: flex;
  justify-content: center;
  background: white;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}

#header .headerElem {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .actionButtonsDesktop {
  width: 100%;
  text-align: right;
  display: block;
  position: relative;
}

#header .actionButtonsMobile {
  width: 100%;
  text-align: right;
  display: none;
}

#header .logoElemDesktop {
  display: block;
}

#header .logoElemMobile {
  display: none;
}

#header .restaurantName {
  font-size: 1.8rem;
  cursor: pointer;
  text-align: center;
}

#header .logo {
  max-width: 200px;
  height: auto;
  max-height: 50px;
  cursor: pointer;
}

#header .logo.bright {
  filter: invert(1);
}

#header .mobile-nav {
  display: none;
}

#header .desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
}

#header .header-nav-container {
  justify-content: flex-start;
}

#header li {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  padding: 0 12px;
  padding-inline-start: 0;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

#header li a {
  color: var(--header-font);
}

#header li.active {
  text-decoration: underline;
}

#header .notification-container {
  position: relative;
}

#header .notification {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: red;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  padding-top: 3px;
}

.language-list-popover {
  display: flex;
  flex-direction: column;
}

#header .header-search-input:focus {
  outline: none;
}

@media screen and (max-width: 1136px) {
  #header li {
    font-size: 1rem;
  }
  #header {
    padding: 20px 5.5%;
    padding-left: 7%;
  }
}
@media screen and (max-width: 950px) {
  #header .desktop-nav {
    display: none;
  }

  #header .mobile-nav {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  #header {
    padding: 20px 7%;
  }
}
@media screen and (max-width: 600px) {
  #header {
    padding: 5px 5px;
  }

  #header .actionButtonsDesktop {
    justify-content: flex-end;
    display: none;
  }

  #header .actionButtonsMobile {
    justify-content: flex-end;
    display: flex;
  }

  #header .actionButtonsMobile .search-button {
    margin: 0px;
    padding: 0px;
  }

  #header .header-nav-container {
    justify-content: flex-start;
    padding-left: 10px;
  }

  #header .desktop-nav {
    display: none;
  }

  #header .mobile-nav {
    display: block;
  }

  .mobile-language-select {
    padding: 5px 16px;
  }

  .mobile-language-select .MuiInput-underline:before {
    border: none !important;
  }

  .mobile-one-language {
    display: flex;
    align-items: center;
  }

  .mobile-one-language span {
    margin-left: 5px;
    color: var(--link-color);
  }

  #header .searchIcon {
    display: none;
  }

  #header .logo {
    max-width: 130px;
    height: auto;
    max-height: 40px;
    cursor: pointer;
  }

  #header .notification {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    padding-top: 0;
  }

  #header #mobile-menu li {
    font-size: 1rem;
    padding: 0 12px;
    font-weight: bold;
    cursor: pointer;
  }

  #header .logoElemDesktop {
    display: none;
  }

  #header .logoElemMobile {
    display: block;
  }

  #header .mobile-input-container {
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid darkgray; */
    justify-content: center;
  }

  #header .mobile-search-input {
    border: none;
    background-color: white;
    padding: 0px;
    font-size: 16px;
    height: 20px;
    width: fit-content;
  }

  #header .mobile-search-input:focus {
    outline: none;
  }

  .language-flag {
    padding: 0px !important;
    margin: 0px !important;
  }

  #header .restaurantName {
    font-size: 1.5rem;
  }
}

.banner-container{
    position: fixed;
    height: 4rem;
    bottom: 0;
    width: 100%;
    padding: 2%;
    z-index: 1000;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 70%);
}
.banner-container-none{
    display: none;
}
.banner-btn-container{
    height: 3rem;
}
@media screen and (max-width: 600px) {
    .banner-container{
        position: fixed;
        height: 8rem;
        bottom: 0;
        width: 100%;
        padding: 2%;
        z-index: 1000;
        background-color: var(--background-color);
        display: block;
        box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 70%);
    }
}
.animation {
  margin-top: 10%;
  margin-bottom: 10%;
  display: block;
}

.one,
.two,
.three {
  display: block;
  float: left;
}

.one {
  width: 80px;
  height: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -10px;
  margin-right: 8px;
  color: var(--primary-color);
}

.two {
  width: 100px;
  height: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--secondary-color);
}

@keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}

.spin-one {
  -webkit-animation: spin-one 1.5s infinite linear;
  animation: spin-one 1.5s infinite linear;
}

@keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg);
  }
}

.spin-two {
  -webkit-animation: spin-two 2s infinite linear;
  animation: spin-two 2s infinite linear;
}

#maintenance {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  background: -webkit-linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}

@media screen and (max-width: 600px) {
  #maintenance {
    width: 100%;
    height: 140vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    background: -webkit-linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  }
}

.maintenance-logo {
  width: 300px;
  height: 150px;
  max-width: 90%;
  overflow: hidden;
  transform: translatey(0px);
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  margin-top: 50px;
}
.maintenance-logo img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.cardCategory {
  display: flex;
  padding: 0px;
  width: 100%;
  min-width: 260px;
  min-height: 300px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
}

.bottom-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 20px;
  text-align: center;
  font-weight: 300;
  min-width: 230px;
}

.bottom-left:hover {
  background-color: var(--background-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  padding: 0 20px;
}

.square-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 15px;
  padding: 0 20px;
}

.long-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 15px;
  padding: 0 20px;
}

.long-categories-grid .cardCategory:nth-child(3) {
  grid-column-start: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

.explore-more-card {
  display: inline-block;
  background-color: var(--background-color);
  padding: 0px;
  width: 100%;
  min-width: 260px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  height: auto;
  background: var(--primary-color);
}

.diakonie-see-all{
  position: relative;
    background-position: right;
    background-size: cover;
    display: flex;
    padding: 0px;
    width: 100%;
    height: 100%;
}

.explore-more-grid {
  background-color: var(--background-color);
  padding: 0px;
  width: 100%;
  min-width: 260px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  height: 100%;
  background: var(--primary-color);
}
.bottom-left-explore-more {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: 6.5rem;
  padding: 0 20px;
  text-align: center;
  font-weight: 300;
  min-width: 230px;
}

.long-categories-grid .cardCategoryExploreMore,
.square-categories-grid .cardCategoryExploreMore {
  grid-column-start: 1;
  grid-row-start: 2;
}
.long-categories-grid .explore-more-card,
.square-categories-grid .explore-more-card {
  grid-column-start: 1;
  grid-row-start: 2;
}
@media screen and (max-width: 768px) {
  .cardCategory {
    min-width: 195px;
  }
  .bottom-left {
    min-width: 155px;
  }
  .bottom-left-explore-more {
    top: 3.5rem;
  }
}
@media screen and (max-width: 600px) {
  .categories-grid,
  .long-categories-grid,
  .square-categories-grid {
    display: flex;
    flex-direction: row;
    margin: 0px;
    padding: 0px;
  }
  .explore-more-grid,
  .all-cat-btn {
    display: none;
  }

  .cardCategory {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
    width: 33%;
    min-width: 100px;
    min-height: 200px;
  }

  .bottom-left {
    font-size: 14px;
    min-width: 50px;
  }

  .card-image-category {
    box-shadow: none;
    border-radius: 10px;
    width: 100px;
    height: 100px;
    object-fit: cover;
  }

  .square-categories-grid {
    grid-gap: 5px;
  }
}

.cards-list {
  display: flex;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.cards-list::-webkit-scrollbar {
  display: none;
}

.cards-list .item-card {
  min-width: 140px;
  width: 140px;
  height: 160px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  font-size: 0.9rem;
  padding-bottom: 10px;
  position: relative;
}

.cards-list .item-card:first-child {
  margin-left: 21px;
}

.item-card .card-mobile-image {
  width: 140px;
  height: 150px;
  background-size: contain;
  background-position: center;
}

.item-card .image-cover {
  background-size: cover;
  background-position: center;
}

.item-card .item-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: 500;
}

.item-card .card-text {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  width: 140px;
  position: absolute;
  bottom: 11px;
  left: 0px;
}

.item-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 21px;
  column-gap: 21px;
  padding: 20px;
  align-items: center;
}

.item-cards-new .newItemcard {
  background-color: var(--background-color);
  padding: 0px;
  width: 100%;
  /* height:   calc(50vw + (1500 - 700)  * ((60vh - 500px) / (1920 - 500))); */
  /* height: calc(50vh + (1500 - 250) * ((55vw - 500px) / (1920 - 500))); */
  /* height: calc(37vw + (1500 - 250) * ((36vw - 500px) / (2000 - 500))); */
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0px 0px 8px 0 rgb(0 0 0 / 10%);
  transition: box-shadow 500ms ease;
  height: 530px;
}

.item-cards-new .newItemcard:hover {
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.15);
}

.newItemcard .card-image {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: contain;
  background-position: center;
}

.newItemcard .card-image-position {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: cover;
  background-position: center;
  object-position: 100% 0%;
}

.newItemcard .card-image-cover {
  width: 100%;
  /* height: 256px; */
  height: calc(35vw + (1500 - 550) * ((55vh - 500px) / (1920 - 500)));
  /* height: calc(30vw + (1500 - 250) * ((35vw - 500px) / (2000 - 500))); */
  /* height: 431px; */
  position: relative;
  background-size: cover;
  background-position: center;
}

.newItemcard .itemTextBlockContainer {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 180px;
}

.itemTextBlockContainer .card-category-title {
  font-size: 130%;
  margin: 2px 0;
  font-weight: 100;
  text-align: left;
  line-height: normal;
  max-height: 38px;
  overflow: hidden;
  display: none;
}
.itemTextBlockContainer .card-item-title {
  font-size: 130%;
  margin: 2px 0;
  font-weight: 100;
  text-align: left;
  line-height: normal;
  max-height: 40px;
  overflow: hidden;
}

/* .itemTextBlockContainer .card-content {
    width: 100%;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  } */

.itemTextBlockContainer .card-item-description {
  height: 3.2rem;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: none;
}
.itemTextBlockContainer .card-item-description p {
  margin: 0px !important;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: var(--hinted-font-color);
}
.itemTextBlockContainer .availibility .availibilityStocks {
  display: flex;
  flex-direction: column;
  padding: 0px;
}

.itemTextBlockContainer .availibility {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  width: 100%;
}

.itemTextBlockContainer .view-link {
  padding: 10px;
  margin-top: 3rem;
  text-decoration: underline;
}

.itemTextBlockContainer .card-price h6 {
  margin-bottom: 0px;
  margin-top: 10px;
}

.itemTextBlockContainer .card-price h5 {
  margin-top: 0px;
}

.itemTextBlockContainer .card-category-title {
  color: var(--hinted-font-color);
  font-weight: 100;
}
@media screen and (max-width: 600px) {
  .item-cards-new {
    display: block;
    margin: 0px;
    padding: 0px;
    padding-bottom: 50px;
  }
  .item-cards-new .newItemcard:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
  }
  .item-cards-new .newItemcard {
    width: 100%;
    height: max-content;
    box-shadow: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 15px;
  }

  .item-cards-new .card-body {
    width: calc(100% - 90px);
    padding: 0px 10px;
    position: relative;
    min-height: auto;
  }

  .item-cards-new .card-image {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: contain;
    background-position: center;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
    background-color: var(--background-color);
  }

  .item-cards-new .card-image-cover {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
  }

  .item-cards-new .card-image-position {
    min-width: 95px;
    min-height: 95px;
    width: 95px;
    height: 95px;
    background-size: cover;
    background-position: center;
    object-position: 100% 0%;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); */
  }
  .item-cards-new .itemTextBlockContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    width: calc(100% - 90px);
    min-height: 68px;
    left: 120px;
    top: 26px;
    padding-left: 15px;
  }
  .itemTextBlockContainer .card-category-title {
    font-size: 12px;
    margin: 2px 0;
    font-weight: 100;
    text-align: left;
    line-height: normal;
    max-height: 38px;
    overflow: hidden;
    display: block;
  }
  .itemTextBlockFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
  }
  .itemTextBlockContainer .card-item-title {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    height: 25px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .itemTextBlockContainer .card-item-description {
    margin: 0px;
    height: 1rem;
  }

  .itemTextBlockContainer .availibility .availibilityStocks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
  }
  .availibility {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
  }
  .availabilityContainer {
    padding-top: 0;
  }
  .priceContainer h6 {
    font-size: 10px;
  }
  .itemTextBlockContainer .view-link {
    display: none;
  }
}

.mobile-home-page {
  display: none;
}
.homePage-slider {
  width: 100%;
}
.desktop-home-page {
  padding: 3%;
}

@media screen and (max-width: 600px) {
  .mobile-home-page {
    display: block;
  }

  .desktop-home-page {
    display: none;
  }

  .mobile-home-page .shadow {
    border-radius: 2rem;
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    -moz-box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    margin-top: -2rem;
    background-color: var(--background-color);
    overflow: hidden;
    padding: 15px 0px 30px 0px;
    margin-bottom: 20px;
  }

  .mobile-home-page .search-bar-container {
    position: absolute;
    z-index: 100;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-home-page .search-bar {
    position: relative;
    top: -20px;
    width: 200px;
    display: flex;
    background-color: var(--background-color);
    padding: 5px 20px;
    -webkit-box-shadow: 3px 2px 3px rgba(50, 50, 50, 0.35);
    -moz-box-shadow: 3px 2px 3px rgba(50, 50, 50, 0.35);
    box-shadow: 3px 2px 3px rgba(50, 50, 50, 0.35);
  }

  .mobile-home-page .search-bar input {
    border: none;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

  .mobile-home-page .search-bar input:focus {
    outline: none;
  }

  .mobile-home-page .search-bar .MuiSvgIcon-root {
    color: darkgray;
  }

  .mobile-home-page-container {
    position: relative;
    padding: 0px;
    padding-top: 15px;
  }

  .mobile-home-page-container h3 {
    padding: 0px 21px;
  }

  .mobile-home-page-container:first-child {
    padding: 21px;
    padding-bottom: 0px;
  }

  .mobile-home-page-container:first-child h3 {
    padding: 0px;
  }

  .mobile-home-page-container:last-child {
    margin-bottom: 15px;
  }

  .see-all-link {
    display: flex;
    align-items: center;
    position: absolute;
    top: 25px;
    right: 20px;
    color: darkgray;
  }

  .see-all-link .icon-btn {
    color: darkgrey;
    width: 20px;
    height: 20px;
    padding-top: 2px;
  }
}

#light-cards {
  width: 100%;
  text-align: center;
  padding: 40px;
  position: relative;
}

#light-cards .one-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

#light-cards .hidden-card {
  display: none;
}

#light-cards .one-card:nth-child(even) {
  flex-direction: row-reverse;
}

#light-cards .one-card .image-container {
  width: 50%;
  height: 450px;
  overflow: hidden;
  text-align: center;
}

#light-cards .one-card .image-container .img-contain {
  width: 450px;
  height: 450px;
  background-position: center;
  background-size: contain;
}

#light-cards .one-card .image-container .img-cover {
  width: 450px;
  height: 450px;
  background-position: center;
  background-size: cover;
}

.title-margin {
  margin-right: 1%;
  line-height: normal;
}

#light-cards .one-card .text-container {
  width: 50%;
  max-width: 500px;
  margin: 0px 10px;
  text-align: left;
}

#light-cards .one-card:nth-child(even) > .text-container {
  text-align: right;
}

#light-cards .one-card .text-container h6 {
  font-size: 2rem;
  margin-bottom: 30px;
}

#light-cards .one-card .text-container p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

#light-cards .one-card .text-container .view-item-btn {
  width: 50%;
  max-width: 200px;
}

#light-cards .load-more-btn {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #light-cards {
    padding: 0px;
    padding-bottom: 40px;
    margin-top: -2rem;
  }

  #light-cards .hidden-card {
    display: block;
  }

  #light-cards .one-card .text-container h6 {
    display: none;
  }

  #light-cards .one-card .text-container .text-description {
    display: none;
  }

  #light-cards .one-card {
    display: block;
    padding: 0px;
    position: relative;
  }

  #light-cards .one-card .image-container {
    width: 100vw;
    height: 100vw;
    background-color: var(--background-color);
  }

  #light-cards .one-card .image-container .img-contain {
    width: 100vw;
    height: 100vw;
    background-position: center;
    background-size: contain;
  }
  #light-cards .one-card .image-container .img-cover {
    width: 100vw;
    height: 100vw;
    background-position: center;
    background-size: cover;
  }

  #light-cards .one-card .text-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
  }

  #light-cards .one-card:nth-child(even) > .text-container {
    text-align: left;
  }

  #light-cards .load-more-btn {
    display: none;
  }

  #light-cards .one-card .text-container .view-item-btn {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: black;
    width: 200px;
    padding: 10px;
    height: 50px;
  }
}

.keen-slider{display:flex;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.keen-slider,.keen-slider__slide{overflow:hidden;position:relative}.keen-slider__slide{width:100%;min-height:100%}.keen-slider[data-keen-slider-v]{flex-wrap:wrap}.keen-slider[data-keen-slider-v] .keen-slider__slide{width:100%}.keen-slider[data-keen-slider-moves] *{pointer-events:none}
[class^='number-slide'],
[class*=' number-slide'] {
  background: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  height: 300px;
  max-height: 100vh;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.5),
    rgba(0, 0, 0, 0.5)
  );
}

.navigation-wrapper {
  position: relative;
  margin-bottom: 2%;
}

.dots {
  display: flex;
  padding: 10px 0;
  justify-content: center;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  background: #c5c5c5;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}

.dot:focus {
  outline: none;
}

.dot.active {
  background: #000;
}

.arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  fill: #fff;
  cursor: pointer;
}

.arrow--left {
  left: 5px;
}

.arrow--right {
  left: auto;
  right: 5px;
}

.arrow--disabled {
  fill: rgba(255, 255, 255, 0.5);
}
.one-slide {
  width: 100vw;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: var(--primary-color);
}
.navbullets {
  position: relative;
  margin-bottom: 3rem;
  margin-top: -5rem;
}
#hero-slider .one-image-slide {
  height: 70vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.slider-desktop {
  overflow: hidden;
}
.slider-mobile {
  display: none !important;
}
.keen-slider-button {
  height: 60px;
  display: flex;
}
.hero-slider-heading {
  font-size: 2.05vw;
  color: white;
  font-weight: 500;
  line-height: 2vw;
}
.hero-slider-subheading {
  font-size: 1.05vw;
  color: white;
  font-weight: 400;
  line-height: 1.5vw;
}
.hero-slider-btn-text {
  color: white;
  white-space: nowrap;
  line-height: 1vh;
  font-size: 1.5vw;
  margin: 2px;
}
.slider-title-container {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 33vw;
  left: 30%;
  top: 58%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3%;
}

@media screen and (max-width: 1024px) {
  .slider-title-container {
    top: 51%;
  }
}
@media screen and (max-width: 600px) {
  .homePage-slider {
    position: sticky;
    top: 0;
    left: 0px;
  }
  .one-slide {
    height: 300px;
  }

  .one-image-slide{
    height: 300px;
    background-position: center;
    background-size: cover;
  }

  .slider-desktop {
    display: block;
  }
  .slider-mobile {
    display: block;
  }
  .slider-title-container {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 45vw;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3%;
  }
  .hero-slider-heading {
    font-size: 18px;
    color: white;
    font-weight: 500;
    line-height: 2vw;
  }
  .hero-slider-subheading {
    font-size: 12px;
    color: white;
    line-height: 15px;
  }
  .keen-slider-button {
    height: 30px;
    display: flex;
  }
  .hero-slider-btn-text {
    color: white;
    white-space: nowrap;
    line-height: 2px;
    font-size: 12px;
    margin: 0px;
  }
}

.zoom-out__slide {
  position: absolute;
}

.zoom-out__slide img {
  background-color: transparent;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

#loader {
  width: 100%;
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:var(--background-color);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  background: -webkit-linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}

@media screen and (max-width: 600px) {
  #loader {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    background: -webkit-linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  }
}

.loader-logo {
  width: 300px;
  height: 150px;
  max-width: 90%;
  overflow: hidden;
  transform: translatey(0px);
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}
.loader-logo img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.data-table-outer-container {
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 70px;
}
.border-data-top {
  border-top: 1px solid rgba(158, 158, 158, 0.5);
  border-bottom: 1px solid rgba(158, 158, 158, 0.5);
  padding-bottom: 6rem;
}
.data-table-container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 15px;
  margin-top: 30px;
}
.data-table-description-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.5);
  padding-bottom: 5px;
}
.data-description-margin {
  margin-left: 15%;
}

.container-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.container-video .player {
  position: absolute;
  top: 7%;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .data-table-outer-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-bottom: 10px;
  }
  .data-table-container {
    grid-template-columns: 1fr !important;
    width: 95%;
    margin: auto;
  }

  .data-description-margin {
    margin-left: 0% !important;
  }
  .border-data-top {
    border-bottom: none !important;
  }
}

.filters-list {
  min-width: 250px;
  max-width: 22%;
  overflow: hidden;
  margin-right: 20px;
  margin-left: 10px;
}

.filters-list .input-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid darkgray;
  justify-content: center;
}

.filters-list .apply-link,
.filters-list .clear-all-link-mobile {
  display: none;
}

.filters-list .clear-all-link-desktop {
  color: var(--link-color);
  cursor: pointer;
  text-decoration: underline;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 400;
}

.filters-list .search-input {
  border: none;
  background-color: white;
  padding: 0px;
  font-size: 16px;
  height: 20px;
  width: 95%;
}

.filters-list .search-input:focus {
  outline: none;
}

.filters-list .one-filter-part {
  margin: 20px 0px;
}

.filters-list .filter-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--font-color);
  margin: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 0;
  border: none;
  width: 100%;
}

.filters-list .selected-number {
  color: darkgray;
  font-size: 10px;
}

.filters-list .option-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 15px 0px;
  font-size: 16px;
  color: var(--hinted-font-color);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filters-list .option-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filters-list .option-label {
  min-width: 200px;
  max-width: 20%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filters-list .option-container .option-box {
  height: 17px;
  width: 17px;
  border: 1px solid darkgray;
}

.filters-list .option-container input:checked ~ .option-box {
  background-color: var(--primary-color);
  border: none;
}

.option-box:after {
  content: '';
  display: none;
}

.filters-list .search-input {
  border: none;
  background-color: var(--background-color);
  padding: 0px;
  font-size: 16px;
  height: 20px;
  width: 95%;
}

/* Style the checkmark/indicator */
.option-container .option-box:after {
  position: relative;
  left: 7px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-filter-title {
  display: none;
}

@media screen and (max-width: 600px) {
  .filters-list {
    display: none;
    position: fixed;
    background-color: var(--background-color);
    z-index: 10;
    width: 100vw;
    left: 0px;
    bottom: 0px;
    margin: 0px;
    padding: 20px;
    height: 75vh;
    overflow: hidden;
    -webkit-box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    -moz-box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    box-shadow: 0px -2px 3px rgba(50, 50, 50, 0.35);
    border-radius: 2rem;
    animation: bottomToTop 0.8s;
    max-width: none;
  }

  .filters-list.closing {
    animation: topToBottom 0.8s;
  }

  .filters-list .all-filters {
    max-height: calc(75vh - 60px);
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  .filters-list .all-filters::-webkit-scrollbar {
    display: none;
  }

  .filters-list .one-filter-part {
    margin: 20px 0px;
  }

  .filters-list .input-container {
    display: none;
  }

  .mobile-filter-title {
    display: block;
    text-align: center;
    font-size: 16px;
  }

  .mobile-filter-title .grey-button {
    height: 6px;
    width: 30px;
    margin: auto;
    background-color: gray;
    border-radius: 3px;
    margin-bottom: 5px;
  }

  .filters-list .top-links {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
  }

  .filters-list .apply-link,
  .filters-list .clear-all-link-mobile {
    display: block;
    color: var(--link-color);
    cursor: pointer;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
  }

  .filters-list .clear-all-link-desktop {
    display: none;
  }

  @keyframes bottomToTop {
    from {
      transform: translate3d(0, 100%, 0);
    }
    to {
      transform: none;
    }
  }

  @keyframes topToBottom {
    from {
      transform: none;
    }
    to {
      transform: translate3d(0, 100%, 0);
    }
  }
}

.allproducts-page .first-lines {
  margin: auto;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.allproducts-page .first-lines h3 {
    position: absolute;
    top: 20rem;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.7));
    color: #fff;
    font-size: 35px;
    margin-top: 0rem;
}

.allproducts-page .page-title {
  width: 100%;
  text-align: center;
}
.allproducts-page .page-title h3 {
  position: absolute;
    width: 100%;
    text-align: center;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.7));
    color: #fff;
    font-size: 35px;
}

.allproducts-page .first-lines .back-link {
  width: 300px;
}

.allproducts-page .first-lines .filter-button {
  display: none;
}

.allproducts-page .all-items-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}


@media screen and (max-width: 600px) {
  .allproducts-page {
    padding-top: 0px;
    margin-top: 60px;
  }
  .allproducts-page .first-lines{
    padding: 20px;
  }

  .allproducts-page .top-part {
    display: block;
  }

  .allproducts-page .page-title {
    text-align: left;
  }

  .allproducts-page .first-lines {
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .allproducts-page .page-title h3{
    font-size: 20px;
    top: 4%;
  }

  .allproducts-page .first-lines h3 {
    text-align: left;
    font-size: 20px;

    position: absolute;
    margin-top: -10rem;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.7));
    color: #fff;
    font-size: 20px;
  }
  .allproducts-page .back-button{
    display: none !important;
  }

  .allproducts-page .first-lines .back-link {
    display: none;
  }

  .allproducts-page .first-lines .filter-button {
    display: block;
    text-decoration: underline;
    float: right;
  }
}

.success-pageOuterContainer {
  display: flex;
  margin-top: 10rem;
  align-items: center;
  justify-content: center;
}
.success-pageOuterContainer-mobile {
  display: none;
}
.success-page-title-container {
  width: 800px;
  text-align: center;
  font-weight: 500;
}
.success-border-radius h3 {
  padding-bottom: 5rem;
  border-bottom: 1px solid #000;
}

.success-sub-border-radius {
  padding: 0.5rem;
  border-bottom: 1px solid #bbc8d4;
}
.cart-info-capitaize {
  text-transform: capitalize;
  font-weight: 100 !important;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: visible;
}
.Order-Sub-Info-title {
  display: flex;
  flex-flow: row;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
.cart-info-capitaize p {
  color: gray;
  text-transform: lowercase !important;
}
.cart-info-capitaize p::first-letter {
  text-transform: capitalize !important;
}
.Order-Sub-Info-title h5 {
  width: 100%;
  font-weight: 700;
  text-transform: lowercase;
}
.User-Info {
  width: 100%;
  font-weight: 700;
  text-transform: capitalize !important;
}
.Order-Sub-Info-title h5::first-letter {
  text-transform: capitalize;
}
.Order-Sub-Info-title span {
  text-transform: capitalize;
}
.Order-Cart-Info-Container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

.success-grey-part {
  display: flex;
  background-color: rgb(240, 240, 240);
  padding: 14px;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  margin: auto;
  margin-bottom: 1rem;
}

.success-grey-part .one-column {
  width: 50%;
}

.success-grey-part .one-column .one-line {
  display: flex;
  justify-content: space-between;
  margin-right: 24px;
}

.success-grey-part .one-column .bold-text {
  font-weight: 900;
  border-bottom: 1px solid #bbc8d4;
}

.success-grey-part .success-buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.Success-product-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-flow: row;
  align-items: center;
}

.Success-product-title-container {
  flex: 6 0 60%;
  text-overflow: ellipsis;
  white-space: break-spaces;
  overflow: hidden;
}
.Success-product-title-container p {
  height: 60px;
  overflow: hidden;
  margin-bottom: 10px;
  text-transform: none;
  width: 80%;
  color: var(--hinted-font-color);
}
.white-spaces-wrap {
  white-space: nowrap;
}
.card-image-cover-success {
  height: 80px;
  width: 80px;
  object-fit: cover;
}
.card-image-position-success {
  height: 80px;
  width: 80px;
  object-fit: contain;
}
.card-image-success {
  height: 80px;
  width: 80px;
  object-fit: contain;
}
.Success-sub-product-title-container {
  flex: 2 0 33.33%; /* explanation below */
}

.Success-item-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-flow: row;
}
.Success-item-subChild {
  flex: 2 0 10%;
}
@media screen and (max-width: 900px) {
  .success-page-title-container {
    width: 600px;
    text-align: center;
    font-weight: 500;
  }
  .Success-product-title-container p {
    margin-top: 0px;
  }
}
.success-icon {
  display: inline-block;
  width: 8em;
  height: 8em;
  font-size: 20px;
  border-radius: 50%;
  border: 4px solid #96df8f;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  -webkit-animation: showSuccess 180ms ease-in-out;
  animation: showSuccess 180ms ease-in-out;
  transform: scale(1);
}

.success-icon__tip,
.success-icon__long {
  display: block;
  position: absolute;
  height: 4px;
  background-color: #96df8f;
  border-radius: 10px;
}

.success-icon__tip {
  width: 2.4em;
  top: 4.3em;
  left: 1.4em;
  transform: rotate(45deg);
  -webkit-animation: tipInPlace 300ms ease-in-out;
  animation: tipInPlace 300ms ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 180ms;
  animation-delay: 180ms;
  visibility: hidden;
}

.success-icon__long {
  width: 4em;
  transform: rotate(-45deg);
  top: 3.7em;
  left: 2.75em;
  -webkit-animation: longInPlace 140ms ease-in-out;
  animation: longInPlace 140ms ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  visibility: hidden;
  -webkit-animation-delay: 440ms;
  animation-delay: 440ms;
}

/* Animations */

@-webkit-keyframes showSuccess {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes showSuccess {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes tipInPlace {
  from {
    width: 0em;
    top: 0em;
    left: -1.6em;
  }
  to {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}
@keyframes tipInPlace {
  from {
    width: 0em;
    top: 0em;
    left: -1.6em;
  }
  to {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}
@-webkit-keyframes longInPlace {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }
  to {
    width: 4em;
    top: 3.7em;
    left: 2.75em;
    visibility: visible;
  }
}
@keyframes longInPlace {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }
  to {
    width: 4em;
    top: 3.7em;
    left: 2.75em;
    visibility: visible;
  }
}


@media screen and (max-width: 600px) {
    .Success-product-title-container::first-letter {
        text-transform:capitalize;
    }
    .Success-product-title-container {
        text-transform:lowercase;
    }
    .Success-order-details-margin-top{
        margin-top: -5px;
    }
    .Success-order-details-margin-bottom{
        margin-bottom: -5px;
    }
.Success-item-subChild{
    flex: 1 0 20%;
  }
  .Success-product-title-container {
    flex: 3 0 100%; 
    text-overflow: ellipsis;
    white-space:normal;
    overflow: hidden;
  }
  .card-image-cover-success{
    height: 65px;
    width: 65px;
    object-fit: cover;
}
.card-image-position-success{
    height: 65px;
    width: 65px;
    object-fit: contain;
}
.card-image-success{
    height: 65px;
    width: 65px;
    object-fit: contain;
}
.white-spaces-wrap{
    white-space:normal ;
  }
.User-details-margin{
    margin-bottom: -15px;
}


  .success-pageOuterContainer-mobile{
    display: block;
}
.success-page-title-container{
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.success-border-radius h3{
    padding: 1.5em;
    border-bottom: 1px solid #000;
}
.success-border-radius-orderinfo{
    border-bottom: 1px solid #000;
}
.success-sub-border-user-radius{
    padding: 0.6rem;
}
.item-success-info{
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
    text-transform: none;
    width: 80%;
    color: var(--hinted-font-color);
}
/* .Success-product-container {
    padding: 10px;
} */
.text-align-right-total{
    text-align: right;
}
.Order-Sub-InfoTotal-title{
    height: 20px;
}
.total-font-weight{
    font-weight: 800;
    border-bottom: 1px solid #000;
}
.final-total-font-weight{
    font-weight: 800 !important;
}
.Success-sub-product-title-container {
    flex: 2 0 38.33%;
}
.success-sub-border-radius {
    padding: 0.4rem;
    border-bottom: 1px solid #BBC8D4;
}
.success-sub-border-user-radius {
    padding: 0.4rem;
}
.success-total-price{
    padding: 5px;
}
.download-icon-padding{
    height: 30px;
    margin-bottom:30px;
    justify-content: flex-end;
}
.cart-info-capitaize p{
    color: gray;
    text-transform: lowercase;
}
.cart-info-capitaize p::first-letter{
    text-transform: capitalize;
}
.success-icon{
    transform: scale(0.6) !important;
}
.success-icon-container{
    margin-bottom: -4rem;
}
.User-Info{
    width: 100%;
    font-weight: 700;
    text-transform: capitalize !important;
}
}
 
.success-icon {
    display: inline-block;
    width: 8em;
    height: 8em;
    font-size: 20px;
    border-radius: 50%;
    border: 4px solid #96df8f;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    transform-origin: center;
    -webkit-animation: showSuccess 180ms ease-in-out;
    animation: showSuccess 180ms ease-in-out;
    transform: scale(1);
  }
  
  .success-icon__tip,
  .success-icon__long {
    display: block;
    position: absolute;
    height: 4px;
    background-color: #96df8f;
    border-radius: 10px;
  }
  
  .success-icon__tip {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    transform: rotate(45deg);
    -webkit-animation: tipInPlace 300ms ease-in-out;
    animation: tipInPlace 300ms ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 180ms;
    animation-delay: 180ms;
    visibility: hidden;
  }
  
  .success-icon__long {
    width: 4em;
    transform: rotate(-45deg);
    top: 3.7em;
    left: 2.75em;
    -webkit-animation: longInPlace 140ms ease-in-out;
    animation: longInPlace 140ms ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    visibility: hidden;
    -webkit-animation-delay: 440ms;
    animation-delay: 440ms;
  }

/* Animations */

@-webkit-keyframes showSuccess {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
  
  @keyframes showSuccess {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
  @-webkit-keyframes tipInPlace {
    from {
      width: 0em;
      top: 0em;
      left: -1.6em;
    }
    to {
      width: 2.4em;
      top: 4.3em;
      left: 1.4em;
      visibility: visible;
    }
  }
  @keyframes tipInPlace {
    from {
      width: 0em;
      top: 0em;
      left: -1.6em;
    }
    to {
      width: 2.4em;
      top: 4.3em;
      left: 1.4em;
      visibility: visible;
    }
  }
  @-webkit-keyframes longInPlace {
    from {
      width: 0em;
      top: 5.1em;
      left: 3.2em;
    }
    to {
      width: 4em;
      top: 3.7em;
      left: 2.75em;
      visibility: visible;
    }
  }
  @keyframes longInPlace {
    from {
      width: 0em;
      top: 5.1em;
      left: 3.2em;
    }
    to {
      width: 4em;
      top: 3.7em;
      left: 2.75em;
      visibility: visible;
    }
  }
    
