#portal {
  position: fixed;
  top: 0;
}

html {
  /* set base font size to 13px */
  font-size: 50.782% !important;
}

body {
  color: var(--mu-colors-foreground-text-neutral-plain) !important;
  overscroll-behavior-y: none;
}

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

.hide-scrollbar {
  scrollbar-width: none;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.animate-copy {
  animation: pulse 0.2s;
  transition: all 0.2s;
}

.remove-icon-background svg {
  background: none !important;
}

[id*="ScrollableDialog"] .infinite-scroll-component {
  overflow: hidden !important;
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}



/*
=============== 
Gallery
===============
*/
:root {
  --clr-primary-orange: hsl(26, 100%, 55%);
}

/* Gallery Slider Small Screen */
.slider-container {
  position: relative;
  width: 50vw;
  height: 30rem;
}
.slider-img {
  width: 50vw;
  height: 30rem;
  object-fit: cover;
}
.slider-arrow-right,
.slider-arrow-left {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow-right {
  right: 0;
}
.slider-arrow-left {
  left: 0;
}

/* add transition for the the sliders */
.slider-img-container {
  opacity: 0;
  transition-duration: 1s ease;
}
.slider-img-container-active {
  opacity: 1;
  transition-duration: 1s;
}
.gallery-big-screen-images-container {
  display: none;
}


.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
}
.slider-container {
  display: none;
}
/* big screen gallery */
.gallery-big-screen-images-container {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
  padding: 2rem;
}
.big-screen-main-img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-small-images {
  display: flex;
  flex-direction: row;
  justify-content: start;
  column-gap: 1.5rem;
}
.small-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}
.small-img-container {
  width: 8rem;
  height: 8rem;
  border-radius: 5px;
}
.active-small-img-container {
  position: relative;
  border: 3px solid var(--clr-primary-orange);
}
.active-small-img-container:after {
  content: '';
  z-index: 10;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

/*
=============== 
Lightbox Gallery
===============
*/
/* visible only on big screen */

.lightbox-gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  align-items: center;
  justify-content: center;
}
.inner-lightbox-gallery-container {
  position: relative;
}
.lightbox-gallery-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-main-img {
  width: 50rem;
  height: 50rem;
}
.lightbox-arrow-left,
.lightbox-arrow-right {
  top: 45%;
}

@media screen and (max-width: 718px) {
  .lightbox-main-img {
    width: 30rem;
    height: 30rem;
  }
}
