@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #2D5F7A;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Inter', sans-serif;
}
html.pre-translated body {
  visibility: hidden;
}

html {
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  display: block;
  text-align: center;
  padding-top: 10px;
}

.logo img {
  height: 60px;
  cursor: pointer;
}

.logo {
  cursor: default;
}

.menu-button {
  display: block;
  width: 100%;
  border: none;
  padding: 10px;
  margin-top: 5px;
  background-color: #f2f2f257;
  /* border: 0.4px solid #cfcfcf82; */
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}

.menu-button.active {
    color: #6db17a;
}

.dropdown {
  margin: 0 10px 0;
}

.drop-list {
  display: none;
}

.drop-list li {
  padding: 15px;
  border-block-end: 1px solid rgba(203, 201, 201, 0.161);
  cursor: default;

}

.drop-list a {
  display: block;
  cursor: default;
  width: 100%;
  height: 100%;
}

.drop-list li:hover {
  background-color: rgba(203, 201, 201, 0.161);
}


.nav-link.active {
  color: #6db17a;
}

.has-submenu {
  position: relative;
}

.icon-caret {
  position: absolute;
  text-align: center;
  padding: 19px;
  right: 0;
  top: 1px;
  width: 50px !important;
  height: 50px;
  transition: transform 0.3s ease;
  transform-origin: center;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
  cursor: default;

}



.icon-caret.open {
  transform: rotate(0deg);
}



.submenu {
  display: none;

  list-style-type: none;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  background-color: none;
}


.submenu.open {
  display: block;
  z-index: 1;
}

.submenu a {
  margin: 0;
  padding: 5px;
  color: #7a807db3;
  font-size: 0.875rem;
}

.submenu li {
  margin: 5px;
  padding: 0;
  color: #7a807db3;
  border-block-end: none;
  transition: transform 0.2s ease;
}

.head-nav {
  display: none;
  justify-content: center;
  margin: 10px 14px 5px;
  padding-bottom: 10px;
  position: relative;
}


.head-nav::after {
  /* content: ''; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #93939381;
}

.head-nav span {
  /* color: #827777; */
  font-size: 1.2rem;
  cursor: default;
}


.vertical-nav {
  display: grid;
  margin: 20px auto;
  padding: 0 10px 30px;
  gap: 10px;
}

.vertical-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-ratio-23-32-32,
.img-ratio-32x2v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.img-ratio-32x2v1,
.img-ratio-32x3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.img-ratio-32_23 {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 10px;
}


.tall {
  grid-row: span 2;
}

.wide32x3,
.wide32_23 {
  grid-column: span 2;
}

.img-ratio-square {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 10px;
}


.scroll-to-top-btn {
  display: flex;
  position: fixed;
  bottom: 70px;
  right: -100px;
  width: 90px;
  height: 40px;
  border: none;
  background-color: rgba(215, 230, 230, 0.415);
  color: rgba(0, 0, 0, 0.579);
  font-size: 1.625rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s, transform 0.6s;

}

.scroll-to-top-btn span {
  color: black;
}

.scroll-to-top-btn:hover {
  background-color: #cdcfce;
  color: #7a797995;
}

.scroll-to-top-btn.visible {
  display: flex;
  opacity: 1;
  transform: translateX(-120px);
}

.scroll-to-top-btn.hidden {
  opacity: 0;
  transform: translateX(0);
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  touch-action: manipulation;
}

.modal-content {
  display: flex;
  position: relative;
  padding: 75px 0 75px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#fullscreen-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



.nav-btn {
  position: absolute;
  width: 50px;
  height: 100px;
  background: rgba(0, 0, 0, .12);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.nav-btn span {
  color: white;
}

#prev-btn {
  background: rgba(0, 0, 0, .12);
  left: 0;
}

#next-btn {
  background: rgba(0, 0, 0, .12);
  position: absolute;
  right: 0;
  font-weight: lighter;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  cursor: default;
  z-index: 4;
  color: #888888c0;
  transition: transform 0.2s ease;
}

.close-btn svg {
  color: rgb(130, 119, 119);
  transition: transform 0.2s, color 0.2s;
}

.close-btn svg:hover {
  transform: scale(1.15);
  color: #333;
}

.share-btn-content {
  padding: 10px 5px 0;
}

.share-btn-gallery {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: none;
  border: none;
  cursor: default;
  transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn-gallery:hover {
  color: #333;
}

.share-btn-gallery svg {
  color: #858484c0;
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 1.625rem;
}

.share-btn-gallery svg:hover {
  transform: scale(1.15);
  color: #333;
}

.share-btn {
  width: 40px;
  height: 40px;
  text-align: center;
  background: none;
  border: none;
  cursor: default;
  transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn span {
  color: #827777;
  transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn span:hover {
  transform: scale(1.15);
  color: #333;
}

.share-btn-modal {
  position: absolute;
  top: 20px;
  right: 53px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: none;
  border: none;
  z-index: 4;
  transition: transform 0.2s ease, color 0.2s ease;
}

.share-btn-modal svg {
  transition: transform 0.2s ease, color 0.2s ease;
  color: #827777;
}

.share-btn-modal svg:hover {
  transform: scale(1.15);
  color: #333;
}


.nav-btn:focus {
  outline: none;
}


.nav-btn:active {
  background-color: transparent;
  transition: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 70px;
  padding-bottom: 10px;
}


.inst-you-link a {
  display: block;
  line-height: 0;
  align-content: center;
}

.bi-youtube {
  padding-top: 3px;
}

.container-link-policy {
  position: relative;
  display: flex;
  flex: 1;
  margin-left: 15px;
}

.link-policy {
  position: absolute;
  display: none;
  flex-direction: column;
  align-content: center;
  bottom: 120%;
  padding-bottom: 10px;
}

.link-policy span {
  white-space: nowrap;
  color: #959595;
  transition: color 0.2s;
  font-size: 14px;
}

.link-policy span:hover {
  color: #292929;
}

.link-policy a {
  padding-bottom: 5px;
}

.toggle-icon-document {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.icon-container {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.icon-container svg path {
  transition: fill 0.3s ease;
}

.icon-container:hover svg path {
  fill: #4A90E2;
}

.indent {
  margin: 10px 0 10px;
  text-align: center;
  font-size: 12px;
}

.indent span {
  color: #555555a9;
  padding-bottom: 20px;
}

.share-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  justify-content: center;
  align-items: center;
}

.share-modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 350px;
  position: relative;
}

.share-modal-content h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  cursor: default;
}

.url-block {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

#current-url {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.copy-icon-container {
  position: relative;
  margin-left: 10px;
  cursor: pointer;
}



.tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}



.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: #2D5F7A;
  font-size: 1.3rem;
  text-decoration: none;
}

.social-links a:hover {
  color: #6db179;
}


.button-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.action-btn {
  padding: 10px 20px;
  border: none;
  background-color: #2D5F7A;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}


.add-to-cart-btn.added {
  background-color: #399434d2;
}

.photo-options-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  justify-content: center;
  align-items: center;
  touch-action: manipulation;
}

.photo-options-content {
  background-color: white;
  width: 100%;
  height: 100%;
}

.close-photo-options-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 2.3rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
}

.close-photo-options-btn svg {
  color: #888;
  font-size: 1.75rem;
  transition: transform 0.2s, color 0.2s;
}

.close-photo-options-btn svg:hover {
  color: #333;
  transform: scale(1.15);
}

.thumbnail-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 100px;
}

.thumbnail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 70%;

}

@media (min-width: 700px) {
  .thumbnail-item {
    width: 40%;
  }
}

.thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;

}

.thumbnail-item-img {
  display: flex;
  object-fit: contain;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-shadow:
    5px 5px 15px rgba(0, 0, 0, 0.5),

    inset 5px 5px 15px rgba(0, 0, 0, 0.5);

  cursor: default;

}

.thumbnail-item-img img {
  cursor: default;
}

.thumbnail-overlay {
  cursor: default;
}

.thumbnail-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.thumbnail-options select {
  padding: 7px;
  border: 1px solid #e6e6e6;
  font-size: 15px;
  width: 100%;

  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.thumbnail-options select:hover {
  background-color: #f7f7f7;
}

#go-to-cart-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 90px;
  background-color: #2D5F7A;
  color: white;
  font-size: 1rem;
  padding: 8px 5px;
  border: none;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#go-to-cart-btn:hover {
  background-color: #1e5370;
}

.checkout-btn {
  margin-left: 10px;
  padding: 5px;
  background-color: #2D5F7A;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
  flex: 1;
}

#jammer-container {
  flex: 1;
}

.overlay-container {
  position: relative;
  display: inline-block;
}

.crop-frame {
  position: absolute;
  z-index: 3;
  box-shadow: 0 0 0 100vmax rgba(255, 0, 0, 0.5);
  box-sizing: border-box;
}


.crop-frame.canvas-frame {
  border-width: 1px;
}

.rotate-button {
  display: flex;
  text-align: center;
  justify-content: center;
  background: white;
  border: 1px solid #ccc;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.quantity-container-head {
  width: 100%;
  margin-top: 10px;
}

.quantity-container {
  display: inline-flex;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  margin: 0;
  align-items: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  height: 30px;
  text-align: center;
  vertical-align: middle;
}

.quantity-container input {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-top: none;
  border-bottom: none;
  background-color: #f0f0f0;
}

.quantity-container button {
  border: 0;
  background-color: white;
}

.quantity-container button:hover {
  background-color: #f7f7f7;
}

input[type="number"]:focus {
  outline-color: #228B22;
  outline-width: 2px;
  outline-style: solid;
  outline-offset: -2px;
}

#currency-select {
  border-radius: 0;
  border: 1px solid #e6e6e6;
  font-size: 1rem;
  color: #888;

  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#currency-select:hover {
  background-color: #eeecec;
  color: #333;
}

#currency-conversion {
  display: flex;
  cursor: default;
  margin-bottom: 5px;
  text-align: start;
  margin-top: 15px;
  margin-left: 15px;
  align-items: center;
}

select:focus {
  border-color: #e6e6e6;
  outline: none;
}

.delete-button {
  border: none;
  background-color: transparent;
  font-size: 0.84375rem;
}

.delete-button:hover {
  color: #8b2222;
}

.quantity-price-container {
  padding-bottom: 5px;
}

.price-display-head-line {
  font-size: 0.84375rem;
  text-align: center;
}

.price-display {
  cursor: default;
}

.checkout-totalprice {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-color: #2D5F7A;
  z-index: 10;
  border-top: 1px solid #8b8b8b99;
}

#total-price-container {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  flex: 1;
  color: white;
  cursor: default;
}

.Color-PhotoPaper-Container {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.Color-PhotoPaper-Container>div {
  flex: 1;
}

.PhotoPaper-Container {
  padding-right: 2px;
}

.Color-Container {
  padding-left: 2px;
}

.Size-Rotate-Container {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px;
}

.Size-Container {
  flex-grow: 10;
}

.rotate-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
  align-items: center;
  border: 1px solid #e6e6e6;
  margin-left: 4px;
  width: 50px;
}

.photoPaper-select,
.color-select,
.Material-select,
.size-select {
  border-radius: 0;
  font-size: 1rem;
  height: 40px;
}

.rotate-container[style*="none"] {
  display: none !important;
}

.Color-PhotoPaper-Container[style*="none"] {
  margin-top: 0;
}

.rotate-container span {
  transition: color 0.2s ease;
}

.rotate-container span:hover {
  color: #228B22;
}


.rotate-container button {
  border: none;
  background-color: transparent;
}

.rotate-button span {
  transition: transform 0.3s ease-in-out;
}

.quantity-Text-Price {
  justify-content: center;
}

.quantity-Text,
.Price-Text {
  font-size: 0.8125rem;
  cursor: default;
}

.Delete-Container {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: end;
}

.Material-select {
  margin-bottom: 5px;
}

.delivery-info {
  position: relative;
  display: flex;
  width: 100%;
  padding-left: 15px;
  padding-bottom: 7px;
  margin-top: 5px;
  padding-top: 7px;
}

.dropdown-button {
  background-color: transparent;
  border: none;
  color: #888;
  cursor: default;
  font-size: 1rem;
  text-align: start;
}

.dropdown-button:hover {
  color: #333;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-menu li {
  font-size: 0.9rem;
  color: #666;
  cursor: default;
  margin-left: 15px;
  margin-right: 10px;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.delivery-info.active .dropdown-menu {
  display: block;
  opacity: 1;
}

.dropdown-menu ul {
  list-style: disc;
  padding-bottom: 7px;
}

.dropdown-menu li p {
  font-size: 0.9rem;
  padding-bottom: 10px;
  padding-top: 5px;
  color: #666;
}




.info-Container {
  display: flex;
  position: absolute;
  top: 7px;
  left: -35px;
  cursor: default;
  font-size: 36px;
  cursor: default;
  transition: transform 0.3s ease;
}

.info-Container img {
  cursor: pointer;
}

.info-Text-Container {
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: rgb(245, 244, 244);
  transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.info-Text-Container p {
  margin: 0;
  padding: 5px;
  color: black;
  font-size: 14px;
  visibility: hidden;
  cursor: default;

}

.info-Text-Container.open {
  width: 105%;
  height: 85%;
}

.info-Text-Container.open p {
  visibility: visible;
}


.info-Container.open {
  transform: rotate(-45deg);
}

.info-Text-Container ul {
  list-style: disc;
  margin-left: 20px;
}

.info-Text-Container li {
  list-style-type: disc;
  color: #333;
  font-size: small;
  cursor: default;
}

@media (min-width: 700px) {
  .thumbnail-column {
    padding: 20px;
    padding-bottom: 200px;
  }

  .thumbnail-item {
    flex-direction: row;
    width: 90%;
    max-width: 800px;
    gap: 10%;
  }

  .thumbnail-options,
  .thumbnail-item-img {
    width: 50%;

  }

  .thumbnail-options {
    padding-top: 100px;
  }

  .thumbnail-column {
    justify-content: space-around;
  }

  .checkout-totalprice {
    left: unset;
  }

  #currency-conversion {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 15px;
  }

  .close-photo-options-btn {
    top: 20px;
    right: 30px;
  }

  .checkout-totalprice {
    width: 300px;
    right: 60px;
    bottom: 20px;
  }

  .info-Container {
    top: 107px;
    left: unset;
    right: -35px;
  }

  .info-Text-Container {
    top: unset;
  }

  .info-Text-Container.open {
    height: 65%;
  }

  #jammer-container {
    display: none;
  }

  .delivery-info {

    display: flex;
    justify-content: center;

  }


  .dropdown-button {
    display: flex;

    justify-content: flex-end;


  }

  .dropdown-menu {
    display: none;
    left: unset;
    width: 50%;

  }

  .delivery-info.active .dropdown-menu {
    width: 50%;

  }


}


@media (min-width: 768px) {
  .navbar {
    all: unset;
  }

  .menu-button {
    display: none;
  }

  .head-nav {
  display: flex;
}

  .has-submenu {
    margin-right: 15px;
}

  .navbar {
    display: grid;
    grid-template-areas:
      'logo drop-list';
    padding-top: 10px;
    padding-right: 80px;
    margin-left: 20px;
    align-items: center;
  }

  .drop-list li {
    border-block-end: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .drop-list li:hover {
    background-color: white;
  }

  .logo img {
    margin-left: 25px;
    transition: transform 0.3s ease;
  }

  .logo :hover {
    transform: scale(1.2);
  }

  .icon-caret {
    transform: unset;
    transition: unset;
    right: -20px;
  }

  .icon-caret.open {
    transform: rotate(180deg);
  }

  .submenu {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fcfbfb;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2),
      0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .submenu a {
    text-align: center;
  }

  .submenu li {
    margin: 0;
    transition: none;
  }

  .submenu li :hover {
    background-color: #f1f0f0d4;
  }

  #prev-btn {
    left: 60px;
  }

  #next-btn {
    right: 60px;
  }


  .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }


  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #6db17a;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
  }


  .nav-link:hover::after {
    width: 100%;
    left: 50%;
  }

  .vertical-nav {
    padding: 0 60px 30px;
  }

  .tall,
  .img-ratio-23-32-32 {
    all: unset;
  }

  .img-ratio-32x3,
  .img-ratio-32x2v1 {
    grid-template-columns: 1fr 1fr;
  }

  .img-ratio-23-32-32 {
    display: grid;
    grid-template-columns: 1fr 2.5fr 2.5fr;
    gap: 10px;
  }

  .button-container {
    bottom: 20px;
    right: 0;
    padding: 0 60px 0;
  }

  .scroll-to-top-btn {
    width: 100px;
    right: -110px;
    bottom: 70px;
  }

  .scroll-to-top-btn.visible {
    transform: translateX(-180px);
  }

  #go-to-cart-btn {
    left: unset;
    right: 70px;
    width: 100px;
  }

  .modal-content {
    padding: 5px 0 5px;
  }

  .head-nav {
    margin: 20px 60px 5px;
    padding-bottom: 10px;
  }

  .share-btn-gallery {
    margin-left: 47px;
  }

  .share-btn {
    top: 65px;
    right: 10px;
  }

}
@media (min-width: 932px) {
   .modal-content {
    padding: 75px 60px 75px;
  }
}

@media (min-width: 1024px) {

  .wide32x3,
  .wide32_23 {
    all: unset;
  }

  .img-ratio-32x3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .img-ratio-32_23 {
    grid-template-columns: 2.5fr 1fr 2.5fr 2.5fr;
  }

  #go-to-cart-btn {
    left: unset;
    right: 70px;
    width: 200px;
  }

}

@media (min-width: 1600px) {
  .share-btn {
    right: 60px;
  }

  .close-btn {
    right: 60px;
  }
}

.social-indent-container {
  margin-top: auto;
}