/* [project]/styles/globals.scss.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-family: Open Sans;
  font-size: 10px;
}

body {
  color: #3c3738;
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: Open Sans;
  font-size: 1.6rem;
  line-height: normal;
  position: relative;
}

footer {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, strong, b {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.4rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 4.2rem;
  }
}

h2 {
  font-size: 2.2rem;
}

@media (min-width: 992px) {
  h2 {
    font-size: 2.6rem;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 2rem;
}

@media (min-width: 1200px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 1.8rem;
}

@media (min-width: 1200px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1.7rem;
}

@media (min-width: 1200px) {
  h5 {
    font-size: 1.8rem;
  }
}

h6 {
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  display: block;
}

p {
  font-size: 1.4rem;
  line-height: normal;
}

a {
  text-decoration: none;
}

.heading {
  margin-bottom: 18px;
}

@media (min-width: 1200px) {
  .heading {
    margin-bottom: 24px;
  }
}

.heading .title {
  font-size: 2.6rem;
}

@media (min-width: 1200px) {
  .heading .title {
    font-size: 4.2rem;
  }
}

.heading .description {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .heading .description {
    margin-top: 24px;
    font-size: 1.8rem;
  }
}

input, select, textarea, button {
  font-family: Open Sans;
}

.imgPlaceholder {
  display: block;
  position: relative;
}

.imgPlaceholder:after {
  content: "";
  background-color: #0000;
  padding-top: 100%;
  display: block;
}

.imgPlaceholder img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.sectionTitle {
  letter-spacing: -.48px;
  text-align: center;
  color: #3c3738;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 800;
}

@media (min-width: 992px) {
  .sectionTitle {
    letter-spacing: -.56px;
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .sectionTitle {
    letter-spacing: -.64px;
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}

.sectionDesc {
  letter-spacing: -.48px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

@media (min-width: 1200px) {
  .sectionDesc {
    font-size: 2.2rem;
  }
}

.top {
  z-index: 2;
  background-color: #f7f7f5;
  height: 116px;
  position: relative;
}

@media (min-width: 992px) {
  .top {
    height: 201px;
  }
}

.top.index {
  height: 0;
}

.top.top-smaller {
  height: 75px;
}

@media (min-width: 992px) {
  .top.top-smaller {
    height: 170px;
  }
}

@media (min-width: 1200px) {
  .top.top-smaller {
    height: 170px;
  }
}

@media (min-width: 992px) {
  .top.checkout {
    height: 103px;
  }
}

@media (min-width: 1200px) {
  .top.checkout {
    height: 103px;
  }
}

.pageTitle {
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .pageTitle {
    margin-bottom: 16px;
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .pageTitle {
    font-size: 3.6rem;
  }
}

.pageDescription {
  margin-inline: auto;
  color: #3c3738;
  max-width: 740px;
  margin-bottom: 40px;
  font-family: Open Sans;
  font-size: 13px;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .pageDescription {
    font-size: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .pageDescription {
    margin-bottom: 60px;
    font-size: 2.2rem;
  }
}

.errorMessage {
  text-align: right;
  color: red;
  align-items: center;
  padding-top: 3px;
  font-family: Open Sans;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
}

.errorMessage span {
  margin-right: 5px;
}

.errorField {
  border-color: #ed1c24;
}

input:focus {
  outline: none;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
}

:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light only;
}

.dots {
  width: auto !important;
  bottom: 48px !important;
  left: 16px !important;
}

@media (min-width: 1500px) {
  .dots {
    left: calc(50dvw - 752px) !important;
  }
}

.dots .dot {
  box-shadow: none;
  cursor: pointer;
  background-color: #ffffff4d;
  border: none;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-inline: 3px;
  padding: 0;
}

.dots .dot.active {
  cursor: default;
  background-color: #fff;
}

#storybook-root {
  width: 100%;
}

.padding-0 {
  padding: 0 !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.text-dark {
  color: #000;
}

.toaster {
  border: 1px solid #000;
  background-color: #fff !important;
  border-radius: 0 !important;
  max-width: 330px !important;
}

@media (min-width: 768px) {
  .toaster {
    max-width: unset !important;
  }
}

.toaster > div {
  width: 300px !important;
}

@media (min-width: 768px) {
  .toaster > div {
    width: unset !important;
  }
}

.markerLabel {
  text-anchor: middle;
  text-align: center;
  background-color: #fbdddd;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-top: -2px;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
}

.markerLabel.active {
  background-color: #f08080;
}

.cartMain + footer {
  padding-bottom: 220px;
}

@media (min-width: 1200px) {
  .cartMain + footer {
    padding-bottom: 0;
  }
}

.sku {
  color: #3c373899;
  margin-top: 10px;
  font-family: Open Sans;
}

.grayed {
  color: #bfbfbf;
}

.apiErrorMessage {
  text-align: center;
  color: #eb423f;
}

.react-datepicker__tab-loop .react-datepicker-popper.withTime .react-datepicker .react-datepicker__navigation--next {
  right: 6.5em !important;
}

.react-datepicker {
  align-items: flex-start;
  display: flex !important;
}

.react-datepicker__navigation {
  border: .45em solid #0000 !important;
  line-height: 1.7rem !important;
  top: 1em !important;
}

.react-datepicker__navigation--next {
  right: 0 !important;
}

/* [project]/src/components/common/form-elements/button/button.module.scss.module.css [app-client] (css) */
.button-module-scss-module__ue55bW__button {
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.5rem;
  transition: opacity .2s linear;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button-module-scss-module__ue55bW__button:after {
  content: "";
  z-index: 1;
  background-color: red;
  width: 110%;
  height: 2px;
  display: none;
  position: absolute;
  top: 47%;
  left: -5%;
  transform: rotateZ(15deg);
}

.button-module-scss-module__ue55bW__button:before {
  content: "";
  z-index: 1;
  background-color: red;
  width: 110%;
  height: 2px;
  display: none;
  position: absolute;
  top: 47%;
  left: -5%;
  transform: rotateZ(-15deg);
}

.button-module-scss-module__ue55bW__button:disabled {
  cursor: initial;
  opacity: .5;
}

.button-module-scss-module__ue55bW__button:disabled:hover {
  opacity: .5;
  border-width: 1px !important;
}

.button-module-scss-module__ue55bW__button .button-module-scss-module__ue55bW__loader {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  min-height: 10px !important;
}

@media (min-width: 992px) {
  .button-module-scss-module__ue55bW__button .button-module-scss-module__ue55bW__loader {
    min-height: 10px !important;
  }
}

.button-module-scss-module__ue55bW__button .button-module-scss-module__ue55bW__loader > div {
  border-width: 10px;
  width: 40px;
  height: 40px;
}

.button-module-scss-module__ue55bW__primary {
  color: #fff;
  background-color: #3c3738;
  border: 1px solid #3c3738;
}

.button-module-scss-module__ue55bW__primary.button-module-scss-module__ue55bW__outline {
  color: #3c3738;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__primary.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid #3c3738;
}

.button-module-scss-module__ue55bW__secondary {
  color: #fff;
  background-color: #ac9131;
  border: 1px solid #ac9131;
}

.button-module-scss-module__ue55bW__secondary.button-module-scss-module__ue55bW__outline {
  color: #ac9131;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__secondary.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid #ac9131;
}

.button-module-scss-module__ue55bW__success {
  color: #fff;
  background-color: green;
  border: 1px solid green;
}

.button-module-scss-module__ue55bW__success.button-module-scss-module__ue55bW__outline {
  color: green;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__success.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid green;
}

.button-module-scss-module__ue55bW__danger {
  color: #fff;
  background-color: red;
  border: 1px solid red;
}

.button-module-scss-module__ue55bW__danger:before, .button-module-scss-module__ue55bW__danger:after {
  background-color: #ff0;
}

.button-module-scss-module__ue55bW__danger.button-module-scss-module__ue55bW__outline {
  color: red;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__danger.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid red;
}

.button-module-scss-module__ue55bW__warning {
  color: #000;
  background-color: #ff0;
  border: 1px solid #ff0;
}

.button-module-scss-module__ue55bW__warning.button-module-scss-module__ue55bW__outline {
  color: #000;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__warning.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid #ff0;
}

.button-module-scss-module__ue55bW__info {
  color: #000;
  background-color: #7fffd4;
  border: 1px solid #7fffd4;
}

.button-module-scss-module__ue55bW__info.button-module-scss-module__ue55bW__outline {
  color: #7fffd4;
  background-color: #fff;
}

.button-module-scss-module__ue55bW__info.button-module-scss-module__ue55bW__outline:hover {
  border: 2px solid #7fffd4;
}

.button-module-scss-module__ue55bW__light {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

.button-module-scss-module__ue55bW__dark {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}

.button-module-scss-module__ue55bW__black {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}

.button-module-scss-module__ue55bW__transparent {
  background-color: #0000;
  border: none;
}

/* [project]/src/components/common/general/loader/loader.module.scss.module.css [app-client] (css) */
.loader-module-scss-module__EpEwTq__spinnerWrapper {
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  display: flex;
  box-shadow: 0 0 13px #dbdbdb;
}

.loader-module-scss-module__EpEwTq__spinnerWrapper h5 {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .loader-module-scss-module__EpEwTq__spinnerWrapper {
    min-height: 90vh;
  }
}

.loader-module-scss-module__EpEwTq__spinnerWrapper .loader-module-scss-module__EpEwTq__text {
  margin-top: 20px;
}

.loader-module-scss-module__EpEwTq__spinner {
  border: 10px solid #ccc;
  border-top-color: #fa1e43;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  animation: 1s linear infinite loader-module-scss-module__EpEwTq__spinning;
}

@media (min-width: 992px) {
  .loader-module-scss-module__EpEwTq__spinner {
    border: 13px solid #ccc;
    border-top-color: #fa1e43;
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
}

@keyframes loader-module-scss-module__EpEwTq__spinning {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/src/components/common/general/toaster/toaster.module.scss.module.css [app-client] (css) */
.toaster-module-scss-module__MAPVoG__toasts {
  z-index: 10000000;
  width: auto;
  height: auto;
  position: fixed;
  top: 50px;
  right: 50px;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast {
  text-align: center;
  background-color: #ffffffb3;
  border: 2px solid #3c3738;
  margin-bottom: 20px;
  padding: 20px 40px;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast .toaster-module-scss-module__MAPVoG__title {
  font-size: 2.4rem;
  font-weight: 600;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast .toaster-module-scss-module__MAPVoG__description {
  text-align: center;
  font-size: 1.6rem;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast .toaster-module-scss-module__MAPVoG__description p {
  align-items: center;
  display: flex;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast .toaster-module-scss-module__MAPVoG__description img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.toaster-module-scss-module__MAPVoG__toasts .toaster-module-scss-module__MAPVoG__toast .toaster-module-scss-module__MAPVoG__btn {
  margin-top: 10px;
  padding: 10px 20px;
}

/* [project]/src/components/common/broadcasts/broadcastNotification.module.scss.module.css [app-client] (css) */
.broadcastNotification-module-scss-module__fj-K2G__notificationPopup {
  z-index: 2000000;
  background-color: #ffffffbf;
  width: 270px;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
}

.broadcastNotification-module-scss-module__fj-K2G__notificationPopup .broadcastNotification-module-scss-module__fj-K2G__title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
}

.broadcastNotification-module-scss-module__fj-K2G__notificationPopup .broadcastNotification-module-scss-module__fj-K2G__close {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}

.broadcastNotification-module-scss-module__fj-K2G__notificationPopup .broadcastNotification-module-scss-module__fj-K2G__entities {
  scrollbar-gutter: stable both-edges;
  display: flex;
  overflow-x: auto;
}

.broadcastNotification-module-scss-module__fj-K2G__notificationPopup .broadcastNotification-module-scss-module__fj-K2G__entities .broadcastNotification-module-scss-module__fj-K2G__entity {
  flex: 0 0 200px;
  width: 200px;
  margin-right: 10px;
}

/* [project]/src/components/common/broadcasts/broadcast-entity/broadcastEntity.module.scss.module.css [app-client] (css) */
.broadcastEntity-module-scss-module__MOsz-W__entity {
  padding-bottom: 10px;
}

.broadcastEntity-module-scss-module__MOsz-W__entity .broadcastEntity-module-scss-module__MOsz-W__image {
  margin-bottom: 10px;
  display: block;
}

.broadcastEntity-module-scss-module__MOsz-W__entity .broadcastEntity-module-scss-module__MOsz-W__image:after {
  padding-top: 150%;
}

.broadcastEntity-module-scss-module__MOsz-W__entity .broadcastEntity-module-scss-module__MOsz-W__title {
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
}

/* [project]/src/components/common/general/link/linkUrl.module.scss.module.css [app-client] (css) */
.linkUrl-module-scss-module__Y22Snq__link {
  letter-spacing: 1.6px;
  font-size: 1.4rem;
  transition: all .2s linear;
  display: inline-block;
}

.linkUrl-module-scss-module__Y22Snq__link:hover {
  opacity: 1;
}

.linkUrl-module-scss-module__Y22Snq__link.linkUrl-module-scss-module__Y22Snq__separator {
  margin-top: 15px;
}

.linkUrl-module-scss-module__Y22Snq__small {
  padding: 5px 10px;
}

.linkUrl-module-scss-module__Y22Snq__medium {
  padding: 15px 30px;
}

.linkUrl-module-scss-module__Y22Snq__large {
  padding: 25px 50px;
}

.linkUrl-module-scss-module__Y22Snq__primary {
  color: #fff;
  background-color: #00f;
  border: 1px solid #00f;
}

.linkUrl-module-scss-module__Y22Snq__primary.linkUrl-module-scss-module__Y22Snq__outline {
  color: #00f;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__primary.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid #00f;
}

.linkUrl-module-scss-module__Y22Snq__secondary {
  color: #fff;
  background-color: gray;
  border: 1px solid gray;
}

.linkUrl-module-scss-module__Y22Snq__secondary.linkUrl-module-scss-module__Y22Snq__outline {
  color: gray;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__secondary.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid gray;
}

.linkUrl-module-scss-module__Y22Snq__success {
  color: #fff;
  background-color: green;
  border: 1px solid green;
}

.linkUrl-module-scss-module__Y22Snq__success.linkUrl-module-scss-module__Y22Snq__outline {
  color: green;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__success.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid green;
}

.linkUrl-module-scss-module__Y22Snq__danger {
  color: #fff;
  background-color: red;
  border: 1px solid red;
}

.linkUrl-module-scss-module__Y22Snq__danger.linkUrl-module-scss-module__Y22Snq__outline {
  color: red;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__danger.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid red;
}

.linkUrl-module-scss-module__Y22Snq__warning {
  color: #000;
  background-color: #ff0;
  border: 1px solid #ff0;
}

.linkUrl-module-scss-module__Y22Snq__warning.linkUrl-module-scss-module__Y22Snq__outline {
  color: #000;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__warning.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid #ff0;
}

.linkUrl-module-scss-module__Y22Snq__info {
  color: #000;
  background-color: #7fffd4;
  border: 1px solid #7fffd4;
}

.linkUrl-module-scss-module__Y22Snq__info.linkUrl-module-scss-module__Y22Snq__outline {
  color: #7fffd4;
  background-color: #fff;
}

.linkUrl-module-scss-module__Y22Snq__info.linkUrl-module-scss-module__Y22Snq__outline:hover {
  border: 2px solid #7fffd4;
}

.linkUrl-module-scss-module__Y22Snq__light {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

.linkUrl-module-scss-module__Y22Snq__black {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}

/*# sourceMappingURL=_81888c4e._.css.map*/