:root {
  --color-primary: #3f6bb4;
  --color-accent-cyan: #ace1fa;
  --color-accent-yellow: #f6eb14;
  --color-background-black: #262626;
  --color-background-grey: #eee;
  --color-lightest: #fff;
  --color-lighter: #fefefe;
  --color-light: #fdfdfd;
  --navbar-height: 60px;
  --sidebar-width: 80%;
  --max-width: 1200px;
  --footer-height: 190px;
}

/* ELEMENTS */
.pmp-button {
  display: inline-block;
  padding: 10px;
  color: var(--color-dark);
  border: solid 1px var(--color-accent-cyan);
  background-color: var(--color-light);
  min-width: 120px;
  cursor: pointer;
  margin: 10px;
  font-weight: bold;
  text-align: center;
}
.pmp-button:hover {
  background-color: var(--color-primary);
}
.pmp-table {
  font-size: 1.5rem;
  width: 100%;
}
.pmp-table tr {
  line-height: 40px;
}
.pmp-table th {
  background-color: #e4d4a9;
}
.pmp-table th a {
  text-decoration: none;
  color: var(--color-darkest);
}
.pmp-table th a:hover {
  text-decoration: none;
  color: var(--color-accent);
}
.pmp-table tr:nth-child(even) {
  background-color: #f6f1e3;
}
.pmp-table td {
  text-align: center;
  padding: 5px;
}
.pmp-table-button {
  display: inline-block;
  min-width: 100px;
  padding: 5px;
  line-height: 2rem;
  background-color: var(--color-accent);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-lightest);
}
.pmp-table-button:hover {
  background-color: var(--color-accent-hover);
  text-decoration: none;
  color: var(--oclor-lightest);
}
/* END ELEMENTS */
/* Shard */
.shard-section {
  padding: 0 10px;
}
/* NAVBAR */

.pmp-navbar {
  width: 100%;
  background-color: var(--color-primary);
  height: var(--navbar-height);
  color: var(--color-lightest);
  padding: 10px;
  overflow: hidden;
}
.pmp-navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.pmp-navbar.bordered {
  border-bottom: solid 1px var(--color-accent-yellow);
}

.pmp-navbar-limiter {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  height: calc(var(--navbar-height) - 20px);
}
.pmp-navbar-trigger {
  display: none;
}
.pmp-navbar-header {
  flex-grow: 1;
}
.pmp-navbar-header img {
  height: calc(var(--navbar-height) - 20px);
}
.pmp-navbar-button-group {
  display: flex;
  list-style: none;
  align-content: center;
  flex-grow: 7;
}
.pmp-navbar-button {
  display: block;
  padding: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: gs-bold;
  align-self: center;
}
.pmp-navbar-button:hover {
  background-color: var(--color-accent-yellow);
  color: var(--color-primary);
}

.pmp-navbar-link {
  text-decoration: none;
  color: var(--color-lightest);
  padding: 0;
}
.pmp-navbar-link.desktop-only {
  display: block;
}
.pmp-navbar-link.mobile-only {
  display: none;
}

/* END NAVBAR */

/* FOOTER */
.pmp-footer-wrapper {
  background-color: var(--color-grey);
  background-size: cover;
  max-height: var(--footer-height);
  box-shadow: 0px -5px 15px #888;
  color: #444;
  margin-top: 20px;
}
.pmp-footer-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
  width: var(--max-width);
  padding: 20px;
}
.footer-info {
  display: flex;
  justify-content: space-between;
  width: 50%;
  padding-bottom: 20px;
}
.footer-text {
  color: var(--color-background-black);
}
.footer-text p {
  line-height: 1.6;
  font-size: 1.4rem;
}
.footer-text i {
  font-size: 1.7rem;
  margin-right: 5px;
}
.footer-text-title {
  font-weight: bold;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  color: var(--color-accent-yellow);
  background-color: var(--color-primary);
  width: 100%;
}

.pmp-footer-group.wide {
  grid-column-start: span 2;
}
.pmp-footer-group.center {
  text-align: center;
}

.pmp-footer-logo {
  width: 100%;
  max-width: 250px;
}
/* END FOOTER */

/* HOME SECTION */
.mobile {
  background-color: #252525 !important;
}
.home-showcase {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width);
  text-align: center;
}
.showcase-left-container {
  width: 60%;
}
.showcase-info-text {
  padding: 10px 0;
  font-size: 1.7rem;
  line-height: 1.6;
}
.homepage {
  padding: unset !important;
}

.showcase-img {
  max-width: 400px;
}
.pmp-breadcrumb-container {
  display: flex;
  flex-direction: row;
  width: max-content;
  padding: 10px;
  white-space: nowrap;
  background: var(--color-accent-yellow);
  align-items: center;
  align-content: center;
  font-size: 1.5rem;
  margin-top: 20px;
}

.pmp-breadcrumb-container span {
  margin-right: 5px;
}

.pmp-breadcrumb-link {
  text-decoration: none;
  vertical-align: middle;
  color: #444;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: bold;
}

.pmp-breadcrumb-link:hover {
  text-decoration: underline;
}

.pmp-page {
  min-height: calc(100vh - var(--footer-height));
  padding-bottom: 0;
  padding-top: calc(var(--navbar-height));
}

.pmp-banner-image {
  position: relative;
  max-height: 630px;
  height: 630px;
  max-width: var(--max-width);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../image/banner-1.jpg");
  display: flex;
  padding-bottom: 25px;
}

.pmp-banner-text-container {
  align-self: flex-end;
  padding: 30px;
  max-width: 40%;
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px;
  margin-left: 120px;
  border: solid 5px #3f6bb4;
}
.pmp-banner-text-container h1 {
  font-size: 3rem;
  color: var(--color-lightest);
  font-family: gs-thick;
}

.pmp-banner-text-button {
  background-color: var(--color-primary);
  font-family: gs-bold;
  display: inline-block;
  padding: 10px 20px;
  margin: 30px 0px 0 200px;
  border-radius: 20px;
  color: var(--color-light);
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  transition: all 0.375s ease;
}
.pmp-banner-text-button:hover {
  background-color: var(--color-company);
  color: var(--color-lightest);
}

.carousel {
  overflow: hidden;
  max-width: var(--max-width);
  position: relative;
}

.carousel .carousel-item,
.carousel .carousel-item-hidden {
  display: none;
}

.carousel .carousel-item.show {
  display: block;
  /* transform: translateX(-100%); */
  /* animation: slide-in 0.5s forwards; */
  /* animation: fadeVisibility 1s; */
}

.slide-in {
  animation: slide-in 0.5s forwards;
}

.slide-out {
  animation: slide-out 0.5s forwards;
}

.carousel .carousel-actions {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* .carousel:hover .arrow {
  border: solid var(--color-primary);
  border-width: 0 6px 6px 0;
} */

.arrow {
  border: solid var(--color-primary);
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 20px;
  margin: 20px;
  cursor: pointer;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-background-grey);
  padding: 70px 0;
}

.full {
  width: 100%;
  max-width: unset;
  padding: unset;
}

.main-home-text {
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
  font-family: gs;
  margin-top: 20px;
}
.hero-section i {
  margin-right: 10px;
  transform: rotate(90deg);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.filter-grid a {
  text-decoration: none;
}

.paralellogram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 80px;
  transform: skew(-20deg);
  /* background: var(--color-primary); */
  cursor: pointer;
  color: var(--color-accent-yellow);
  margin: 20px 0 50px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.first-container {
  background: #365d9c;
}
.second-container {
  background: var(--color-primary);
}
.third-container {
  background: #4474c2;
}

.paralellogram-container:hover {
  background: var(--color-accent-yellow);
  color: var(--color-primary);
}

.paralellogram-text {
  font-size: 16px;
  font-family: gs-bold;
  transform: skew(20deg);
}

.brand-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-lightest);
  padding: 20px 0;
}

.brand-section h1 {
  font-size: 24px;
  padding: 20px 0;
  font-family: gs-bold;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  gap: 20px;
  padding: 20px 0;
}

.brand-logo-container {
  max-width: 300px;
  max-height: 250px;
  position: relative;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
}
/* END HOME SECTION */
.about-container {
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.5;
}
/* FILTER SECTION */
.filter-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-lightest);
  padding-bottom: 20px;
}

.filter-item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  gap: 20px;
  padding: 20px 0;
}

.filter-section h1 {
  font-size: 24px;
  padding: 20px 0;
  font-family: gs-bold;
}

.filter-logo-container {
  max-width: 300px;
  max-height: 250px;
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.filter-logo-container:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.filter-logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.filter-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
  padding: 15px 15px;
}

.filter-name {
  background: rgba(26, 26, 26, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--color-light);
  font-weight: bold;
  width: 100%;
  padding: 20px 10px;
  z-index: 3;
}
.not-available {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.not-available i {
  font-size: 7rem;
  margin-bottom: 25px;
}
/* END FILTER SECTION */

/* CATALOGUE SECTION */
.pmp-catalogue-page {
  min-height: calc(100vh - var(--navbar-height) - var(--footer-height));
}
.pmp-catalogue-intro {
  padding: 30px 10px 10px;
}
.pmp-catalogue-intro h1 {
  font-size: 3rem;
  margin: 0 0 10px;
}
.pmp-catalogue-intro p {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
.pmp-catalogue {
  display: flex;
}
.pmp-catalogue-sidebar-wrapper {
  flex-grow: 1;
  padding: 10px;
  border-right: solid 1px #ccc;
  width: 190px;
}
.pmp-catalogue-sidebar-title {
  font-size: 2rem;
  padding: 10px;
  font-family: gs-bold;
  border-bottom: solid 1px #ccc;
}
.pmp-catalogue-sidebar-button {
  display: block;
  text-decoration: none;
  color: var(--color-darkest);
  padding: 10px;
  padding-left: 0;
  font-size: 1.5rem;
  cursor: pointer;
  font-size: gs-bold;
}
.pmp-catalogue-sidebar-button.active {
  font-weight: bold;
  color: var(--color-primary);
}
.pmp-catalogue-sidebar-button:hover {
  font-weight: bold;
}
.pmp-catalogue-body {
  flex-grow: 11;
  display: block;
}
.pmp-catalogue-searchbar {
  padding: 10px;
  display: flex;
}
.pmp-catalogue-searchbar input {
  flex-grow: 5;
  font-size: 2rem;
  margin: 10px 0;
  padding: 5px;
  width: 100%;
  font-family: gs-lite;
  margin-right: 10px;
  border: solid 1px var(--color-accent-cyan);
}
.pmp-button.filter {
  display: none;
}
.pmp-catalogue-search-button:hover {
  background-color: var(--color-primary-hover);
}
.pmp-catalogue-product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  padding: 10px;
}
.pmp-catalogue-item {
  display: block;
  position: relative;
  background-color: #fff;
  padding-bottom: 100%;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: none;
  opacity: 1;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pmp-catalogue-item:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.pmp-catalogue-item.filtered {
  opacity: 0;
}
.pmp-catalogue-item.hidden {
  display: none;
}
.pmp-catalogue-item span {
  display: flex;
  position: absolute;
  align-items: center;
  min-height: 30px;
  width: 100%;
  padding: 5px;
  bottom: 0;
  left: 0;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.pmp-catalogue-item:hover span {
  font-weight: bold;
}
.pmp-item-tag-container {
  position: absolute;
  left: 5px;
  top: 5px;
}
.pmp-item-tag {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  margin-right: 2px;
}
.pmp-item-tag.sale {
  background-color: #ff4444;
  color: #fff;
}
.pmp-item-tag.oos {
  background-color: #aaa;
  color: #fff;
}
.checkbox-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.checkbox-effect:not(:checked),
.checkbox-effect:checked {
  position: absolute;
  left: -9999px;
}
.checkbox-block label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 5px;
  overflow-wrap: break-word;
}
.checkbox-block label:hover {
  font-weight: bold;
}
.checkbox-style:not(:checked) + label:before,
.checkbox-style:checked + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #5a5a5a;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 20px;
  min-width: 16px;
}
.checkbox-style:not(:checked) + label:after,
.checkbox-style:checked + label:after {
  content: "✓";
  font-size: 11px;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  top: 0;
  left: 4px;
  color: var(--color-accent-yellow);
  transform-origin: center center;
}
.checkbox-style:not(:checked) + label:after {
  transform: scale(0);
}
.checkbox-style:checked + label:before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.checkbox-style:checked + label:after {
  transform: scale(1);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
/* END CATALOGUE SECTION */

/* START PRODUCT */
.pmp-product-breadcrumb {
  padding: 30px 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
.pmp-product-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  padding: 0 0 20px;
}
.pmp-product-photo-section {
  display: grid;
  grid-template-columns: 1fr 6fr;
  grid-gap: 10px;
}
.pmp-product-thumbnail-container {
  display: flex;
  flex-direction: column;
}
.pmp-product-thumbnail {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: calc(100% - 3px);
  background-color: #fff;
  margin-bottom: 5px;
  border: solid 3px #aaa;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pmp-product-thumbnail:hover,
.pmp-product-thumbnail.active {
  border: solid 3px #ffa500;
}
.pmp-product-photo-preview {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  background-color: #fff;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.375s ease;
  overflow: hidden;
  border: solid 1px var(--color-company);
}
.pmp-product-photo-preview:hover {
  cursor: zoom-in;
}
.pmp-product-info-section {
  padding: 0 10px;
}
.pmp-product-info-section h1 {
  font-size: 3rem;
  padding: 0 0 10px;
  border-bottom: solid 1px #aaa;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.pmp-product-info-section h3 {
  font-size: 2rem;
  margin-top: 10px;
}
.pmp-product-info-section h3 span {
  display: inline-block;
  width: 20%;
}
.pmp-product-info-section p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0 0 10px;
}
.pmp-discount-label {
  font-size: 1.3rem;
  color: #ff4444;
}
.pmp-discount-label + p {
  font-size: 2.2rem;
  font-family: gs-bold;
  color: #2a904c;
}

.pmp-product-form {
  display: grid;
  grid-template-columns: 3fr 2fr;
}
.pmp-product-input-group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  margin: 0 0 10px;
  font-size: 1.5rem;
  align-items: flex-start;
}
.pmp-empty-description {
  color: #aaa;
}
.pmp-product-form-input {
  padding: 5px;
  color: var(--color-darkest);
  border: solid 1px var(--color-accent);
  display: inline-block;
}
.pmp-product-form-input.qty-input {
  width: 80px;
}
.pmp-add-to-cart-btn {
  margin: 10px 0;
  padding: 10px;
  border: none;
  color: #fff;
  background-color: var(--color-primary);
  border: solid 1px var(--color-primary);
  display: inline-block;
  cursor: pointer;
  min-width: 150px;
}
.pmp-add-to-cart-btn:hover {
  background-color: var(--color-primary-hover);
  border: solid 1px var(--color-primary-hover);
}
.pmp-related-product-title {
  font-size: 2rem;
  font-family: gs-bold;
  border-top: solid 1px #aaa;
  margin: 10px 0;
  padding: 5px 0 5px;
}
.pmp-related-product-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 10px;
}
.pmp-related-product-item {
  display: block;
  position: relative;
  background-color: #fff;
  padding-bottom: 100%;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 1px var(--color-company);
}
.pmp-related-product-item span {
  display: block;
  position: absolute;
  width: 100%;
  padding: 10px;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  min-height: 50px;
}
.pmp-related-product-item:hover span {
  font-weight: bold;
}
.pmp-stock-table {
  max-width: 100vw;
  overflow: auto;
}
.pmp-stock-table .pmp-table {
  min-width: auto;
}
.pmp-variant-container {
  display: flex;
}
.pmp-variant-item {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 5px;
}
.pmp-variant-item:hover {
  border: solid 2px var(--color-company);
}
.pmp-variant-item.selected {
  border: solid 2px var(--color-company);
}
/* END PRODUCT */

/* START SEARCH */
.pmp-search-form h1 {
  padding: 10px;
  font-size: 3rem;
}
.pmp-search-form h3 {
  padding: 10px;
  font-size: 2rem;
}
.pmp-search-result-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.pmp-search-result-empty {
  grid-column-start: span 5;
  background-color: #ccc;
  padding: 20px;
  text-align: center;
  color: #777;
  font-size: 2rem;
}
/* END SEARCH */

/* START CONTACT */
.contact-us {
  margin-top: 20px;
}
.pmp-contact-logo img {
  width: 100%;
  max-width: 170px;
  margin: 0 0 20px;
}
.pmp-contact-info {
  line-height: 2rem;
}
/* END CONTACT */

@keyframes fadeVisibility {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: opacity linear;
  }
}

@keyframes slide-in {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media screen and (max-width: 425px) {
  .shard-section {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile {
    min-height: unset;
    margin-top: calc(var(--navbar-height));
  }
  .home-search-mobile {
    margin-top: 10px !important;
  }
  .showcase-left-container {
    width: 90%;
  }
  .shard-grid-content {
    text-align: center;
  }
  .pmp-footer-container {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 0 10px 0;
  }
  .footer-text-title {
    display: none;
  }
  .pmp-footer-logo {
    max-width: 200px;
  }
  .brand-section {
    padding: 0px 20px 20px 20px;
  }
  .pmp-navbar-limiter {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    height: calc(var(--navbar-height) - 20px);
  }
  .pmp-navbar-trigger {
    display: block;
    width: calc(var(--navbar-height) - 20px);
    height: calc(var(--navbar-height) - 20px);
  }
  .pmp-burger {
    display: block;
    position: relative;
    width: calc(var(--navbar-height) - 20px);
    height: calc((var(--navbar-height) - 20px) / 5);
    background-color: var(--color-navbar-burger);
    transition: all 0.375s ease;
    opacity: 1;
    transform: rotateZ(0deg);
    transform-origin: top left;
  }
  .pmp-burger:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: calc((var(--navbar-height) - 20px) / 5 * 2);
    width: calc(var(--navbar-height) - 20px);
    height: calc((var(--navbar-height) - 20px) / 5);
    background-color: var(--color-navbar-burger);
    transition: all 0.375s ease;
    opacity: 1;
    transform: rotateZ(0deg);
    transform-origin: center;
  }
  .pmp-burger:after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: calc((var(--navbar-height) - 20px) / 5 * 4);
    width: calc(var(--navbar-height) - 20px);
    height: calc((var(--navbar-height) - 20px) / 5);
    background-color: var(--color-navbar-burger);
    transition: all 0.375s ease;
    opacity: 1;
    transform: rotateZ(0deg);
    transform-origin: center;
  }
  .back .pmp-burger {
    background-color: var(--color-accent-yellow);
    transform: rotateZ(45deg) translate3d(20%, -45%, 0);
  }
  .back .pmp-burger:before {
    background-color: var(--color-accent-yellow);
    opacity: 0;
  }
  .back .pmp-burger:after {
    background-color: var(--color-accent-yellow);
    transform: rotateZ(-90deg) translateX(80%);
  }
  .pmp-navbar-header {
    flex-grow: 1;
    text-align: right;
    margin-left: 10px;
  }
  .pmp-navbar-header img {
    height: calc(var(--navbar-height) - 20px);
  }
  .pmp-navbar-button-group {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    display: flex;
    background-color: var(--color-background-black);
    width: var(--sidebar-width);
    height: calc(100% - var(--navbar-height));
    flex-direction: column;
    list-style: none;
    align-content: center;
    transition: all 0.375s ease;
    transform: translate3d(-100%, 0, 0);
    z-index: 200;
  }
  .pmp-navbar-button-group.expanded {
    transform: translate3d(0, 0, 0);
  }
  .pmp-navbar-button {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: gs;
    align-self: center;
    border-bottom: solid 1px var(--color-navbar-border);
  }
  .pmp-navbar-button:hover {
    background-color: var(--color-navbar-button-hover);
  }

  .pmp-banner-image {
    background-position: 65% center;
    height: unset;
    margin-bottom: 20px;
  }
  .pmp-banner-text-container {
    width: 90%;
    max-width: 90%;
    text-align: center;
    padding: 15px;
    margin: 30px;
    border: none;
  }

  .pmp-banner-text-button {
    padding: 10px 20px;
    margin: 20px 0px 0px;
    border-radius: 20px;
  }
  .arrow {
    padding: 15px;
    border: solid var(--color-primary);
    border-width: 0 6px 6px 0;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .paralellogram-container {
    width: 110px;
  }

  .carousel .carousel-actions {
    top: 25%;
    transform: translateY(-25%);
  }

  .pmp-breadcrumb-container {
    display: none;
  }
  .filter-item-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .filter-logo-container {
    min-height: 182px;
    max-height: 182px;
  }
  .pmp-product-photo-section {
    grid-template-columns: 1fr;
    padding: 0 10px;
    max-width: 100vw;
  }
  .pmp-product-thumbnail-container {
    flex-direction: row;
    white-space: nowrap;
  }
  .pmp-product-breadcrumb {
    padding: 10px 10px;
  }
  .pmp-product-thumbnail {
    width: 80px;
    height: 80px;
    padding: 0;
    margin-bottom: 0;
  }
  .pmp-product-container {
    grid-template-columns: 1fr;
  }
  .pmp-product-form {
    grid-template-columns: 1fr;
  }
  .pmp-add-to-cart-btn {
    width: 100%;
  }

  .pmp-stock-table {
    max-width: 100vw;
    overflow: auto;
  }
  .pmp-stock-table .pmp-table {
    min-width: auto;
  }

  .pmp-related-product-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10px 10px;
  }
  .pmp-related-product-title {
    margin: 10px;
  }
  /* width */
  ::-webkit-scrollbar:horizontal {
    height: 5px;
  }
}

@media screen and (max-width: 640px) {
  .pmp-catalogue-product-container {
    grid-template-columns: 1fr 1fr;
  }
  .pmp-footer-container {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 0 10px 0;
  }
  .footer-text-title {
    display: none;
  }
  .pmp-footer-logo {
    max-width: 200px;
  }
  .pmp-catalogue-intro {
    text-align: center;
    padding: 10px 10px 0;
  }
  .pmp-catalogue {
    display: block;
  }
  .pmp-catalogue-product-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pmp-catalogue-searchbar {
    display: grid;
    padding: 0 10px;
    grid-template-columns: 1fr 3fr 1fr;
    grid-gap: 10px;
  }
  .pmp-catalogue-searchbar.result {
    grid-template-columns: 4fr 1fr;
  }
  .pmp-catalogue-searchbar.fixed {
    position: fixed;
    top: calc(var(--navbar-height) + 10px);
    left: 0;
    background-color: var(--color-primary);
    padding: 10px;
    margin-top: -10px;
    z-index: 200;
  }
  .pmp-catalogue-searchbar input {
    margin: 0;
  }
  .pmp-button.filter {
    min-width: 70px;
    margin: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .pmp-button.search {
    min-width: 70px;
    margin: 0;
  }
  .pmp-catalogue-back-button {
    background-image: url(../image/back.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    display: block;
    float: right;
  }
  .pmp-catalogue-sidebar-wrapper {
    position: fixed;
    width: 80vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 200;
    background-color: #fbfbfb;
    overflow: auto;
    transition: all 0.375s ease;
    transform: translate3d(-100%, 0, 0);
  }
  .pmp-catalogue-sidebar-wrapper.expanded {
    transform: translate3d(0, 0, 0);
  }

  .pmp-product-container {
    grid-template-columns: 1fr;
  }
  .pmp-related-product-container {
    grid-template-columns: repeat(7, 150px);
    overflow-x: auto;
  }

  .pmp-checkout-container {
    grid-template-columns: 1fr;
  }
  .pmp-checkout-title {
    grid-column-start: 1;
  }
  .pmp-searchbar-container {
    background-color: var(--color-primary);
    padding: 10px;
    margin-top: -5px;
  }
}

@media (max-width: 1024px) {
}
