/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/sass/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
/* *****    CATEGORY WIDGET  ****** */
.category-widget-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .category-widget-list--stack-horizontal {
    padding-bottom: 24px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: unset;
    scroll-snap-type: y mandatory;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .category-widget-list--stack-horizontal .category-widget {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .category-widget-list--stack-vertical {
    flex-direction: column;
  }
  .category-widget-list--stack-vertical .category-widget {
    width: 100%;
    max-width: unset;
  }
  .category-widget-list--stack-vertical .category-widget__thumbnail {
    display: none;
  }
}

.category-widget {
  display: block;
  width: 100%;
  min-width: 120px;
  max-width: 180px;
  margin-inline: auto;
}
.category-widget .category-widget__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}
.category-widget .category-widget__thumbnail {
  min-height: 160px;
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 300ms;
}
.category-widget__content {
  width: 100%;
  padding: 16px;
  color: #000E3A;
  background: #F6F6F6;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}
.category-widget__description {
  text-align: center;
}
.category-widget:hover .product-widget__thumbnail {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}

/* *****    PRODUCT WIDGET  ****** */
.post-widget {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  margin-inline: auto;
  background: #F4F7FE;
  border-radius: 8px;
  border: 2px solid #E6E9F3;
}
.post-widget__container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.post-widget .post-widget__thumbnail {
  display: block;
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.post-widget__title {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  margin-bottom: 8px;
}
.post-widget__more {
  font-size: 0.875rem;
  color: #1170FF;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .post-widget {
    padding: 20px 40px;
  }
}

/* *****    PRODUCT WIDGET  ****** */
.products-widget-list {
  overflow: auto;
}
.products-widget-list__grid {
  width: 100%;
  padding-bottom: 32px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  box-sizing: border-box;
  scroll-snap-type: y mandatory;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
}
@media screen and (min-width: 500px) {
  .products-widget-list__grid {
    gap: 16px;
  }
}
.products-widget-list__grid::-webkit-scrollbar {
  height: 9px;
}
.products-widget-list__grid::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #E6E9F3;
}
.products-widget-list__grid::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #334EA1;
}
.products-widget-list__controls-container {
  width: 110%;
  margin-bottom: 32px;
  position: absolute;
  top: calc(50% - 32px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  transition: 300ms;
  z-index: 1;
}
.products-widget-list .product-widget {
  max-width: 185px;
  min-width: unset;
  scroll-snap-align: start;
}
@media screen and (min-width: 500px) {
  .products-widget-list .product-widget {
    max-width: 185px;
  }
}

.product-widget {
  display: block;
  width: 100%;
  min-width: 220px;
  max-width: 360px;
  margin-inline: auto;
  flex-shrink: 0;
}
.product-widget .product-widget__container {
  width: 100%;
  max-width: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.product-widget .product-widget__thumbnail {
  width: 100%;
  aspect-ratio: 2/3;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #E6E9F3;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 300ms;
}
.product-widget .product-widget__content {
  max-width: inherit;
  padding: 8px 4px;
  color: #454545;
  width: 100%;
}
.product-widget .product-widget__price {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.product-widget .product-widget__title {
  max-width: inherit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
}
.product-widget:hover .product-widget__thumbnail {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}

/* *****    SECTION PRODUCT WIDGET  ****** */
.section-products-widget__grid {
  display: grid;
  grid-auto-flow: row;
  width: 100%;
  gap: 1rem;
  grid-template-areas: "title" "products" "content" "button";
}
.section-products-widget__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  margin: 0;
  margin-bottom: 0.4em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  grid-area: title;
  align-self: flex-end;
}
.section-products-widget__content {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: content;
  align-self: flex-end;
}
.section-products-widget__button {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: button;
  align-self: flex-end;
}
.section-products-widget__products {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: products;
}
@media screen and (min-width: 768px) {
  .section-products-widget__grid {
    row-gap: 0;
    -moz-column-gap: 80px;
         column-gap: 80px;
    grid-template-columns: 3fr 4fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title products" "content products" "button products";
  }
  .section-products-widget__title {
    text-align: left;
  }
  .section-products-widget__button {
    margin-bottom: 50px;
  }
  .section-products-widget__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .section-products-widget__content {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .section-products-widget__button {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .section-products-widget__products {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 768px) {
  .section-products-widget--right .section-products-widget__grid {
    grid-template-columns: 4fr 3fr;
    grid-template-areas: "products title" "products content" "products button";
  }
  .section-products-widget--right .section-products-widget__grid > .section-products-widget__title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .section-products-widget--right .section-products-widget__grid > .section-products-widget__content {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .section-products-widget--right .section-products-widget__grid > .section-products-widget__button {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .section-products-widget--right .section-products-widget__grid > .section-products-widget__products {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
}

/* *****    READ MORE WIDGET  ****** */
.read-more-widget {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.read-more-widget__content {
  max-height: 260px;
  max-width: 65ch;
  margin-inline: auto;
  overflow: hidden;
}
.read-more-widget button.read-more-widget__button {
  margin-inline: auto;
  display: block;
  color: #1170FF;
  border: unset;
  text-decoration: underline;
  font-weight: 500;
}
.read-more-widget button.read-more-widget__button:is(:hover, :focus) {
  background: unset;
}
.read-more-widget button.read-more-widget__button--close {
  display: none;
}
.read-more-widget.open .read-more-widget__content {
  max-height: unset;
}
.read-more-widget.open .read-more-widget__button--close {
  display: block;
}
.read-more-widget.open .read-more-widget__button--open {
  display: none;
}

/* *****    ERROR MESSAGE  ****** */
.wdp-error-message {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  display: block;
  width: 100%;
  padding: 1.2rem 2rem;
  margin-block: 0.5rem;
  background-color: #fff5f5;
  border: 2px solid #f33;
  border-radius: 0.5rem;
}
.wdp-error-message__title {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.wdp-error-message__content {
  color: #5a5a5a;
  margin: 0;
}

/*# sourceMappingURL=index.css.map*/