@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.button {
  background-color: white;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  position: relative;
  border: 0;
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.4rem, 1.5vw, 2.4rem);
  border-radius: 3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0.1rem 0.1rem 0.4rem rgba(99, 99, 99, 0.2);
  transition: all 0.3s ease-in-out;
  font-size: 1.4rem;
  color: var(--color-text);
}
.button::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.4rem;
  right: 0.4rem;
  background: none;
  border: 2px dashed #000000;
  border-radius: 3rem;
  opacity: 0.16;
}
.button:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3764705882);
}
.button--small {
  font-size: 1.1rem;
  padding: 0.8rem 1.6rem;
}
.button--transparent {
  border: 0.1rem solid white;
  background-color: transparent;
}
.button--transparent::after {
  border-color: white;
  opacity: 0.8;
}
.button--transparent:hover {
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.3764705882);
}
.button--basic {
  background-color: var(--color-neutral-lightest);
  font-size: 1.4rem;
}
.button--primary {
  background-color: var(--color-primary-base);
  color: white;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.3764705882);
  border: 0.1rem solid rgba(0, 0, 0, 0);
}
.button[disabled] {
  background-color: var(--color-neutral-light);
}

.badge {
  background-color: var(--color-neutral-light);
  padding: 0.4rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid var(--color-border);
}
.badge--info {
  background-color: var(--color-info-lighter);
  border-color: var(--color-info-light);
}
.badge--attention {
  background-color: var(--color-attention-lighter);
  border-color: var(--color-attention-light);
}
.badge--success {
  background-color: var(--color-success-lighter);
  border-color: var(--color-success-light);
}
.badge--danger {
  background-color: var(--color-danger-lighter);
  border-color: var(--color-danger-light);
}

.woocommerce-breadcrumb {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.hamburger {
  width: 3rem;
  transition: all 0.3s ease-in-out;
}
.hamburger::after {
  content: "";
  background-color: rgba(255, 153, 201, 0.1);
  position: absolute;
}
.hamburger .line {
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-text);
  display: block;
  margin: 0.8rem auto;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active {
  transform: rotate(90deg);
}
.hamburger.is-active .line:nth-child(1) {
  width: 1rem;
}
.hamburger.is-active .line:nth-child(2) {
  width: 2rem;
}

/**
Colors
 */
/**
Transitions
 */
/**
Font
 */
/**
Spacing
 */
/**
Breakpoints
 */
/**
Root (CSS variables)
 */
:root {
  --color-white: #ffffff;
  --color-text: #2e3438;
  --color-text-light: #c6c8ca;
  --color-border: #dfe3e8;
  --color-border-input: #c4cdd5;
  --color-error: #e03a3e;
  --color-primary-lightest: #f5f9fc;
  --color-primary-lighter: #cce1ed;
  --color-primary-light: #b2d1e4;
  --color-primary: #f78da7;
  --color-primary-base: #f78da7;
  --color-primary-dark: #004875;
  --color-primary-darker: #002942;
  --color-primary-darkest: #db003a;
  --color-secondary-lightest: #fbf9f7;
  --color-secondary-lighter: #e9e1d7;
  --color-secondary-light: #ded2c2;
  --color-secondary: #936b36;
  --color-secondary-base: #936b36;
  --color-secondary-dark: #674b26;
  --color-secondary-darker: #3b2b16;
  --color-secondary-darkest: #1d150b;
  --color-info-lightest: #f5f9fc;
  --color-info-lighter: #cce1ed;
  --color-info-light: #b2d1e4;
  --color-info: #0067a6;
  --color-info-base: #0067a6;
  --color-info-dark: #004875;
  --color-info-darker: #002942;
  --color-info-darkest: #001521;
  --color-success-lightest: #f7fdf9;
  --color-success-lighter: #d5f5e3;
  --color-success-light: #c0f0d4;
  --color-success: #2ecc71;
  --color-success-base: #2ecc71;
  --color-success-dark: #208f4f;
  --color-success-darker: #12522d;
  --color-success-darkest: #092917;
  --color-danger-lightest: #fef7f7;
  --color-danger-lighter: #f9d8d8;
  --color-danger-light: #f6c4c5;
  --color-danger: #e03a3e;
  --color-danger-base: #e03a3e;
  --color-danger-dark: #9d292c;
  --color-danger-darker: #5a1719;
  --color-danger-darkest: #2d0c0c;
  --color-warning-lightest: #fefdf6;
  --color-warning-lighter: #fcf3cf;
  --color-warning-light: #fbedb7;
  --color-warning: #f1c40f;
  --color-warning-base: #f1c40f;
  --color-warning-dark: #a98a0b;
  --color-warning-darker: #604e06;
  --color-warning-darkest: #302703;
  --color-attention-lightest: #fbf8fc;
  --color-attention-lighter: #ebdef0;
  --color-attention-light: #e1cde9;
  --color-attention: #9b59b6;
  --color-attention-base: #9b59b6;
  --color-attention-dark: #6d3e80;
  --color-attention-darker: #3e2449;
  --color-attention-darkest: #1f1224;
  --color-neutral-lightest: #f9fafb;
  --color-neutral-lighter: #f9f9fa;
  --color-neutral-light: #f4f6f8;
  --color-neutral: #dfe3e8;
  --color-neutral-base: #dfe3e8;
  --color-neutral-dark: #c4cdd5;
  --color-neutral-darker: #a0acba;
  --color-neutral-darkest: #22282f;
  --color-neutralDark-lightest: #f8f8f8;
  --color-neutralDark-lighter: #d9dbdc;
  --color-neutralDark-light: #c6c8ca;
  --color-neutralDark: #414a50;
  --color-neutralDark-base: #414a50;
  --color-neutralDark-dark: #2e3438;
  --color-neutralDark-darker: #1a1e20;
  --color-neutralDark-darkest: #0d0f10;
  --font-size-body: 1.6rem;
  --font-size-body-lh: 1.5;
  --font-size-button: 1.6rem;
  --font-size-button-lh: 1;
  --font-size-heading: 1.8rem;
  --font-size-heading-lh: 1.25;
  --font-size-subheading: 1.2rem;
  --font-size-subheading-lh: 1.2;
  --font-size-page-heading: 2rem;
  --font-size-page-heading-lh: 1.25;
  --font-size-condensed: 1.2rem;
  --font-size-small: 1.2rem;
  --transition-duration-default:0.2s;
  --transition-cubic: cubic-bezier(0.76, 0, 0.24, 1);
  --shadow-1: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  --shadow-2: 0 2px 1px 0 rgba(0, 0, 0, 0.05), 0 0 1px 0 rgba(0, 0, 0, 0.25);
  --shadow-3: 0 0 2px 0 rgba(0, 0, 0, 0.20), 0 2px 10px 0 rgba(0, 0, 0, 0.10);
  --shadow-4: 0 0 3px 0 rgba(0, 0, 0, 0.10), 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  --shadow-5: 0 0 4px 0 rgba(0, 0, 0, 0.10), 0 8px 40px 0 rgba(0, 0, 0, 0.20);
  --spacing-1: 0.4rem;
  --spacing-2: 0.8rem;
  --spacing-3: 1.2rem;
  --spacing-4: 1.6rem;
  --spacing-5: 2rem;
  --spacing-6: 2.4rem;
  --spacing-8: 3.2rem;
  --spacing-10: 4rem;
  --spacing-12: 4.8rem;
  --spacing-16: 6.4rem;
  --spacing-20: 8rem;
  --spacing-default: var(--spacing-6);
  --spacing-small: var(--spacing-4);
}

/* margin 4.8rem !important */
.m-12 {
  margin: 4.8rem !important;
}

.ml-12 {
  margin-left: 4.8rem !important;
}

.mr-12 {
  margin-right: 4.8rem !important;
}

.mt-12 {
  margin-top: 4.8rem !important;
}

.mb-12 {
  margin-bottom: 4.8rem !important;
}

.mx-12 {
  margin-left: 4.8rem !important;
  margin-right: 4.8rem !important;
}

.my-12 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

.m-xs-12 {
  margin: 4.8rem !important;
}

.ml-xs-12 {
  margin-left: 4.8rem !important;
}

.mr-xs-12 {
  margin-right: 4.8rem !important;
}

.mt-xs-12 {
  margin-top: 4.8rem !important;
}

.mb-xs-12 {
  margin-bottom: 4.8rem !important;
}

.mx-xs-12 {
  margin-left: 4.8rem !important;
  margin-right: 4.8rem !important;
}

.my-xs-12 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

@media (min-width: 776px) {
  .m-sm-12 {
    margin: 4.8rem !important;
  }
  .ml-sm-12 {
    margin-left: 4.8rem !important;
  }
  .mr-sm-12 {
    margin-right: 4.8rem !important;
  }
  .mt-sm-12 {
    margin-top: 4.8rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 4.8rem !important;
  }
  .mx-sm-12 {
    margin-left: 4.8rem !important;
    margin-right: 4.8rem !important;
  }
  .my-sm-12 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-12 {
    margin: 4.8rem !important;
  }
  .ml-md-12 {
    margin-left: 4.8rem !important;
  }
  .mr-md-12 {
    margin-right: 4.8rem !important;
  }
  .mt-md-12 {
    margin-top: 4.8rem !important;
  }
  .mb-md-12 {
    margin-bottom: 4.8rem !important;
  }
  .mx-md-12 {
    margin-left: 4.8rem !important;
    margin-right: 4.8rem !important;
  }
  .my-md-12 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-12 {
    margin: 4.8rem !important;
  }
  .ml-lg-12 {
    margin-left: 4.8rem !important;
  }
  .mr-lg-12 {
    margin-right: 4.8rem !important;
  }
  .mt-lg-12 {
    margin-top: 4.8rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 4.8rem !important;
  }
  .mx-lg-12 {
    margin-left: 4.8rem !important;
    margin-right: 4.8rem !important;
  }
  .my-lg-12 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-12 {
    margin: 4.8rem !important;
  }
  .ml-xl-12 {
    margin-left: 4.8rem !important;
  }
  .mr-xl-12 {
    margin-right: 4.8rem !important;
  }
  .mt-xl-12 {
    margin-top: 4.8rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 4.8rem !important;
  }
  .mx-xl-12 {
    margin-left: 4.8rem !important;
    margin-right: 4.8rem !important;
  }
  .my-xl-12 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-12 {
    margin: 4.8rem !important;
  }
  .ml-xxl-12 {
    margin-left: 4.8rem !important;
  }
  .mr-xxl-12 {
    margin-right: 4.8rem !important;
  }
  .mt-xxl-12 {
    margin-top: 4.8rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 4.8rem !important;
  }
  .mx-xxl-12 {
    margin-left: 4.8rem !important;
    margin-right: 4.8rem !important;
  }
  .my-xxl-12 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
/* margin 4.4rem !important */
.m-11 {
  margin: 4.4rem !important;
}

.ml-11 {
  margin-left: 4.4rem !important;
}

.mr-11 {
  margin-right: 4.4rem !important;
}

.mt-11 {
  margin-top: 4.4rem !important;
}

.mb-11 {
  margin-bottom: 4.4rem !important;
}

.mx-11 {
  margin-left: 4.4rem !important;
  margin-right: 4.4rem !important;
}

.my-11 {
  margin-top: 4.4rem !important;
  margin-bottom: 4.4rem !important;
}

.m-xs-11 {
  margin: 4.4rem !important;
}

.ml-xs-11 {
  margin-left: 4.4rem !important;
}

.mr-xs-11 {
  margin-right: 4.4rem !important;
}

.mt-xs-11 {
  margin-top: 4.4rem !important;
}

.mb-xs-11 {
  margin-bottom: 4.4rem !important;
}

.mx-xs-11 {
  margin-left: 4.4rem !important;
  margin-right: 4.4rem !important;
}

.my-xs-11 {
  margin-top: 4.4rem !important;
  margin-bottom: 4.4rem !important;
}

@media (min-width: 776px) {
  .m-sm-11 {
    margin: 4.4rem !important;
  }
  .ml-sm-11 {
    margin-left: 4.4rem !important;
  }
  .mr-sm-11 {
    margin-right: 4.4rem !important;
  }
  .mt-sm-11 {
    margin-top: 4.4rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 4.4rem !important;
  }
  .mx-sm-11 {
    margin-left: 4.4rem !important;
    margin-right: 4.4rem !important;
  }
  .my-sm-11 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-11 {
    margin: 4.4rem !important;
  }
  .ml-md-11 {
    margin-left: 4.4rem !important;
  }
  .mr-md-11 {
    margin-right: 4.4rem !important;
  }
  .mt-md-11 {
    margin-top: 4.4rem !important;
  }
  .mb-md-11 {
    margin-bottom: 4.4rem !important;
  }
  .mx-md-11 {
    margin-left: 4.4rem !important;
    margin-right: 4.4rem !important;
  }
  .my-md-11 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-11 {
    margin: 4.4rem !important;
  }
  .ml-lg-11 {
    margin-left: 4.4rem !important;
  }
  .mr-lg-11 {
    margin-right: 4.4rem !important;
  }
  .mt-lg-11 {
    margin-top: 4.4rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 4.4rem !important;
  }
  .mx-lg-11 {
    margin-left: 4.4rem !important;
    margin-right: 4.4rem !important;
  }
  .my-lg-11 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-11 {
    margin: 4.4rem !important;
  }
  .ml-xl-11 {
    margin-left: 4.4rem !important;
  }
  .mr-xl-11 {
    margin-right: 4.4rem !important;
  }
  .mt-xl-11 {
    margin-top: 4.4rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 4.4rem !important;
  }
  .mx-xl-11 {
    margin-left: 4.4rem !important;
    margin-right: 4.4rem !important;
  }
  .my-xl-11 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-11 {
    margin: 4.4rem !important;
  }
  .ml-xxl-11 {
    margin-left: 4.4rem !important;
  }
  .mr-xxl-11 {
    margin-right: 4.4rem !important;
  }
  .mt-xxl-11 {
    margin-top: 4.4rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 4.4rem !important;
  }
  .mx-xxl-11 {
    margin-left: 4.4rem !important;
    margin-right: 4.4rem !important;
  }
  .my-xxl-11 {
    margin-top: 4.4rem !important;
    margin-bottom: 4.4rem !important;
  }
}
/* margin 4rem !important */
.m-10 {
  margin: 4rem !important;
}

.ml-10 {
  margin-left: 4rem !important;
}

.mr-10 {
  margin-right: 4rem !important;
}

.mt-10 {
  margin-top: 4rem !important;
}

.mb-10 {
  margin-bottom: 4rem !important;
}

.mx-10 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-10 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.m-xs-10 {
  margin: 4rem !important;
}

.ml-xs-10 {
  margin-left: 4rem !important;
}

.mr-xs-10 {
  margin-right: 4rem !important;
}

.mt-xs-10 {
  margin-top: 4rem !important;
}

.mb-xs-10 {
  margin-bottom: 4rem !important;
}

.mx-xs-10 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-xs-10 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

@media (min-width: 776px) {
  .m-sm-10 {
    margin: 4rem !important;
  }
  .ml-sm-10 {
    margin-left: 4rem !important;
  }
  .mr-sm-10 {
    margin-right: 4rem !important;
  }
  .mt-sm-10 {
    margin-top: 4rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 4rem !important;
  }
  .mx-sm-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-sm-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-10 {
    margin: 4rem !important;
  }
  .ml-md-10 {
    margin-left: 4rem !important;
  }
  .mr-md-10 {
    margin-right: 4rem !important;
  }
  .mt-md-10 {
    margin-top: 4rem !important;
  }
  .mb-md-10 {
    margin-bottom: 4rem !important;
  }
  .mx-md-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-md-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-10 {
    margin: 4rem !important;
  }
  .ml-lg-10 {
    margin-left: 4rem !important;
  }
  .mr-lg-10 {
    margin-right: 4rem !important;
  }
  .mt-lg-10 {
    margin-top: 4rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 4rem !important;
  }
  .mx-lg-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-lg-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-10 {
    margin: 4rem !important;
  }
  .ml-xl-10 {
    margin-left: 4rem !important;
  }
  .mr-xl-10 {
    margin-right: 4rem !important;
  }
  .mt-xl-10 {
    margin-top: 4rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 4rem !important;
  }
  .mx-xl-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xl-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-10 {
    margin: 4rem !important;
  }
  .ml-xxl-10 {
    margin-left: 4rem !important;
  }
  .mr-xxl-10 {
    margin-right: 4rem !important;
  }
  .mt-xxl-10 {
    margin-top: 4rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 4rem !important;
  }
  .mx-xxl-10 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .my-xxl-10 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
/* margin 3.6rem !important */
.m-9 {
  margin: 3.6rem !important;
}

.ml-9 {
  margin-left: 3.6rem !important;
}

.mr-9 {
  margin-right: 3.6rem !important;
}

.mt-9 {
  margin-top: 3.6rem !important;
}

.mb-9 {
  margin-bottom: 3.6rem !important;
}

.mx-9 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

.my-9 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

.m-xs-9 {
  margin: 3.6rem !important;
}

.ml-xs-9 {
  margin-left: 3.6rem !important;
}

.mr-xs-9 {
  margin-right: 3.6rem !important;
}

.mt-xs-9 {
  margin-top: 3.6rem !important;
}

.mb-xs-9 {
  margin-bottom: 3.6rem !important;
}

.mx-xs-9 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

.my-xs-9 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

@media (min-width: 776px) {
  .m-sm-9 {
    margin: 3.6rem !important;
  }
  .ml-sm-9 {
    margin-left: 3.6rem !important;
  }
  .mr-sm-9 {
    margin-right: 3.6rem !important;
  }
  .mt-sm-9 {
    margin-top: 3.6rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 3.6rem !important;
  }
  .mx-sm-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-sm-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-9 {
    margin: 3.6rem !important;
  }
  .ml-md-9 {
    margin-left: 3.6rem !important;
  }
  .mr-md-9 {
    margin-right: 3.6rem !important;
  }
  .mt-md-9 {
    margin-top: 3.6rem !important;
  }
  .mb-md-9 {
    margin-bottom: 3.6rem !important;
  }
  .mx-md-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-md-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-9 {
    margin: 3.6rem !important;
  }
  .ml-lg-9 {
    margin-left: 3.6rem !important;
  }
  .mr-lg-9 {
    margin-right: 3.6rem !important;
  }
  .mt-lg-9 {
    margin-top: 3.6rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 3.6rem !important;
  }
  .mx-lg-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-lg-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-9 {
    margin: 3.6rem !important;
  }
  .ml-xl-9 {
    margin-left: 3.6rem !important;
  }
  .mr-xl-9 {
    margin-right: 3.6rem !important;
  }
  .mt-xl-9 {
    margin-top: 3.6rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 3.6rem !important;
  }
  .mx-xl-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-xl-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-9 {
    margin: 3.6rem !important;
  }
  .ml-xxl-9 {
    margin-left: 3.6rem !important;
  }
  .mr-xxl-9 {
    margin-right: 3.6rem !important;
  }
  .mt-xxl-9 {
    margin-top: 3.6rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 3.6rem !important;
  }
  .mx-xxl-9 {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
  .my-xxl-9 {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
/* margin 3.2rem !important */
.m-8 {
  margin: 3.2rem !important;
}

.ml-8 {
  margin-left: 3.2rem !important;
}

.mr-8 {
  margin-right: 3.2rem !important;
}

.mt-8 {
  margin-top: 3.2rem !important;
}

.mb-8 {
  margin-bottom: 3.2rem !important;
}

.mx-8 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

.my-8 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

.m-xs-8 {
  margin: 3.2rem !important;
}

.ml-xs-8 {
  margin-left: 3.2rem !important;
}

.mr-xs-8 {
  margin-right: 3.2rem !important;
}

.mt-xs-8 {
  margin-top: 3.2rem !important;
}

.mb-xs-8 {
  margin-bottom: 3.2rem !important;
}

.mx-xs-8 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

.my-xs-8 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

@media (min-width: 776px) {
  .m-sm-8 {
    margin: 3.2rem !important;
  }
  .ml-sm-8 {
    margin-left: 3.2rem !important;
  }
  .mr-sm-8 {
    margin-right: 3.2rem !important;
  }
  .mt-sm-8 {
    margin-top: 3.2rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 3.2rem !important;
  }
  .mx-sm-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-sm-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-8 {
    margin: 3.2rem !important;
  }
  .ml-md-8 {
    margin-left: 3.2rem !important;
  }
  .mr-md-8 {
    margin-right: 3.2rem !important;
  }
  .mt-md-8 {
    margin-top: 3.2rem !important;
  }
  .mb-md-8 {
    margin-bottom: 3.2rem !important;
  }
  .mx-md-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-md-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-8 {
    margin: 3.2rem !important;
  }
  .ml-lg-8 {
    margin-left: 3.2rem !important;
  }
  .mr-lg-8 {
    margin-right: 3.2rem !important;
  }
  .mt-lg-8 {
    margin-top: 3.2rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 3.2rem !important;
  }
  .mx-lg-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-lg-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-8 {
    margin: 3.2rem !important;
  }
  .ml-xl-8 {
    margin-left: 3.2rem !important;
  }
  .mr-xl-8 {
    margin-right: 3.2rem !important;
  }
  .mt-xl-8 {
    margin-top: 3.2rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 3.2rem !important;
  }
  .mx-xl-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-xl-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-8 {
    margin: 3.2rem !important;
  }
  .ml-xxl-8 {
    margin-left: 3.2rem !important;
  }
  .mr-xxl-8 {
    margin-right: 3.2rem !important;
  }
  .mt-xxl-8 {
    margin-top: 3.2rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 3.2rem !important;
  }
  .mx-xxl-8 {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
  .my-xxl-8 {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
/* margin 2.8rem !important */
.m-7 {
  margin: 2.8rem !important;
}

.ml-7 {
  margin-left: 2.8rem !important;
}

.mr-7 {
  margin-right: 2.8rem !important;
}

.mt-7 {
  margin-top: 2.8rem !important;
}

.mb-7 {
  margin-bottom: 2.8rem !important;
}

.mx-7 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

.my-7 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

.m-xs-7 {
  margin: 2.8rem !important;
}

.ml-xs-7 {
  margin-left: 2.8rem !important;
}

.mr-xs-7 {
  margin-right: 2.8rem !important;
}

.mt-xs-7 {
  margin-top: 2.8rem !important;
}

.mb-xs-7 {
  margin-bottom: 2.8rem !important;
}

.mx-xs-7 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

.my-xs-7 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

@media (min-width: 776px) {
  .m-sm-7 {
    margin: 2.8rem !important;
  }
  .ml-sm-7 {
    margin-left: 2.8rem !important;
  }
  .mr-sm-7 {
    margin-right: 2.8rem !important;
  }
  .mt-sm-7 {
    margin-top: 2.8rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 2.8rem !important;
  }
  .mx-sm-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-sm-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-7 {
    margin: 2.8rem !important;
  }
  .ml-md-7 {
    margin-left: 2.8rem !important;
  }
  .mr-md-7 {
    margin-right: 2.8rem !important;
  }
  .mt-md-7 {
    margin-top: 2.8rem !important;
  }
  .mb-md-7 {
    margin-bottom: 2.8rem !important;
  }
  .mx-md-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-md-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-7 {
    margin: 2.8rem !important;
  }
  .ml-lg-7 {
    margin-left: 2.8rem !important;
  }
  .mr-lg-7 {
    margin-right: 2.8rem !important;
  }
  .mt-lg-7 {
    margin-top: 2.8rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 2.8rem !important;
  }
  .mx-lg-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-lg-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-7 {
    margin: 2.8rem !important;
  }
  .ml-xl-7 {
    margin-left: 2.8rem !important;
  }
  .mr-xl-7 {
    margin-right: 2.8rem !important;
  }
  .mt-xl-7 {
    margin-top: 2.8rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 2.8rem !important;
  }
  .mx-xl-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-xl-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-7 {
    margin: 2.8rem !important;
  }
  .ml-xxl-7 {
    margin-left: 2.8rem !important;
  }
  .mr-xxl-7 {
    margin-right: 2.8rem !important;
  }
  .mt-xxl-7 {
    margin-top: 2.8rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 2.8rem !important;
  }
  .mx-xxl-7 {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
  .my-xxl-7 {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
/* margin 2.4rem !important */
.m-6 {
  margin: 2.4rem !important;
}

.ml-6 {
  margin-left: 2.4rem !important;
}

.mr-6 {
  margin-right: 2.4rem !important;
}

.mt-6 {
  margin-top: 2.4rem !important;
}

.mb-6 {
  margin-bottom: 2.4rem !important;
}

.mx-6 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

.my-6 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.m-xs-6 {
  margin: 2.4rem !important;
}

.ml-xs-6 {
  margin-left: 2.4rem !important;
}

.mr-xs-6 {
  margin-right: 2.4rem !important;
}

.mt-xs-6 {
  margin-top: 2.4rem !important;
}

.mb-xs-6 {
  margin-bottom: 2.4rem !important;
}

.mx-xs-6 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

.my-xs-6 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

@media (min-width: 776px) {
  .m-sm-6 {
    margin: 2.4rem !important;
  }
  .ml-sm-6 {
    margin-left: 2.4rem !important;
  }
  .mr-sm-6 {
    margin-right: 2.4rem !important;
  }
  .mt-sm-6 {
    margin-top: 2.4rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 2.4rem !important;
  }
  .mx-sm-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-sm-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-6 {
    margin: 2.4rem !important;
  }
  .ml-md-6 {
    margin-left: 2.4rem !important;
  }
  .mr-md-6 {
    margin-right: 2.4rem !important;
  }
  .mt-md-6 {
    margin-top: 2.4rem !important;
  }
  .mb-md-6 {
    margin-bottom: 2.4rem !important;
  }
  .mx-md-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-md-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-6 {
    margin: 2.4rem !important;
  }
  .ml-lg-6 {
    margin-left: 2.4rem !important;
  }
  .mr-lg-6 {
    margin-right: 2.4rem !important;
  }
  .mt-lg-6 {
    margin-top: 2.4rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 2.4rem !important;
  }
  .mx-lg-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-lg-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-6 {
    margin: 2.4rem !important;
  }
  .ml-xl-6 {
    margin-left: 2.4rem !important;
  }
  .mr-xl-6 {
    margin-right: 2.4rem !important;
  }
  .mt-xl-6 {
    margin-top: 2.4rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 2.4rem !important;
  }
  .mx-xl-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-xl-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-6 {
    margin: 2.4rem !important;
  }
  .ml-xxl-6 {
    margin-left: 2.4rem !important;
  }
  .mr-xxl-6 {
    margin-right: 2.4rem !important;
  }
  .mt-xxl-6 {
    margin-top: 2.4rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 2.4rem !important;
  }
  .mx-xxl-6 {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
  .my-xxl-6 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
/* margin 2rem !important */
.m-5 {
  margin: 2rem !important;
}

.ml-5 {
  margin-left: 2rem !important;
}

.mr-5 {
  margin-right: 2rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.m-xs-5 {
  margin: 2rem !important;
}

.ml-xs-5 {
  margin-left: 2rem !important;
}

.mr-xs-5 {
  margin-right: 2rem !important;
}

.mt-xs-5 {
  margin-top: 2rem !important;
}

.mb-xs-5 {
  margin-bottom: 2rem !important;
}

.mx-xs-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-xs-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 776px) {
  .m-sm-5 {
    margin: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 2rem !important;
  }
  .mr-sm-5 {
    margin-right: 2rem !important;
  }
  .mt-sm-5 {
    margin-top: 2rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .mx-sm-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-5 {
    margin: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 2rem !important;
  }
  .mr-md-5 {
    margin-right: 2rem !important;
  }
  .mt-md-5 {
    margin-top: 2rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2rem !important;
  }
  .mx-md-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-5 {
    margin: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 2rem !important;
  }
  .mr-lg-5 {
    margin-right: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2rem !important;
  }
  .mx-lg-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-5 {
    margin: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 2rem !important;
  }
  .mr-xl-5 {
    margin-right: 2rem !important;
  }
  .mt-xl-5 {
    margin-top: 2rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2rem !important;
  }
  .mx-xl-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-5 {
    margin: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 2rem !important;
  }
  .mr-xxl-5 {
    margin-right: 2rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2rem !important;
  }
  .mx-xxl-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .my-xxl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
/* margin 1.6rem !important */
.m-4 {
  margin: 1.6rem !important;
}

.ml-4 {
  margin-left: 1.6rem !important;
}

.mr-4 {
  margin-right: 1.6rem !important;
}

.mt-4 {
  margin-top: 1.6rem !important;
}

.mb-4 {
  margin-bottom: 1.6rem !important;
}

.mx-4 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

.my-4 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.m-xs-4 {
  margin: 1.6rem !important;
}

.ml-xs-4 {
  margin-left: 1.6rem !important;
}

.mr-xs-4 {
  margin-right: 1.6rem !important;
}

.mt-xs-4 {
  margin-top: 1.6rem !important;
}

.mb-xs-4 {
  margin-bottom: 1.6rem !important;
}

.mx-xs-4 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

.my-xs-4 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

@media (min-width: 776px) {
  .m-sm-4 {
    margin: 1.6rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.6rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.6rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.6rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.6rem !important;
  }
  .mx-sm-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-sm-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-4 {
    margin: 1.6rem !important;
  }
  .ml-md-4 {
    margin-left: 1.6rem !important;
  }
  .mr-md-4 {
    margin-right: 1.6rem !important;
  }
  .mt-md-4 {
    margin-top: 1.6rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.6rem !important;
  }
  .mx-md-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-md-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-4 {
    margin: 1.6rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.6rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.6rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.6rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.6rem !important;
  }
  .mx-lg-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-lg-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-4 {
    margin: 1.6rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.6rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.6rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.6rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.6rem !important;
  }
  .mx-xl-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-xl-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-4 {
    margin: 1.6rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.6rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.6rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.6rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.6rem !important;
  }
  .mx-xxl-4 {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
/* margin 1.2rem !important */
.m-3 {
  margin: 1.2rem !important;
}

.ml-3 {
  margin-left: 1.2rem !important;
}

.mr-3 {
  margin-right: 1.2rem !important;
}

.mt-3 {
  margin-top: 1.2rem !important;
}

.mb-3 {
  margin-bottom: 1.2rem !important;
}

.mx-3 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

.my-3 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.m-xs-3 {
  margin: 1.2rem !important;
}

.ml-xs-3 {
  margin-left: 1.2rem !important;
}

.mr-xs-3 {
  margin-right: 1.2rem !important;
}

.mt-xs-3 {
  margin-top: 1.2rem !important;
}

.mb-xs-3 {
  margin-bottom: 1.2rem !important;
}

.mx-xs-3 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

.my-xs-3 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

@media (min-width: 776px) {
  .m-sm-3 {
    margin: 1.2rem !important;
  }
  .ml-sm-3 {
    margin-left: 1.2rem !important;
  }
  .mr-sm-3 {
    margin-right: 1.2rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.2rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.2rem !important;
  }
  .mx-sm-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-sm-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-3 {
    margin: 1.2rem !important;
  }
  .ml-md-3 {
    margin-left: 1.2rem !important;
  }
  .mr-md-3 {
    margin-right: 1.2rem !important;
  }
  .mt-md-3 {
    margin-top: 1.2rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.2rem !important;
  }
  .mx-md-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-md-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-3 {
    margin: 1.2rem !important;
  }
  .ml-lg-3 {
    margin-left: 1.2rem !important;
  }
  .mr-lg-3 {
    margin-right: 1.2rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.2rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.2rem !important;
  }
  .mx-lg-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-lg-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-3 {
    margin: 1.2rem !important;
  }
  .ml-xl-3 {
    margin-left: 1.2rem !important;
  }
  .mr-xl-3 {
    margin-right: 1.2rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.2rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.2rem !important;
  }
  .mx-xl-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-xl-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-3 {
    margin: 1.2rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1.2rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1.2rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1.2rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1.2rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
  .my-xxl-3 {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
/* margin 0.8rem !important */
.m-2 {
  margin: 0.8rem !important;
}

.ml-2 {
  margin-left: 0.8rem !important;
}

.mr-2 {
  margin-right: 0.8rem !important;
}

.mt-2 {
  margin-top: 0.8rem !important;
}

.mb-2 {
  margin-bottom: 0.8rem !important;
}

.mx-2 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.my-2 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.m-xs-2 {
  margin: 0.8rem !important;
}

.ml-xs-2 {
  margin-left: 0.8rem !important;
}

.mr-xs-2 {
  margin-right: 0.8rem !important;
}

.mt-xs-2 {
  margin-top: 0.8rem !important;
}

.mb-xs-2 {
  margin-bottom: 0.8rem !important;
}

.mx-xs-2 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.my-xs-2 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

@media (min-width: 776px) {
  .m-sm-2 {
    margin: 0.8rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.8rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.8rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.8rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.8rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-sm-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-2 {
    margin: 0.8rem !important;
  }
  .ml-md-2 {
    margin-left: 0.8rem !important;
  }
  .mr-md-2 {
    margin-right: 0.8rem !important;
  }
  .mt-md-2 {
    margin-top: 0.8rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.8rem !important;
  }
  .mx-md-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-md-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-2 {
    margin: 0.8rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.8rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.8rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.8rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.8rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-lg-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-2 {
    margin: 0.8rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.8rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.8rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.8rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.8rem !important;
  }
  .mx-xl-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-xl-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-2 {
    margin: 0.8rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.8rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.8rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.8rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.8rem !important;
  }
  .mx-xxl-2 {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
/* margin 0.4rem !important */
.m-1 {
  margin: 0.4rem !important;
}

.ml-1 {
  margin-left: 0.4rem !important;
}

.mr-1 {
  margin-right: 0.4rem !important;
}

.mt-1 {
  margin-top: 0.4rem !important;
}

.mb-1 {
  margin-bottom: 0.4rem !important;
}

.mx-1 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.my-1 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

.m-xs-1 {
  margin: 0.4rem !important;
}

.ml-xs-1 {
  margin-left: 0.4rem !important;
}

.mr-xs-1 {
  margin-right: 0.4rem !important;
}

.mt-xs-1 {
  margin-top: 0.4rem !important;
}

.mb-xs-1 {
  margin-bottom: 0.4rem !important;
}

.mx-xs-1 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.my-xs-1 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

@media (min-width: 776px) {
  .m-sm-1 {
    margin: 0.4rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.4rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.4rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.4rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.4rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-sm-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-1 {
    margin: 0.4rem !important;
  }
  .ml-md-1 {
    margin-left: 0.4rem !important;
  }
  .mr-md-1 {
    margin-right: 0.4rem !important;
  }
  .mt-md-1 {
    margin-top: 0.4rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.4rem !important;
  }
  .mx-md-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-md-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-1 {
    margin: 0.4rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.4rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.4rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.4rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.4rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-lg-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-1 {
    margin: 0.4rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.4rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.4rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.4rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.4rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-xl-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-1 {
    margin: 0.4rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.4rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.4rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.4rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.4rem !important;
  }
  .mx-xxl-1 {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
/* margin 0rem !important */
.m-0 {
  margin: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.m-xs-0 {
  margin: 0rem !important;
}

.ml-xs-0 {
  margin-left: 0rem !important;
}

.mr-xs-0 {
  margin-right: 0rem !important;
}

.mt-xs-0 {
  margin-top: 0rem !important;
}

.mb-xs-0 {
  margin-bottom: 0rem !important;
}

.mx-xs-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-xs-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

@media (min-width: 776px) {
  .m-sm-0 {
    margin: 0rem !important;
  }
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .mr-sm-0 {
    margin-right: 0rem !important;
  }
  .mt-sm-0 {
    margin-top: 0rem !important;
  }
  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 968px) {
  .m-md-0 {
    margin: 0rem !important;
  }
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .mr-md-0 {
    margin-right: 0rem !important;
  }
  .mt-md-0 {
    margin-top: 0rem !important;
  }
  .mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .mx-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-md-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1192px) {
  .m-lg-0 {
    margin: 0rem !important;
  }
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .mr-lg-0 {
    margin-right: 0rem !important;
  }
  .mt-lg-0 {
    margin-top: 0rem !important;
  }
  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }
  .mx-lg-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-lg-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xl-0 {
    margin: 0rem !important;
  }
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .mr-xl-0 {
    margin-right: 0rem !important;
  }
  .mt-xl-0 {
    margin-top: 0rem !important;
  }
  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }
  .mx-xl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-0 {
    margin: 0rem !important;
  }
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .mr-xxl-0 {
    margin-right: 0rem !important;
  }
  .mt-xxl-0 {
    margin-top: 0rem !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .mx-xxl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .my-xxl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
/* padding 4.8rem !important */
.p-12 {
  padding: 4.8rem !important;
}

.pl-12 {
  padding-left: 4.8rem !important;
}

.pr-12 {
  padding-right: 4.8rem !important;
}

.pt-12 {
  padding-top: 4.8rem !important;
}

.pb-12 {
  padding-bottom: 4.8rem !important;
}

.px-12 {
  padding-left: 4.8rem !important;
  padding-right: 4.8rem !important;
}

.py-12 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

.p-xs-12 {
  padding: 4.8rem !important;
}

.pl-xs-12 {
  padding-left: 4.8rem !important;
}

.pr-xs-12 {
  padding-right: 4.8rem !important;
}

.pt-xs-12 {
  padding-top: 4.8rem !important;
}

.pb-xs-12 {
  padding-bottom: 4.8rem !important;
}

.px-xs-12 {
  padding-left: 4.8rem !important;
  padding-right: 4.8rem !important;
}

.py-xs-12 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

@media (min-width: 776px) {
  .p-sm-12 {
    padding: 4.8rem !important;
  }
  .pl-sm-12 {
    padding-left: 4.8rem !important;
  }
  .pr-sm-12 {
    padding-right: 4.8rem !important;
  }
  .pt-sm-12 {
    padding-top: 4.8rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 4.8rem !important;
  }
  .px-sm-12 {
    padding-left: 4.8rem !important;
    padding-right: 4.8rem !important;
  }
  .py-sm-12 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-12 {
    padding: 4.8rem !important;
  }
  .pl-md-12 {
    padding-left: 4.8rem !important;
  }
  .pr-md-12 {
    padding-right: 4.8rem !important;
  }
  .pt-md-12 {
    padding-top: 4.8rem !important;
  }
  .pb-md-12 {
    padding-bottom: 4.8rem !important;
  }
  .px-md-12 {
    padding-left: 4.8rem !important;
    padding-right: 4.8rem !important;
  }
  .py-md-12 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-12 {
    padding: 4.8rem !important;
  }
  .pl-lg-12 {
    padding-left: 4.8rem !important;
  }
  .pr-lg-12 {
    padding-right: 4.8rem !important;
  }
  .pt-lg-12 {
    padding-top: 4.8rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 4.8rem !important;
  }
  .px-lg-12 {
    padding-left: 4.8rem !important;
    padding-right: 4.8rem !important;
  }
  .py-lg-12 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-12 {
    padding: 4.8rem !important;
  }
  .pl-xl-12 {
    padding-left: 4.8rem !important;
  }
  .pr-xl-12 {
    padding-right: 4.8rem !important;
  }
  .pt-xl-12 {
    padding-top: 4.8rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 4.8rem !important;
  }
  .px-xl-12 {
    padding-left: 4.8rem !important;
    padding-right: 4.8rem !important;
  }
  .py-xl-12 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-12 {
    padding: 4.8rem !important;
  }
  .pl-xxl-12 {
    padding-left: 4.8rem !important;
  }
  .pr-xxl-12 {
    padding-right: 4.8rem !important;
  }
  .pt-xxl-12 {
    padding-top: 4.8rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 4.8rem !important;
  }
  .px-xxl-12 {
    padding-left: 4.8rem !important;
    padding-right: 4.8rem !important;
  }
  .py-xxl-12 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
/* padding 4.4rem !important */
.p-11 {
  padding: 4.4rem !important;
}

.pl-11 {
  padding-left: 4.4rem !important;
}

.pr-11 {
  padding-right: 4.4rem !important;
}

.pt-11 {
  padding-top: 4.4rem !important;
}

.pb-11 {
  padding-bottom: 4.4rem !important;
}

.px-11 {
  padding-left: 4.4rem !important;
  padding-right: 4.4rem !important;
}

.py-11 {
  padding-top: 4.4rem !important;
  padding-bottom: 4.4rem !important;
}

.p-xs-11 {
  padding: 4.4rem !important;
}

.pl-xs-11 {
  padding-left: 4.4rem !important;
}

.pr-xs-11 {
  padding-right: 4.4rem !important;
}

.pt-xs-11 {
  padding-top: 4.4rem !important;
}

.pb-xs-11 {
  padding-bottom: 4.4rem !important;
}

.px-xs-11 {
  padding-left: 4.4rem !important;
  padding-right: 4.4rem !important;
}

.py-xs-11 {
  padding-top: 4.4rem !important;
  padding-bottom: 4.4rem !important;
}

@media (min-width: 776px) {
  .p-sm-11 {
    padding: 4.4rem !important;
  }
  .pl-sm-11 {
    padding-left: 4.4rem !important;
  }
  .pr-sm-11 {
    padding-right: 4.4rem !important;
  }
  .pt-sm-11 {
    padding-top: 4.4rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 4.4rem !important;
  }
  .px-sm-11 {
    padding-left: 4.4rem !important;
    padding-right: 4.4rem !important;
  }
  .py-sm-11 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-11 {
    padding: 4.4rem !important;
  }
  .pl-md-11 {
    padding-left: 4.4rem !important;
  }
  .pr-md-11 {
    padding-right: 4.4rem !important;
  }
  .pt-md-11 {
    padding-top: 4.4rem !important;
  }
  .pb-md-11 {
    padding-bottom: 4.4rem !important;
  }
  .px-md-11 {
    padding-left: 4.4rem !important;
    padding-right: 4.4rem !important;
  }
  .py-md-11 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-11 {
    padding: 4.4rem !important;
  }
  .pl-lg-11 {
    padding-left: 4.4rem !important;
  }
  .pr-lg-11 {
    padding-right: 4.4rem !important;
  }
  .pt-lg-11 {
    padding-top: 4.4rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 4.4rem !important;
  }
  .px-lg-11 {
    padding-left: 4.4rem !important;
    padding-right: 4.4rem !important;
  }
  .py-lg-11 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-11 {
    padding: 4.4rem !important;
  }
  .pl-xl-11 {
    padding-left: 4.4rem !important;
  }
  .pr-xl-11 {
    padding-right: 4.4rem !important;
  }
  .pt-xl-11 {
    padding-top: 4.4rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 4.4rem !important;
  }
  .px-xl-11 {
    padding-left: 4.4rem !important;
    padding-right: 4.4rem !important;
  }
  .py-xl-11 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-11 {
    padding: 4.4rem !important;
  }
  .pl-xxl-11 {
    padding-left: 4.4rem !important;
  }
  .pr-xxl-11 {
    padding-right: 4.4rem !important;
  }
  .pt-xxl-11 {
    padding-top: 4.4rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 4.4rem !important;
  }
  .px-xxl-11 {
    padding-left: 4.4rem !important;
    padding-right: 4.4rem !important;
  }
  .py-xxl-11 {
    padding-top: 4.4rem !important;
    padding-bottom: 4.4rem !important;
  }
}
/* padding 4rem !important */
.p-10 {
  padding: 4rem !important;
}

.pl-10 {
  padding-left: 4rem !important;
}

.pr-10 {
  padding-right: 4rem !important;
}

.pt-10 {
  padding-top: 4rem !important;
}

.pb-10 {
  padding-bottom: 4rem !important;
}

.px-10 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-10 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.p-xs-10 {
  padding: 4rem !important;
}

.pl-xs-10 {
  padding-left: 4rem !important;
}

.pr-xs-10 {
  padding-right: 4rem !important;
}

.pt-xs-10 {
  padding-top: 4rem !important;
}

.pb-xs-10 {
  padding-bottom: 4rem !important;
}

.px-xs-10 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-xs-10 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 776px) {
  .p-sm-10 {
    padding: 4rem !important;
  }
  .pl-sm-10 {
    padding-left: 4rem !important;
  }
  .pr-sm-10 {
    padding-right: 4rem !important;
  }
  .pt-sm-10 {
    padding-top: 4rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 4rem !important;
  }
  .px-sm-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-sm-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-10 {
    padding: 4rem !important;
  }
  .pl-md-10 {
    padding-left: 4rem !important;
  }
  .pr-md-10 {
    padding-right: 4rem !important;
  }
  .pt-md-10 {
    padding-top: 4rem !important;
  }
  .pb-md-10 {
    padding-bottom: 4rem !important;
  }
  .px-md-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-md-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-10 {
    padding: 4rem !important;
  }
  .pl-lg-10 {
    padding-left: 4rem !important;
  }
  .pr-lg-10 {
    padding-right: 4rem !important;
  }
  .pt-lg-10 {
    padding-top: 4rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 4rem !important;
  }
  .px-lg-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-lg-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-10 {
    padding: 4rem !important;
  }
  .pl-xl-10 {
    padding-left: 4rem !important;
  }
  .pr-xl-10 {
    padding-right: 4rem !important;
  }
  .pt-xl-10 {
    padding-top: 4rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 4rem !important;
  }
  .px-xl-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-xl-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-10 {
    padding: 4rem !important;
  }
  .pl-xxl-10 {
    padding-left: 4rem !important;
  }
  .pr-xxl-10 {
    padding-right: 4rem !important;
  }
  .pt-xxl-10 {
    padding-top: 4rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 4rem !important;
  }
  .px-xxl-10 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .py-xxl-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
/* padding 3.6rem !important */
.p-9 {
  padding: 3.6rem !important;
}

.pl-9 {
  padding-left: 3.6rem !important;
}

.pr-9 {
  padding-right: 3.6rem !important;
}

.pt-9 {
  padding-top: 3.6rem !important;
}

.pb-9 {
  padding-bottom: 3.6rem !important;
}

.px-9 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

.py-9 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

.p-xs-9 {
  padding: 3.6rem !important;
}

.pl-xs-9 {
  padding-left: 3.6rem !important;
}

.pr-xs-9 {
  padding-right: 3.6rem !important;
}

.pt-xs-9 {
  padding-top: 3.6rem !important;
}

.pb-xs-9 {
  padding-bottom: 3.6rem !important;
}

.px-xs-9 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

.py-xs-9 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

@media (min-width: 776px) {
  .p-sm-9 {
    padding: 3.6rem !important;
  }
  .pl-sm-9 {
    padding-left: 3.6rem !important;
  }
  .pr-sm-9 {
    padding-right: 3.6rem !important;
  }
  .pt-sm-9 {
    padding-top: 3.6rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 3.6rem !important;
  }
  .px-sm-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-sm-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-9 {
    padding: 3.6rem !important;
  }
  .pl-md-9 {
    padding-left: 3.6rem !important;
  }
  .pr-md-9 {
    padding-right: 3.6rem !important;
  }
  .pt-md-9 {
    padding-top: 3.6rem !important;
  }
  .pb-md-9 {
    padding-bottom: 3.6rem !important;
  }
  .px-md-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-md-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-9 {
    padding: 3.6rem !important;
  }
  .pl-lg-9 {
    padding-left: 3.6rem !important;
  }
  .pr-lg-9 {
    padding-right: 3.6rem !important;
  }
  .pt-lg-9 {
    padding-top: 3.6rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 3.6rem !important;
  }
  .px-lg-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-lg-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-9 {
    padding: 3.6rem !important;
  }
  .pl-xl-9 {
    padding-left: 3.6rem !important;
  }
  .pr-xl-9 {
    padding-right: 3.6rem !important;
  }
  .pt-xl-9 {
    padding-top: 3.6rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 3.6rem !important;
  }
  .px-xl-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-xl-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-9 {
    padding: 3.6rem !important;
  }
  .pl-xxl-9 {
    padding-left: 3.6rem !important;
  }
  .pr-xxl-9 {
    padding-right: 3.6rem !important;
  }
  .pt-xxl-9 {
    padding-top: 3.6rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 3.6rem !important;
  }
  .px-xxl-9 {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
  .py-xxl-9 {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
/* padding 3.2rem !important */
.p-8 {
  padding: 3.2rem !important;
}

.pl-8 {
  padding-left: 3.2rem !important;
}

.pr-8 {
  padding-right: 3.2rem !important;
}

.pt-8 {
  padding-top: 3.2rem !important;
}

.pb-8 {
  padding-bottom: 3.2rem !important;
}

.px-8 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

.py-8 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.p-xs-8 {
  padding: 3.2rem !important;
}

.pl-xs-8 {
  padding-left: 3.2rem !important;
}

.pr-xs-8 {
  padding-right: 3.2rem !important;
}

.pt-xs-8 {
  padding-top: 3.2rem !important;
}

.pb-xs-8 {
  padding-bottom: 3.2rem !important;
}

.px-xs-8 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

.py-xs-8 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

@media (min-width: 776px) {
  .p-sm-8 {
    padding: 3.2rem !important;
  }
  .pl-sm-8 {
    padding-left: 3.2rem !important;
  }
  .pr-sm-8 {
    padding-right: 3.2rem !important;
  }
  .pt-sm-8 {
    padding-top: 3.2rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 3.2rem !important;
  }
  .px-sm-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-sm-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-8 {
    padding: 3.2rem !important;
  }
  .pl-md-8 {
    padding-left: 3.2rem !important;
  }
  .pr-md-8 {
    padding-right: 3.2rem !important;
  }
  .pt-md-8 {
    padding-top: 3.2rem !important;
  }
  .pb-md-8 {
    padding-bottom: 3.2rem !important;
  }
  .px-md-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-md-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-8 {
    padding: 3.2rem !important;
  }
  .pl-lg-8 {
    padding-left: 3.2rem !important;
  }
  .pr-lg-8 {
    padding-right: 3.2rem !important;
  }
  .pt-lg-8 {
    padding-top: 3.2rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 3.2rem !important;
  }
  .px-lg-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-lg-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-8 {
    padding: 3.2rem !important;
  }
  .pl-xl-8 {
    padding-left: 3.2rem !important;
  }
  .pr-xl-8 {
    padding-right: 3.2rem !important;
  }
  .pt-xl-8 {
    padding-top: 3.2rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 3.2rem !important;
  }
  .px-xl-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-xl-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-8 {
    padding: 3.2rem !important;
  }
  .pl-xxl-8 {
    padding-left: 3.2rem !important;
  }
  .pr-xxl-8 {
    padding-right: 3.2rem !important;
  }
  .pt-xxl-8 {
    padding-top: 3.2rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 3.2rem !important;
  }
  .px-xxl-8 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  .py-xxl-8 {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
/* padding 2.8rem !important */
.p-7 {
  padding: 2.8rem !important;
}

.pl-7 {
  padding-left: 2.8rem !important;
}

.pr-7 {
  padding-right: 2.8rem !important;
}

.pt-7 {
  padding-top: 2.8rem !important;
}

.pb-7 {
  padding-bottom: 2.8rem !important;
}

.px-7 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

.py-7 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

.p-xs-7 {
  padding: 2.8rem !important;
}

.pl-xs-7 {
  padding-left: 2.8rem !important;
}

.pr-xs-7 {
  padding-right: 2.8rem !important;
}

.pt-xs-7 {
  padding-top: 2.8rem !important;
}

.pb-xs-7 {
  padding-bottom: 2.8rem !important;
}

.px-xs-7 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

.py-xs-7 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

@media (min-width: 776px) {
  .p-sm-7 {
    padding: 2.8rem !important;
  }
  .pl-sm-7 {
    padding-left: 2.8rem !important;
  }
  .pr-sm-7 {
    padding-right: 2.8rem !important;
  }
  .pt-sm-7 {
    padding-top: 2.8rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 2.8rem !important;
  }
  .px-sm-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-sm-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-7 {
    padding: 2.8rem !important;
  }
  .pl-md-7 {
    padding-left: 2.8rem !important;
  }
  .pr-md-7 {
    padding-right: 2.8rem !important;
  }
  .pt-md-7 {
    padding-top: 2.8rem !important;
  }
  .pb-md-7 {
    padding-bottom: 2.8rem !important;
  }
  .px-md-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-md-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-7 {
    padding: 2.8rem !important;
  }
  .pl-lg-7 {
    padding-left: 2.8rem !important;
  }
  .pr-lg-7 {
    padding-right: 2.8rem !important;
  }
  .pt-lg-7 {
    padding-top: 2.8rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 2.8rem !important;
  }
  .px-lg-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-lg-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-7 {
    padding: 2.8rem !important;
  }
  .pl-xl-7 {
    padding-left: 2.8rem !important;
  }
  .pr-xl-7 {
    padding-right: 2.8rem !important;
  }
  .pt-xl-7 {
    padding-top: 2.8rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 2.8rem !important;
  }
  .px-xl-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-xl-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-7 {
    padding: 2.8rem !important;
  }
  .pl-xxl-7 {
    padding-left: 2.8rem !important;
  }
  .pr-xxl-7 {
    padding-right: 2.8rem !important;
  }
  .pt-xxl-7 {
    padding-top: 2.8rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 2.8rem !important;
  }
  .px-xxl-7 {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
  .py-xxl-7 {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
/* padding 2.4rem !important */
.p-6 {
  padding: 2.4rem !important;
}

.pl-6 {
  padding-left: 2.4rem !important;
}

.pr-6 {
  padding-right: 2.4rem !important;
}

.pt-6 {
  padding-top: 2.4rem !important;
}

.pb-6 {
  padding-bottom: 2.4rem !important;
}

.px-6 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

.py-6 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

.p-xs-6 {
  padding: 2.4rem !important;
}

.pl-xs-6 {
  padding-left: 2.4rem !important;
}

.pr-xs-6 {
  padding-right: 2.4rem !important;
}

.pt-xs-6 {
  padding-top: 2.4rem !important;
}

.pb-xs-6 {
  padding-bottom: 2.4rem !important;
}

.px-xs-6 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

.py-xs-6 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

@media (min-width: 776px) {
  .p-sm-6 {
    padding: 2.4rem !important;
  }
  .pl-sm-6 {
    padding-left: 2.4rem !important;
  }
  .pr-sm-6 {
    padding-right: 2.4rem !important;
  }
  .pt-sm-6 {
    padding-top: 2.4rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 2.4rem !important;
  }
  .px-sm-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-sm-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-6 {
    padding: 2.4rem !important;
  }
  .pl-md-6 {
    padding-left: 2.4rem !important;
  }
  .pr-md-6 {
    padding-right: 2.4rem !important;
  }
  .pt-md-6 {
    padding-top: 2.4rem !important;
  }
  .pb-md-6 {
    padding-bottom: 2.4rem !important;
  }
  .px-md-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-md-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-6 {
    padding: 2.4rem !important;
  }
  .pl-lg-6 {
    padding-left: 2.4rem !important;
  }
  .pr-lg-6 {
    padding-right: 2.4rem !important;
  }
  .pt-lg-6 {
    padding-top: 2.4rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 2.4rem !important;
  }
  .px-lg-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-lg-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-6 {
    padding: 2.4rem !important;
  }
  .pl-xl-6 {
    padding-left: 2.4rem !important;
  }
  .pr-xl-6 {
    padding-right: 2.4rem !important;
  }
  .pt-xl-6 {
    padding-top: 2.4rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 2.4rem !important;
  }
  .px-xl-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-xl-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-6 {
    padding: 2.4rem !important;
  }
  .pl-xxl-6 {
    padding-left: 2.4rem !important;
  }
  .pr-xxl-6 {
    padding-right: 2.4rem !important;
  }
  .pt-xxl-6 {
    padding-top: 2.4rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 2.4rem !important;
  }
  .px-xxl-6 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .py-xxl-6 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
/* padding 2rem !important */
.p-5 {
  padding: 2rem !important;
}

.pl-5 {
  padding-left: 2rem !important;
}

.pr-5 {
  padding-right: 2rem !important;
}

.pt-5 {
  padding-top: 2rem !important;
}

.pb-5 {
  padding-bottom: 2rem !important;
}

.px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-xs-5 {
  padding: 2rem !important;
}

.pl-xs-5 {
  padding-left: 2rem !important;
}

.pr-xs-5 {
  padding-right: 2rem !important;
}

.pt-xs-5 {
  padding-top: 2rem !important;
}

.pb-xs-5 {
  padding-bottom: 2rem !important;
}

.px-xs-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-xs-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 776px) {
  .p-sm-5 {
    padding: 2rem !important;
  }
  .pl-sm-5 {
    padding-left: 2rem !important;
  }
  .pr-sm-5 {
    padding-right: 2rem !important;
  }
  .pt-sm-5 {
    padding-top: 2rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2rem !important;
  }
  .px-sm-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-5 {
    padding: 2rem !important;
  }
  .pl-md-5 {
    padding-left: 2rem !important;
  }
  .pr-md-5 {
    padding-right: 2rem !important;
  }
  .pt-md-5 {
    padding-top: 2rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .px-md-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-5 {
    padding: 2rem !important;
  }
  .pl-lg-5 {
    padding-left: 2rem !important;
  }
  .pr-lg-5 {
    padding-right: 2rem !important;
  }
  .pt-lg-5 {
    padding-top: 2rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }
  .px-lg-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-5 {
    padding: 2rem !important;
  }
  .pl-xl-5 {
    padding-left: 2rem !important;
  }
  .pr-xl-5 {
    padding-right: 2rem !important;
  }
  .pt-xl-5 {
    padding-top: 2rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
  .px-xl-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-5 {
    padding: 2rem !important;
  }
  .pl-xxl-5 {
    padding-left: 2rem !important;
  }
  .pr-xxl-5 {
    padding-right: 2rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2rem !important;
  }
  .px-xxl-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .py-xxl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
/* padding 1.6rem !important */
.p-4 {
  padding: 1.6rem !important;
}

.pl-4 {
  padding-left: 1.6rem !important;
}

.pr-4 {
  padding-right: 1.6rem !important;
}

.pt-4 {
  padding-top: 1.6rem !important;
}

.pb-4 {
  padding-bottom: 1.6rem !important;
}

.px-4 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.py-4 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.p-xs-4 {
  padding: 1.6rem !important;
}

.pl-xs-4 {
  padding-left: 1.6rem !important;
}

.pr-xs-4 {
  padding-right: 1.6rem !important;
}

.pt-xs-4 {
  padding-top: 1.6rem !important;
}

.pb-xs-4 {
  padding-bottom: 1.6rem !important;
}

.px-xs-4 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

.py-xs-4 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

@media (min-width: 776px) {
  .p-sm-4 {
    padding: 1.6rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.6rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.6rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.6rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.6rem !important;
  }
  .px-sm-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-sm-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-4 {
    padding: 1.6rem !important;
  }
  .pl-md-4 {
    padding-left: 1.6rem !important;
  }
  .pr-md-4 {
    padding-right: 1.6rem !important;
  }
  .pt-md-4 {
    padding-top: 1.6rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.6rem !important;
  }
  .px-md-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-md-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-4 {
    padding: 1.6rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.6rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.6rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.6rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.6rem !important;
  }
  .px-lg-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-lg-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-4 {
    padding: 1.6rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.6rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.6rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.6rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.6rem !important;
  }
  .px-xl-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-xl-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-4 {
    padding: 1.6rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.6rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.6rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.6rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.6rem !important;
  }
  .px-xxl-4 {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
/* padding 1.2rem !important */
.p-3 {
  padding: 1.2rem !important;
}

.pl-3 {
  padding-left: 1.2rem !important;
}

.pr-3 {
  padding-right: 1.2rem !important;
}

.pt-3 {
  padding-top: 1.2rem !important;
}

.pb-3 {
  padding-bottom: 1.2rem !important;
}

.px-3 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.py-3 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.p-xs-3 {
  padding: 1.2rem !important;
}

.pl-xs-3 {
  padding-left: 1.2rem !important;
}

.pr-xs-3 {
  padding-right: 1.2rem !important;
}

.pt-xs-3 {
  padding-top: 1.2rem !important;
}

.pb-xs-3 {
  padding-bottom: 1.2rem !important;
}

.px-xs-3 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.py-xs-3 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

@media (min-width: 776px) {
  .p-sm-3 {
    padding: 1.2rem !important;
  }
  .pl-sm-3 {
    padding-left: 1.2rem !important;
  }
  .pr-sm-3 {
    padding-right: 1.2rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.2rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.2rem !important;
  }
  .px-sm-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-sm-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-3 {
    padding: 1.2rem !important;
  }
  .pl-md-3 {
    padding-left: 1.2rem !important;
  }
  .pr-md-3 {
    padding-right: 1.2rem !important;
  }
  .pt-md-3 {
    padding-top: 1.2rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.2rem !important;
  }
  .px-md-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-md-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-3 {
    padding: 1.2rem !important;
  }
  .pl-lg-3 {
    padding-left: 1.2rem !important;
  }
  .pr-lg-3 {
    padding-right: 1.2rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.2rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.2rem !important;
  }
  .px-lg-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-lg-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-3 {
    padding: 1.2rem !important;
  }
  .pl-xl-3 {
    padding-left: 1.2rem !important;
  }
  .pr-xl-3 {
    padding-right: 1.2rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.2rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.2rem !important;
  }
  .px-xl-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-xl-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-3 {
    padding: 1.2rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1.2rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1.2rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1.2rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1.2rem !important;
  }
  .px-xxl-3 {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .py-xxl-3 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
/* padding 0.8rem !important */
.p-2 {
  padding: 0.8rem !important;
}

.pl-2 {
  padding-left: 0.8rem !important;
}

.pr-2 {
  padding-right: 0.8rem !important;
}

.pt-2 {
  padding-top: 0.8rem !important;
}

.pb-2 {
  padding-bottom: 0.8rem !important;
}

.px-2 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.py-2 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.p-xs-2 {
  padding: 0.8rem !important;
}

.pl-xs-2 {
  padding-left: 0.8rem !important;
}

.pr-xs-2 {
  padding-right: 0.8rem !important;
}

.pt-xs-2 {
  padding-top: 0.8rem !important;
}

.pb-xs-2 {
  padding-bottom: 0.8rem !important;
}

.px-xs-2 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.py-xs-2 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

@media (min-width: 776px) {
  .p-sm-2 {
    padding: 0.8rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.8rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.8rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.8rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.8rem !important;
  }
  .px-sm-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-sm-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-2 {
    padding: 0.8rem !important;
  }
  .pl-md-2 {
    padding-left: 0.8rem !important;
  }
  .pr-md-2 {
    padding-right: 0.8rem !important;
  }
  .pt-md-2 {
    padding-top: 0.8rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.8rem !important;
  }
  .px-md-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-md-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-2 {
    padding: 0.8rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.8rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.8rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.8rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.8rem !important;
  }
  .px-lg-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-lg-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-2 {
    padding: 0.8rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.8rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.8rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.8rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.8rem !important;
  }
  .px-xl-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-xl-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-2 {
    padding: 0.8rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.8rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.8rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.8rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.8rem !important;
  }
  .px-xxl-2 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
/* padding 0.4rem !important */
.p-1 {
  padding: 0.4rem !important;
}

.pl-1 {
  padding-left: 0.4rem !important;
}

.pr-1 {
  padding-right: 0.4rem !important;
}

.pt-1 {
  padding-top: 0.4rem !important;
}

.pb-1 {
  padding-bottom: 0.4rem !important;
}

.px-1 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.py-1 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

.p-xs-1 {
  padding: 0.4rem !important;
}

.pl-xs-1 {
  padding-left: 0.4rem !important;
}

.pr-xs-1 {
  padding-right: 0.4rem !important;
}

.pt-xs-1 {
  padding-top: 0.4rem !important;
}

.pb-xs-1 {
  padding-bottom: 0.4rem !important;
}

.px-xs-1 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.py-xs-1 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

@media (min-width: 776px) {
  .p-sm-1 {
    padding: 0.4rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.4rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.4rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.4rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.4rem !important;
  }
  .px-sm-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-sm-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-1 {
    padding: 0.4rem !important;
  }
  .pl-md-1 {
    padding-left: 0.4rem !important;
  }
  .pr-md-1 {
    padding-right: 0.4rem !important;
  }
  .pt-md-1 {
    padding-top: 0.4rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.4rem !important;
  }
  .px-md-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-md-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-1 {
    padding: 0.4rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.4rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.4rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.4rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.4rem !important;
  }
  .px-lg-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-lg-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-1 {
    padding: 0.4rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.4rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.4rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.4rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.4rem !important;
  }
  .px-xl-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-xl-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-1 {
    padding: 0.4rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.4rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.4rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.4rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.4rem !important;
  }
  .px-xxl-1 {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
/* padding 0rem !important */
.p-0 {
  padding: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.p-xs-0 {
  padding: 0rem !important;
}

.pl-xs-0 {
  padding-left: 0rem !important;
}

.pr-xs-0 {
  padding-right: 0rem !important;
}

.pt-xs-0 {
  padding-top: 0rem !important;
}

.pb-xs-0 {
  padding-bottom: 0rem !important;
}

.px-xs-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-xs-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

@media (min-width: 776px) {
  .p-sm-0 {
    padding: 0rem !important;
  }
  .pl-sm-0 {
    padding-left: 0rem !important;
  }
  .pr-sm-0 {
    padding-right: 0rem !important;
  }
  .pt-sm-0 {
    padding-top: 0rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .px-sm-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-sm-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 968px) {
  .p-md-0 {
    padding: 0rem !important;
  }
  .pl-md-0 {
    padding-left: 0rem !important;
  }
  .pr-md-0 {
    padding-right: 0rem !important;
  }
  .pt-md-0 {
    padding-top: 0rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .px-md-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-md-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1192px) {
  .p-lg-0 {
    padding: 0rem !important;
  }
  .pl-lg-0 {
    padding-left: 0rem !important;
  }
  .pr-lg-0 {
    padding-right: 0rem !important;
  }
  .pt-lg-0 {
    padding-top: 0rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }
  .px-lg-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-lg-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xl-0 {
    padding: 0rem !important;
  }
  .pl-xl-0 {
    padding-left: 0rem !important;
  }
  .pr-xl-0 {
    padding-right: 0rem !important;
  }
  .pt-xl-0 {
    padding-top: 0rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0rem !important;
  }
  .px-xl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-xl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (min-width: 1600px) {
  .p-xxl-0 {
    padding: 0rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .px-xxl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .py-xxl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
  margin-left: -0.8rem;
}
.grid > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.grid .col {
  flex: 0 0 0;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

/* width 100 */
.col-12 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 100%;
}

.col-xs-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-12 {
  flex: 0 0 auto;
  width: 100% !important;
}

.col-sm-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
.col-md-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
.col-lg-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
.col-xl-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
.col-xxl-12 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
/* width 91.6666666667 */
.col-11 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 91.6666666667%;
}

.col-xs-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-11 {
  flex: 0 0 auto;
  width: 91.6666666667% !important;
}

.col-sm-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667% !important;
  }
}
.col-md-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667% !important;
  }
}
.col-lg-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667% !important;
  }
}
.col-xl-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667% !important;
  }
}
.col-xxl-11 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667% !important;
  }
}
/* width 83.3333333333 */
.col-10 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 83.3333333333%;
}

.col-xs-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-10 {
  flex: 0 0 auto;
  width: 83.3333333333% !important;
}

.col-sm-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333% !important;
  }
}
.col-md-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333% !important;
  }
}
.col-lg-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333% !important;
  }
}
.col-xl-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333% !important;
  }
}
.col-xxl-10 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333% !important;
  }
}
/* width 75 */
.col-9 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 75%;
}

.col-xs-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-9 {
  flex: 0 0 auto;
  width: 75% !important;
}

.col-sm-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75% !important;
  }
}
.col-md-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-9 {
    flex: 0 0 auto;
    width: 75% !important;
  }
}
.col-lg-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75% !important;
  }
}
.col-xl-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75% !important;
  }
}
.col-xxl-9 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75% !important;
  }
}
/* width 66.6666666667 */
.col-8 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 66.6666666667%;
}

.col-xs-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-8 {
  flex: 0 0 auto;
  width: 66.6666666667% !important;
}

.col-sm-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667% !important;
  }
}
.col-md-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667% !important;
  }
}
.col-lg-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667% !important;
  }
}
.col-xl-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667% !important;
  }
}
.col-xxl-8 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667% !important;
  }
}
/* width 58.3333333333 */
.col-7 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 58.3333333333%;
}

.col-xs-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-7 {
  flex: 0 0 auto;
  width: 58.3333333333% !important;
}

.col-sm-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333% !important;
  }
}
.col-md-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333% !important;
  }
}
.col-lg-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333% !important;
  }
}
.col-xl-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333% !important;
  }
}
.col-xxl-7 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333% !important;
  }
}
/* width 50 */
.col-6 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 50%;
}

.col-xs-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-6 {
  flex: 0 0 auto;
  width: 50% !important;
}

.col-sm-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
.col-md-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
.col-lg-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
.col-xl-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
.col-xxl-6 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50% !important;
  }
}
/* width 41.6666666667 */
.col-5 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 41.6666666667%;
}

.col-xs-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-5 {
  flex: 0 0 auto;
  width: 41.6666666667% !important;
}

.col-sm-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667% !important;
  }
}
.col-md-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667% !important;
  }
}
.col-lg-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667% !important;
  }
}
.col-xl-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667% !important;
  }
}
.col-xxl-5 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667% !important;
  }
}
/* width 33.3333333333 */
.col-4 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 33.3333333333%;
}

.col-xs-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-4 {
  flex: 0 0 auto;
  width: 33.3333333333% !important;
}

.col-sm-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333% !important;
  }
}
.col-md-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333% !important;
  }
}
.col-lg-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333% !important;
  }
}
.col-xl-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333% !important;
  }
}
.col-xxl-4 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333% !important;
  }
}
/* width 25 */
.col-3 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 25%;
}

.col-xs-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-3 {
  flex: 0 0 auto;
  width: 25% !important;
}

.col-sm-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
.col-md-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
.col-lg-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
.col-xl-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
.col-xxl-3 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
/* width 16.6666666667 */
.col-2 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 16.6666666667%;
}

.col-xs-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-2 {
  flex: 0 0 auto;
  width: 16.6666666667% !important;
}

.col-sm-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667% !important;
  }
}
.col-md-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667% !important;
  }
}
.col-lg-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667% !important;
  }
}
.col-xl-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667% !important;
  }
}
.col-xxl-2 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667% !important;
  }
}
/* width 8.3333333333 */
.col-1 {
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  width: 8.3333333333%;
}

.col-xs-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.col-xs-1 {
  flex: 0 0 auto;
  width: 8.3333333333% !important;
}

.col-sm-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 776px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333% !important;
  }
}
.col-md-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 968px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333% !important;
  }
}
.col-lg-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1192px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333% !important;
  }
}
.col-xl-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1400px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333% !important;
  }
}
.col-xxl-1 {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

@media (min-width: 1600px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333% !important;
  }
}
.d-xs-none {
  display: none;
}

.d-xs-block {
  display: block;
}

.d-xs-flex {
  display: flex;
}

@media (min-width: 776px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
}
@media (min-width: 968px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
}
@media (min-width: 1192px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-flex {
    display: flex;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (max-width: 1191.98px) {
  .logo {
    margin-right: auto;
    margin-left: 0.8rem;
    max-width: 38%;
  }
}
.logo svg {
  max-width: 26rem;
  width: 100%;
  display: block;
  height: auto;
  padding: 0.8rem 0;
}
@media (max-width: 1191.98px) {
  .logo svg {
    max-width: 100%;
    width: auto;
    height: 5rem;
  }
}

@media (max-width: 1191.98px) {
  .menu {
    transition: transform 0.3s ease-in-out;
  }
  .menu.is-selected {
    transform: translateX(-100vw);
  }
}
@media (min-width: 1192px) {
  .menu__show-mobile {
    display: none;
  }
}
.menu__list {
  margin: 0;
  list-style: none;
  display: inline-flex;
  padding-left: 0;
  width: 100%;
}
@media (max-width: 1191.98px) {
  .menu__list {
    flex-flow: column;
  }
}
@media (min-width: 1192px) {
  .menu__list {
    position: relative;
  }
}
.menu__list > li {
  width: 100%;
}
.menu__list > li::after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1192px) {
  .menu__list > li {
    position: relative;
  }
  .menu__list > li:not(:last-child) {
    border-right: 1px solid var(--color-border);
  }
}
@media (max-width: 1191.98px) {
  .menu__list > li {
    border-bottom: 1px solid var(--color-border);
  }
  .menu__list > li:first-child {
    border-top: 1px solid var(--color-border);
  }
}
.menu__list > li a {
  display: flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1.6rem;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
@media (min-width: 1192px) {
  .menu__list > li a {
    justify-content: center;
  }
}
.menu__list > li a:hover {
  background-color: rgba(255, 153, 201, 0.1);
}
.menu__list > li a:hover .icon--background::after {
  color: #bbe5ed;
}
.menu__list > li a span.icon {
  position: relative;
  z-index: 1;
}
.menu__list > li a span.icon::after {
  transition: color 0.3s ease-in-out;
  font-size: 2.8rem;
}
.menu__list > li a span.icon--background {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
  position: absolute;
  left: 0;
  z-index: -1;
}
.menu__list > li a span.icon--background::after {
  color: var(--color-primary-base);
}
@media (max-width: 1191.98px) {
  .menu__list > li a .icon--expand-more {
    margin-left: auto;
    transform: rotate(-90deg);
  }
}
@media (min-width: 1192px) {
  .menu__list > li a .icon--expand-more.icon--mobile {
    display: none;
  }
}
@media (min-width: 1192px) {
  .menu__list > li:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .menu__list > li:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
.menu__sub-list {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  opacity: 0;
  visibility: hidden;
  padding-left: 0;
}
@media (min-width: 1192px) {
  .menu__sub-list {
    top: calc(100% + 0.1rem);
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.1) 0 0 0.8rem 0;
    border-radius: 0 0 0.4rem 0.4rem;
  }
}
.menu__sub-list.is-visible {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  transform: translateX(100vw);
}
.menu__sub-list li {
  border: 0;
  list-style: none;
}
.menu__sub-list li:not(:last-child) {
  border-bottom: 0.1rem solid var(--color-neutral-light);
}
.menu__sub-list li a {
  justify-content: flex-start;
}
@media (min-width: 1192px) {
  .menu__sub-list li a {
    padding: 0.8rem;
  }
}
.menu__sub-list li a span {
  width: 100%;
}
.menu__sub-list li a span .icon {
  transform: rotate(-90deg);
}

.empty-state {
  transition: all 0.3s ease-in-out;
}

.message {
  padding: clamp(0.8rem, 2.5vw, 1.8rem);
  border-radius: 0.8rem;
  margin: 1.6rem 0;
  display: flex;
  align-items: flex-start;
}
.message .material-symbols-outlined {
  margin-right: 0.4rem;
}
.message--notice {
  background-color: var(--color-info-lightest);
  border: 1px solid var(--color-info-light);
}
.message--notice .material-symbols-outlined {
  color: var(--color-info-light);
}
.message--success {
  background-color: var(--color-success-lightest);
  border: 1px solid var(--color-success-light);
}
.message--success .material-symbols-outlined {
  color: var(--color-success-light);
}
.message--error {
  background-color: var(--color-danger-lightest);
  border: 1px solid var(--color-danger-light);
}
.message--error ul {
  padding: 0;
  margin: 0;
}
.message--error li {
  list-style: none;
}
.message--error .material-symbols-outlined {
  color: var(--color-danger-light);
}
.message a {
  margin: 0 0.4rem;
}
.message .button {
  display: none;
}

.toast {
  position: fixed;
  top: 0.8rem;
  right: 0.8rem;
  transform: translateX(100vw);
  transition: transform 0.3s ease-in-out;
  background-color: var(--color-neutral-light);
  max-width: 30rem;
  width: 100%;
  font-size: 1.3rem;
  z-index: 999;
  padding: 1.8rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: flex-start;
}
.toast .icon::after {
  font-size: 1.8rem;
  margin-right: 0.4rem;
}
.toast.is-visible {
  transform: translateX(0);
}
.toast--success {
  background-color: var(--color-success-lightest);
  border: 0.2rem solid var(--color-success-light);
}
.toast--error {
  background-color: var(--color-danger-lightest);
  border: 0.2rem solid var(--color-danger-light);
}
.toast--info {
  background-color: var(--color-info-lightest);
  border: 0.2rem solid var(--color-info-light);
}

form label {
  display: block;
  font-size: 1.4rem;
}
form input[type=text],
form input[type=tel],
form input[type=email],
form input[type=password],
form input[type=number] {
  width: 100%;
}
form input[name=iban] {
  text-transform: uppercase;
}
form .form-field {
  margin-bottom: 0.8rem;
}
form .form-field--success input {
  border: 0.1rem solid var(--color-success-base);
}
form .form-field--danger {
  color: var(--color-danger-base);
}
form .form-field--danger input {
  border: 0.1rem solid var(--color-danger-base);
}
form select {
  width: 100%;
}

input {
  background: var(--color-neutral-light);
  border: 0.1rem solid var(--color-border);
  padding: 0.8rem;
  border-radius: 0.4rem;
}
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 0.8rem;
}
input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -2rem;
  width: 6px;
  height: 14px;
  border: solid var(--color-primary-base);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
input + label {
  position: relative;
}

textarea,
select {
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
}

textarea {
  background: var(--color-neutral-light);
  width: 100%;
}

.archive-products {
  position: relative;
}
@media (max-width: 775.98px) {
  .archive-products__toggle-filters {
    justify-content: center;
    margin: 0.8rem 0 1.6rem;
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
  }
  .archive-products__toggle-filters .icon::after {
    font-size: 2rem;
  }
}
@media (min-width: 776px) {
  .archive-products__toggle-filters {
    margin-right: 0.8rem;
  }
}
.archive-products__top-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.archive-products__count {
  margin-right: auto;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.banner {
  position: relative;
  height: clamp(22rem, 56vw, 60rem);
  overflow: hidden;
  display: block;
}
.banner__title {
  font-size: clamp(4.4rem, 7vw, 16rem);
  text-decoration: none;
  line-height: 1;
  text-shadow: 0.1rem 0.2rem 0.4rem rgba(0, 0, 0, 0.6);
  color: white;
  margin-bottom: 3.2rem;
}
.banner__content {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  margin: 0;
}
.banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: inherit;
}
@media (min-width: 776px) {
  .banner img {
    width: 100%;
    height: auto;
  }
}

.categories .category__link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}
.categories .category__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-in-out;
}
.categories .category__link:hover::after {
  background-color: rgba(255, 153, 201, 0.2);
}
.categories .category__image {
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
}
.categories .category__name {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  padding-bottom: 0.8rem;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 767px) {
  .categories-nav {
    overflow-x: auto;
  }
}
@media (max-width: 767px) {
  .categories-nav__menu {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (min-width: 768px) {
  .categories-nav__menu {
    flex-wrap: wrap;
  }
}
.categories-nav__link {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.categories-nav__link:hover {
  color: var(--color-primary-base);
}
.categories-nav__title {
  border-bottom: 0.1rem solid var(--color-border);
  padding-bottom: 0.4rem;
  font-size: 1.8rem;
}
.categories-nav__menu-item {
  list-style: none;
}
.categories-nav__menu-item--selected {
  font-weight: bold;
  background: rgba(247, 141, 167, 0.1450980392) !important;
}

.faq {
  margin-top: 1.2rem;
}
.faq__item {
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.8rem;
  border-right: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid var(--color-border);
  transition: background-color 0.3s ease-in-out;
}
.faq__item:hover {
  background-color: rgba(255, 153, 201, 0.1);
}
.faq__item h3 {
  margin: 0;
}
.faq__item .icon {
  transition: transform 0.3s ease-in-out;
  transform: rotate(-90deg);
}
.faq__item:first-of-type {
  border-top: 0.1rem solid var(--color-border);
}
.faq__item.is-active {
  font-weight: bold;
}

.live-search {
  position: relative;
  width: 100%;
}
@media (min-width: 1192px) {
  .live-search {
    width: calc(100% - 75rem);
    margin-right: auto;
    margin-left: auto;
  }
}
.live-search__input {
  padding: 1.2rem;
  width: 100%;
}
.live-search__results {
  position: absolute;
  top: 100%;
  border: 0.1rem solid var(--color-border);
  border-radius: 0.4rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  min-width: 32rem;
  z-index: 9;
  background-color: white;
  display: flex;
  flex-flow: wrap;
}
.live-search__results h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  padding: 0.8rem;
  background: var(--color-neutral-light);
  border-bottom: 0.1rem solid var(--color-border);
  margin: 0;
}
.live-search__results h3:not(:first-of-type) {
  border-top: 0.1rem solid var(--color-border);
}
.live-search__results ul {
  padding: 0;
  margin: 0;
}
.live-search__results ul li {
  list-style: none;
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 153, 201, 0);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.live-search__results ul li:hover {
  background-color: rgba(255, 153, 201, 0.1);
  color: var(--color-primary-base);
}
.live-search__results ul li a {
  text-decoration: none;
  padding: 0.8rem;
  display: inline-flex;
  width: 100%;
  color: var(--color-text);
}
.live-search__results > div {
  width: 100%;
}
.live-search__results--columns {
  width: 100%;
}
.live-search__results--columns > div {
  width: 100%;
}
@media (min-width: 776px) {
  .live-search__results--columns > div {
    width: 50%;
  }
  .live-search__results--columns > div:nth-child(odd) {
    border-right: 0.1rem solid var(--color-border);
  }
}
@media (min-width: 1192px) {
  .live-search__results--columns > div {
    width: 25%;
  }
  .live-search__results--columns > div:not(:last-child) {
    border-right: 0.1rem solid var(--color-border);
  }
}
.live-search__products a {
  display: flex;
}
.live-search__products .title {
  margin-bottom: 0.4rem;
  display: block;
  line-height: 1;
  font-size: 1.2rem;
}
.live-search__products .price,
.live-search__products .regular-price {
  display: inline-block;
  color: var(--color-text);
  font-size: 1.2rem;
}
.live-search__products .regular-price {
  text-decoration: line-through;
  opacity: 0.8;
}
.live-search__products img {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  margin-right: 0.4rem;
}

.search-results__content input:not(.live-search__input) {
  width: 32rem;
}
.search-results__content__container {
  position: relative;
}
.search-results__content ul {
  padding-left: 0;
}
.search-results__content ul li {
  list-style: none;
}
.search-results__content ul li a {
  text-decoration: none;
}
.search-results__content > div:not(.search__products) ul {
  padding-left: 0;
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}
@media (min-width: 968px) {
  .search-results__content > div:not(.search__products) ul.two-columns {
    -moz-columns: 2;
         columns: 2;
  }
}
.search-results__content > div:not(.search__products) ul li {
  margin: 0.4rem;
}
.search-results__content > div:not(.search__products) ul li a {
  display: block;
  padding: 0.4rem;
  color: var(--color-text);
}
.search-results__content > div:not(.search__products) ul li a:hover {
  background-color: rgba(255, 153, 201, 0.1);
}

.loader {
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 153, 201, 0.1);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  z-index: 9;
  transition: all 0.3s ease-in-out;
  color: var(--color-primary);
}
.loader--page {
  position: fixed;
}
.loader--card {
  position: absolute;
}
.loader.is-visible {
  opacity: 1;
  visibility: visible;
}
.loader__body {
  position: sticky;
  top: 50%;
  background: currentcolor;
  animation: loader-15 1s ease-in-out infinite;
  animation-delay: 0.4s;
  width: 0.25em;
  height: 0.5em;
  margin: auto;
}
.loader__body:after, .loader__body:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background: inherit;
  animation: inherit;
}
.loader__body:before {
  right: 0.5em;
  animation-delay: 0.2s;
}
.loader__body:after {
  left: 0.5em;
  animation-delay: 0.6s;
}

.products .product .loader__body {
  position: absolute;
  left: 50%;
}

@keyframes loader-15 {
  0%, 100% {
    box-shadow: 0 0 0 currentcolor, 0 0 0 currentcolor;
  }
  50% {
    box-shadow: 0 -0.25em 0 currentcolor, 0 0.25em 0 currentcolor;
  }
}
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(65, 74, 80, 0.3);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__dialog {
  box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1882352941);
  background-color: var(--color-neutral-lightest);
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 30rem;
  max-width: 100rem;
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 0.8rem;
}
@media (min-width: 968px) {
  .modal__dialog {
    width: auto;
    min-width: 100rem;
  }
}
.modal__content {
  display: flex;
  flex-flow: column;
}
.modal__header {
  padding: 1.6rem;
  border-bottom: 0.1rem solid var(--color-border);
}
.modal__header h3 {
  margin: 0;
}
.modal__body {
  padding: 1.6rem;
  max-height: 60vh;
  overflow: auto;
}
.modal__footer {
  padding: 1.6rem;
  border-top: 0.1rem solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}
.modal__footer .button + .button {
  margin-left: 0.8rem;
}

.seller-banner {
  background-color: rgba(247, 141, 167, 0.2);
  padding: 2.4rem;
  border-radius: 0.8rem;
}

.social-icons {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
}
.social-icons__icon {
  background: var(--color-text);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 3rem;
  height: 3.2rem;
  width: 3rem;
}
.social-icons__icon:hover {
  background-color: var(--color-primary-base);
}
.social-icons--facebook {
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhYiIgZGF0YS1pY29uPSJmYWNlYm9vay1zcXVhcmUiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1mYWNlYm9vay1zcXVhcmUgZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik00MDAgMzJINDhBNDggNDggMCAwIDAgMCA4MHYzNTJhNDggNDggMCAwIDAgNDggNDhoMTM3LjI1VjMyNy42OWgtNjNWMjU2aDYzdi01NC42NGMwLTYyLjE1IDM3LTk2LjQ4IDkzLjY3LTk2LjQ4IDI3LjE0IDAgNTUuNTIgNC44NCA1NS41MiA0Ljg0djYxaC0zMS4yN2MtMzAuODEgMC00MC40MiAxOS4xMi00MC40MiAzOC43M1YyNTZoNjguNzhsLTExIDcxLjY5aC01Ny43OFY0ODBINDAwYTQ4IDQ4IDAgMCAwIDQ4LTQ4VjgwYTQ4IDQ4IDAgMCAwLTQ4LTQ4eiI+PC9wYXRoPjwvc3ZnPg==);
          mask-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhYiIgZGF0YS1pY29uPSJmYWNlYm9vay1zcXVhcmUiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1mYWNlYm9vay1zcXVhcmUgZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik00MDAgMzJINDhBNDggNDggMCAwIDAgMCA4MHYzNTJhNDggNDggMCAwIDAgNDggNDhoMTM3LjI1VjMyNy42OWgtNjNWMjU2aDYzdi01NC42NGMwLTYyLjE1IDM3LTk2LjQ4IDkzLjY3LTk2LjQ4IDI3LjE0IDAgNTUuNTIgNC44NCA1NS41MiA0Ljg0djYxaC0zMS4yN2MtMzAuODEgMC00MC40MiAxOS4xMi00MC40MiAzOC43M1YyNTZoNjguNzhsLTExIDcxLjY5aC01Ny43OFY0ODBINDAwYTQ4IDQ4IDAgMCAwIDQ4LTQ4VjgwYTQ4IDQ4IDAgMCAwLTQ4LTQ4eiI+PC9wYXRoPjwvc3ZnPg==);
  margin-right: 0.8rem;
}
.social-icons--instagram {
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhYiIgZGF0YS1pY29uPSJpbnN0YWdyYW0iIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1pbnN0YWdyYW0gZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yMjQuMSAxNDFjLTYzLjYgMC0xMTQuOSA1MS4zLTExNC45IDExNC45czUxLjMgMTE0LjkgMTE0LjkgMTE0LjlTMzM5IDMxOS41IDMzOSAyNTUuOSAyODcuNyAxNDEgMjI0LjEgMTQxem0wIDE4OS42Yy00MS4xIDAtNzQuNy0zMy41LTc0LjctNzQuN3MzMy41LTc0LjcgNzQuNy03NC43IDc0LjcgMzMuNSA3NC43IDc0LjctMzMuNiA3NC43LTc0LjcgNzQuN3ptMTQ2LjQtMTk0LjNjMCAxNC45LTEyIDI2LjgtMjYuOCAyNi44LTE0LjkgMC0yNi44LTEyLTI2LjgtMjYuOHMxMi0yNi44IDI2LjgtMjYuOCAyNi44IDEyIDI2LjggMjYuOHptNzYuMSAyNy4yYy0xLjctMzUuOS05LjktNjcuNy0zNi4yLTkzLjktMjYuMi0yNi4yLTU4LTM0LjQtOTMuOS0zNi4yLTM3LTIuMS0xNDcuOS0yLjEtMTg0LjkgMC0zNS44IDEuNy02Ny42IDkuOS05My45IDM2LjFzLTM0LjQgNTgtMzYuMiA5My45Yy0yLjEgMzctMi4xIDE0Ny45IDAgMTg0LjkgMS43IDM1LjkgOS45IDY3LjcgMzYuMiA5My45czU4IDM0LjQgOTMuOSAzNi4yYzM3IDIuMSAxNDcuOSAyLjEgMTg0LjkgMCAzNS45LTEuNyA2Ny43LTkuOSA5My45LTM2LjIgMjYuMi0yNi4yIDM0LjQtNTggMzYuMi05My45IDIuMS0zNyAyLjEtMTQ3LjggMC0xODQuOHpNMzk4LjggMzg4Yy03LjggMTkuNi0yMi45IDM0LjctNDIuNiA0Mi42LTI5LjUgMTEuNy05OS41IDktMTMyLjEgOXMtMTAyLjcgMi42LTEzMi4xLTljLTE5LjYtNy44LTM0LjctMjIuOS00Mi42LTQyLjYtMTEuNy0yOS41LTktOTkuNS05LTEzMi4xcy0yLjYtMTAyLjcgOS0xMzIuMWM3LjgtMTkuNiAyMi45LTM0LjcgNDIuNi00Mi42IDI5LjUtMTEuNyA5OS41LTkgMTMyLjEtOXMxMDIuNy0yLjYgMTMyLjEgOWMxOS42IDcuOCAzNC43IDIyLjkgNDIuNiA0Mi42IDExLjcgMjkuNSA5IDk5LjUgOSAxMzIuMXMyLjcgMTAyLjctOSAxMzIuMXoiPjwvcGF0aD48L3N2Zz4=);
          mask-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhYiIgZGF0YS1pY29uPSJpbnN0YWdyYW0iIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1pbnN0YWdyYW0gZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yMjQuMSAxNDFjLTYzLjYgMC0xMTQuOSA1MS4zLTExNC45IDExNC45czUxLjMgMTE0LjkgMTE0LjkgMTE0LjlTMzM5IDMxOS41IDMzOSAyNTUuOSAyODcuNyAxNDEgMjI0LjEgMTQxem0wIDE4OS42Yy00MS4xIDAtNzQuNy0zMy41LTc0LjctNzQuN3MzMy41LTc0LjcgNzQuNy03NC43IDc0LjcgMzMuNSA3NC43IDc0LjctMzMuNiA3NC43LTc0LjcgNzQuN3ptMTQ2LjQtMTk0LjNjMCAxNC45LTEyIDI2LjgtMjYuOCAyNi44LTE0LjkgMC0yNi44LTEyLTI2LjgtMjYuOHMxMi0yNi44IDI2LjgtMjYuOCAyNi44IDEyIDI2LjggMjYuOHptNzYuMSAyNy4yYy0xLjctMzUuOS05LjktNjcuNy0zNi4yLTkzLjktMjYuMi0yNi4yLTU4LTM0LjQtOTMuOS0zNi4yLTM3LTIuMS0xNDcuOS0yLjEtMTg0LjkgMC0zNS44IDEuNy02Ny42IDkuOS05My45IDM2LjFzLTM0LjQgNTgtMzYuMiA5My45Yy0yLjEgMzctMi4xIDE0Ny45IDAgMTg0LjkgMS43IDM1LjkgOS45IDY3LjcgMzYuMiA5My45czU4IDM0LjQgOTMuOSAzNi4yYzM3IDIuMSAxNDcuOSAyLjEgMTg0LjkgMCAzNS45LTEuNyA2Ny43LTkuOSA5My45LTM2LjIgMjYuMi0yNi4yIDM0LjQtNTggMzYuMi05My45IDIuMS0zNyAyLjEtMTQ3LjggMC0xODQuOHpNMzk4LjggMzg4Yy03LjggMTkuNi0yMi45IDM0LjctNDIuNiA0Mi42LTI5LjUgMTEuNy05OS41IDktMTMyLjEgOXMtMTAyLjcgMi42LTEzMi4xLTljLTE5LjYtNy44LTM0LjctMjIuOS00Mi42LTQyLjYtMTEuNy0yOS41LTktOTkuNS05LTEzMi4xcy0yLjYtMTAyLjcgOS0xMzIuMWM3LjgtMTkuNiAyMi45LTM0LjcgNDIuNi00Mi42IDI5LjUtMTEuNyA5OS41LTkgMTMyLjEtOXMxMDIuNy0yLjYgMTMyLjEgOWMxOS42IDcuOCAzNC43IDIyLjkgNDIuNiA0Mi42IDExLjcgMjkuNSA5IDk5LjUgOSAxMzIuMXMyLjcgMTAyLjctOSAxMzIuMXoiPjwvcGF0aD48L3N2Zz4=);
}
.social-icons__buttons {
  margin-bottom: 0.8rem;
}
.social-icons__buttons a {
  border-radius: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  color: white;
  padding: 0.8rem 1.6rem;
  align-items: center;
  margin: 0.4rem 0;
  transition: background-color 0.3s ease-in-out;
}
.social-icons__buttons a:hover {
  background-color: var(--color-primary);
}
.social-icons__buttons a img {
  margin-right: 0.4rem;
}
.social-icons__buttons--whatsapp {
  background-color: #25D366;
}
.social-icons__buttons--messenger {
  background-color: #006AFF;
}

.card {
  background-color: white;
  border-radius: 0.8rem;
  box-shadow: rgba(99, 99, 99, 0.1) 0 0 0.8rem 0;
  padding: clamp(1.6rem, 2vw, 3.6rem);
}
.card--equals-height {
  height: 100%;
}

.table.overflow-y {
  overflow-y: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table th:last-child,
table td:last-child {
  text-align: right;
}
table.scroll {
  min-width: 80rem;
  width: 100%;
}
@media (min-width: 776px) {
  table.scroll .sticky {
    position: sticky;
    background-color: white;
    left: 0;
  }
}
@media (max-width: 1399.98px) {
  table.boxed thead {
    display: none;
  }
  table.boxed tbody {
    display: flex;
    flex-flow: column;
  }
  table.boxed tbody tr {
    display: flex;
    flex-flow: column;
  }
  table.boxed tbody tr td {
    padding: 0.8rem 0;
  }
  table.boxed tbody tr td .head__title {
    display: block;
    font-weight: bold;
  }
  table.boxed tbody tr td:not(:last-child) {
    border: 0;
  }
  table.boxed th:last-child,
  table.boxed td:last-child {
    text-align: left;
  }
}
table th,
table td {
  text-align: left;
  font-size: 1.3rem;
  border-bottom: 0.1rem solid var(--color-border);
  padding: 0.8rem 0;
}
table th img,
table td img {
  max-width: 4rem;
  max-height: 4rem;
}
table th .head__title,
table td .head__title {
  display: none;
}
table th.empty-state,
table td.empty-state {
  text-align: center;
}
table th.empty-state .material-symbols-outlined,
table td.empty-state .material-symbols-outlined {
  display: block;
  font-size: 10rem;
  color: var(--color-neutral-base);
}

.winkelwagen .woocommerce-cart-form table.shop_table td {
  border-bottom: 0;
}
.winkelwagen .woocommerce-cart-form table.shop_table td.product-name a {
  color: var(--color-text);
}

.tabs {
  display: flex;
  border-bottom: 0.1rem solid var(--color-border);
  margin-bottom: 1.6rem;
  overflow-x: auto;
}
.tabs__tab {
  cursor: pointer;
  padding: 0.8rem;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease-in-out;
  background: var(--color-neutral-light);
  margin-right: 0.4rem;
}
.tabs__tab:hover {
  border-bottom: 0.4rem solid rgba(255, 153, 201, 0.2);
}
.tabs__tab--active {
  background-color: transparent;
  border-bottom: 0.4rem solid var(--color-primary-base);
}
.tabs__tab-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  top: -9999999;
  left: -999999;
}
.tabs__tab-content--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tooltip {
  position: relative;
}
.tooltip__content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 27rem;
  background-color: var(--color-text);
  color: white;
  padding: 0.8rem;
  border-radius: 0.8rem;
  transition: opacity 0.3s ease-in-out;
}
.tooltip__content.is-visible {
  opacity: 1;
  visibility: visible;
}

.woocommerce-cart .coupon {
  padding: 2.2rem 0;
  display: none;
}
.woocommerce-cart .coupon__form {
  display: flex;
}
.woocommerce-cart .coupon.is-visible {
  display: block;
}

.filter {
  position: sticky;
  top: 1.6rem;
  padding: 1.6rem;
}
@media (max-width: 1191.98px) {
  .filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 32rem;
    bottom: 0;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100vw);
    z-index: 10;
  }
  .filter.is-visible {
    transform: translateX(0);
  }
}
.filter__inner {
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 2rem;
  max-height: calc(100% - 12.7rem);
}
@media (max-width: 1191.98px) {
  .filter__button-wrapper {
    background-color: white;
    padding: 1.6rem 0 3rem;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
@media screen and (min-width: 1192px) and (max-height: 992px) {
  .filter {
    max-height: 90vh;
  }
  .filter__inner {
    max-height: 80vh;
  }
}
@media screen and (min-width: 1192px) and (max-height: 768px) {
  .filter__inner {
    max-height: 68vh;
  }
}
.filter ul {
  padding-left: 0;
}
.filter ul li {
  position: relative;
  display: flex;
  list-style: none;
  padding-bottom: 0.4rem;
  align-items: flex-start;
}
.filter ul li input[type=checkbox] {
  margin-right: 0.8rem;
}
.filter ul li * {
  cursor: pointer;
}
.filter ul li label {
  line-height: 1.76;
  font-size: 1.4rem;
}
.filter__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 0.1rem solid var(--color-border);
  padding-bottom: 0.4rem;
  font-size: 1.8rem;
}
.filter__title small {
  font-size: 1.2rem;
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.8rem;
  border-radius: 0.8rem;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.filter__title small.is-visible {
  opacity: 1;
  visibility: visible;
}
.filter__title .icon {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0);
}
.filter__list {
  -moz-columns: 2;
       columns: 2;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease-in-out;
}
.filter__block.is-visible .filter__list {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.filter__block.is-visible .filter__title .icon {
  transform: rotate(180deg);
}

.pagination {
  margin: 2.4rem 0;
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
}
.pagination__list-item {
  cursor: pointer;
  margin: 0.4rem;
  list-style: none;
  background-color: rgba(187, 229, 237, 0.2509803922);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__list-item.active {
  background-color: #bbe5ed;
}

.products .grid .product {
  height: 100%;
  background-color: white;
  position: relative;
  border-radius: 0.8rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0 0 0.8rem 0;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.products .grid .product__image-wrapper {
  height: 100%;
  position: relative;
  padding: 1.2rem;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-neutral-light);
}
.products .grid .product__image-wrapper a {
  background-color: var(--color-neutral-base);
  min-height: 24rem;
}
.products .grid .product__info {
  padding: 1.2rem;
}
.products .grid .product__image {
  width: auto;
  height: auto;
  border-radius: 0.4rem;
  transition: all 0.3s ease-in-out;
  max-height: 32rem;
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.products .grid .product * {
  text-decoration: none;
}
.products .grid .product__available, .products .grid .product__sold {
  position: relative;
}
.products .grid .product__available::after, .products .grid .product__sold::after {
  content: "Verkocht";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  font-size: 1.2rem;
  background-color: var(--color-success-light);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
}
.products .grid .product__sold {
  overflow: hidden;
}
.products .grid .product__sold::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.products .grid .product__available::after {
  content: "Beschikbaar";
  background-color: var(--color-info-light);
}
.products .grid .product .buttons {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  left: 0;
}
.products .grid .product__add-to-cart, .products .grid .product__add-to-wishlist {
  display: flex;
  color: rgb(255, 255, 255);
  padding: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 0 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.8rem;
}
.products .grid .product__add-to-cart:hover, .products .grid .product__add-to-wishlist:hover {
  transform: scale(1.2);
}
.products .grid .product__add-to-cart svg, .products .grid .product__add-to-wishlist svg {
  fill: var(--color-primary-base);
}
.products .grid .product__attributes {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products .grid .product__attributes small {
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: var(--color-neutral-base);
  padding: 0.2rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 1rem;
  margin-bottom: 0.4rem;
  min-width: 5.3rem;
}
.products .grid .product__attributes small:not(:first-child) {
  margin-left: 0.4rem;
}
.products .grid .product__attributes small span {
  display: inline-flex;
  vertical-align: sub;
}
.products .grid .product__attributes small span::after {
  font-size: 1.4rem;
}
.products .grid .product__attributes small + small {
  margin-left: 0.8rem;
}
.products .grid .product__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  display: block;
  color: var(--color-text);
  min-height: 5rem;
  overflow: hidden;
  line-height: 1.15;
}
.products .grid .product__regular-price {
  text-decoration: line-through;
  opacity: 0.8;
}
.products .grid .product__sale-price--sale-state {
  color: var(--color-danger);
}

.brand-label {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.8rem;
  background-color: #bbe5ed;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 500;
  z-index: 1;
}

.sale-label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.8rem;
  background-color: var(--color-danger);
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 600;
  z-index: 1;
}

.brands a {
  text-decoration: none;
  color: var(--text-color);
}

.return-form .order-info-form ul,
.return-form .generate-return-form ul {
  padding-left: 0;
}
.return-form .order-info-form ul li,
.return-form .generate-return-form ul li {
  list-style: none;
}
.return-form .generate-return-form .products-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.return-form .generate-return-form .products-list__name {
  width: calc(100% - 5.4rem);
  margin-right: 0.4rem;
}
.return-form .generate-return-form .products-list__quantity input {
  width: 5rem;
}

.woocommerce .product-thumbnail {
  width: 6rem;
}
.woocommerce .product-name a {
  text-decoration: none;
}
.woocommerce .product-subtotal {
  text-align: right;
}
.woocommerce .product-remove a {
  text-decoration: none;
  display: flex;
}
.woocommerce .product-remove a .icon {
  margin-left: auto;
}
.woocommerce .product-remove a .icon::after {
  color: var(--color-danger-base);
}
.woocommerce .cart-collaterals tr {
  display: flex;
  justify-content: space-between;
}
.woocommerce .cart-collaterals tr th,
.woocommerce .cart-collaterals tr td {
  width: 100%;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals {
  flex-flow: column;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals th,
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals td {
  border-bottom: 0;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals td {
  padding: 0;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals .woocommerce-shipping-methods {
  text-align: left;
  padding: 0;
  margin: 0;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals .woocommerce-shipping-methods li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals .woocommerce-shipping-methods li label {
  line-height: normal;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.woocommerce .cart-collaterals tr.woocommerce-shipping-totals .woocommerce-shipping-methods li input {
  margin: 0 0.4rem 0 0;
}
.woocommerce .cart-collaterals tr.order-total td {
  display: flex;
  flex-flow: column;
}

.checkout__shipping .woocommerce-additional-fields {
  display: none;
}
.checkout .woocommerce-billing-fields__field-wrapper,
.checkout .woocommerce-shipping-fields__field-wrapper {
  flex-wrap: wrap;
  display: flex;
}
.checkout .woocommerce-billing-fields .form-row-wide,
.checkout .woocommerce-billing-fields .form-row-first,
.checkout .woocommerce-billing-fields .form-row-last,
.checkout .woocommerce-shipping-fields .form-row-wide,
.checkout .woocommerce-shipping-fields .form-row-first,
.checkout .woocommerce-shipping-fields .form-row-last {
  width: 100%;
}
@media (min-width: 1192px) {
  .checkout .woocommerce-billing-fields p.form-row-first,
  .checkout .woocommerce-billing-fields p.form-row-last,
  .checkout .woocommerce-shipping-fields p.form-row-first,
  .checkout .woocommerce-shipping-fields p.form-row-last {
    width: calc(50% - 0.8rem);
  }
  .checkout .woocommerce-billing-fields p.form-row-first + p,
  .checkout .woocommerce-billing-fields p.form-row-last + p,
  .checkout .woocommerce-shipping-fields p.form-row-first + p,
  .checkout .woocommerce-shipping-fields p.form-row-last + p {
    margin-top: 0;
  }
  .checkout .woocommerce-billing-fields .form-row-first,
  .checkout .woocommerce-shipping-fields .form-row-first {
    margin-right: 1.6rem;
  }
}
.checkout .search-address {
  width: 100%;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods {
  padding: 0;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li label {
  line-height: normal;
  display: none;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li input[type=radio] {
  margin: 0 0.4rem 0 0;
  display: none;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li input[type=radio]:checked + label {
  display: block;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li input[type=hidden] {
  margin: 0 0.4rem 0 0;
  display: none;
}
.checkout .woocommerce-checkout-review-order .woocommerce-shipping-methods li input[type=hidden] + label {
  display: block;
}
.checkout .sidebar-pickup-shops {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 32rem;
  background-color: white;
  padding: 0.8rem;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-50rem);
  z-index: 2;
  box-shadow: rgba(99, 99, 99, 0.1) 0 0 0.8rem 0;
}
.checkout .sidebar-pickup-shops.is-visible {
  transform: translateX(0rem);
}
.checkout .sidebar-pickup-shops__results {
  overflow-y: auto;
  overflow-x: hidden;
  height: 95%;
}
.checkout .sidebar-pickup-shops__list {
  padding: 0;
}
.checkout .sidebar-pickup-shops__list-item {
  padding: 0.4rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.2rem;
  border-bottom: 0.1rem solid var(--color-border);
}
.checkout .sidebar-pickup-shops__list-item:first-child {
  border-top: 0.1rem solid var(--color-border);
}
.checkout .sidebar-pickup-shops__list-item.is-active {
  background-color: rgba(255, 153, 201, 0.4);
}
.checkout .sidebar-pickup-shops__list-item span {
  display: block;
}
.checkout .sidebar-pickup-shops__list-item span.pickup-shop__title {
  font-weight: bold;
}
.checkout .sidebar-pickup-shops__list-item span.pickup-shop__distance {
  display: flex;
  align-items: center;
}
.checkout .sidebar-pickup-shops__list-item:hover {
  background-color: rgba(255, 153, 201, 0.2);
}
.checkout .shipping__chosen-pickup-point {
  font-size: 1.2rem;
}
.checkout .shipping__chosen-pickup-point span {
  display: block;
}
.checkout .shipping__chosen-pickup-point span.pickup-shop__title {
  font-weight: bold;
}
.checkout .shipping__chosen-pickup-point span.pickup-shop__distance {
  display: flex;
  align-items: center;
}
.checkout .shipping .pickup-selection__chose-other {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.checkout .shipping .pickup-selection__chose-other.is-visible {
  opacity: 1;
  visibility: visible;
}
.checkout .woocommerce-checkout-payment ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.checkout .woocommerce-checkout-payment ul li {
  list-style: none;
  width: calc(25% - 8px);
  background: var(--color-info-lightest);
  margin: 4px;
  padding: 8px;
}
@media (max-width: 767px) {
  .checkout .woocommerce-checkout-payment ul li {
    width: 100%;
  }
}
.checkout .woocommerce-checkout-payment ul li .klarna_payments_container > div {
  min-width: initial !important;
}
.checkout .woocommerce-checkout-payment ul li label img {
  float: right;
}
.checkout #place_order {
  margin-left: auto;
  display: block;
  margin-top: 8px;
}

.woocommerce .navigation {
  background-color: var(--color-neutral-light);
}
@media (max-width: 1191.98px) {
  .woocommerce .navigation {
    margin: 0.8rem 0 3rem;
    background-color: white;
    border: 0.1rem solid var(--color-border);
    border-radius: 0.8rem;
  }
}
.woocommerce .navigation__dropdown {
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (min-width: 1192px) {
  .woocommerce .navigation__dropdown {
    display: none;
  }
}
.woocommerce .navigation__dropdown p {
  margin: 0 auto 0 0.4rem;
}
.woocommerce .navigation__list {
  margin: 0;
  padding: 0.8rem;
}
@media (max-width: 1191.98px) {
  .woocommerce .navigation__list {
    height: 0;
    padding: 0 0.8rem;
    opacity: 0;
    visibility: hidden;
  }
  .woocommerce .navigation__list.is-visible {
    transition: all 0.3s ease-in-out;
    height: auto;
    padding: 0.8rem;
    opacity: 1;
    visibility: visible;
  }
}
.woocommerce .navigation__link {
  padding: 0.8rem;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.woocommerce .navigation__link:hover {
  color: var(--color-primary);
}
.woocommerce .navigation__link.is-active {
  font-weight: bold;
}
.woocommerce .navigation__list-item {
  list-style: none;
}
.woocommerce .dashboard {
  background-color: var(--color-neutral-light);
  padding: 1.6rem;
}
@media (min-width: 1192px) {
  .woocommerce .dashboard {
    padding: 2.4rem;
  }
}
.woocommerce .password-input {
  position: relative;
}
.woocommerce .password-input .show-password-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
.woocommerce .password-input .show-password-input::after {
  content: "\e8f4";
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
}

.verkoperspagina .dashboard {
  position: relative;
}
.verkoperspagina .dashboard__totals td {
  min-width: 6rem;
}
.verkoperspagina .payment-history__table {
  overflow-x: auto;
}
.verkoperspagina .payment-history td.no-border {
  border: 0;
}
.verkoperspagina .payment-history td .icon::after {
  font-size: 2rem;
}

.icon, .single-product .product .woocommerce-product-gallery__trigger {
  display: flex;
  align-items: flex-end;
}
.icon::after, .single-product .product .woocommerce-product-gallery__trigger::after {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
}
.icon--filled {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.icon--primary::after {
  color: var(--color-primary-base);
}
.icon--account-circle::after {
  content: "\e853";
}
.icon--agenda-clock::after {
  content: "\f540";
}
.icon--arrow-back::after {
  content: "\e5c4";
}
.icon--baby::after {
  content: "\eb41";
}
.icon--check-circle::after {
  content: "\e86c";
}
.icon--close::after {
  content: "\e5cd";
}
.icon--contact::after {
  content: "\e0b7";
}
.icon--customer-service::after {
  content: "\e94c";
}
.icon--delete::after {
  content: "\e872";
}
.icon--distance::after {
  content: "\f6ea";
}
.icon--eye::after {
  content: "\e8f4";
}
.icon--error::after {
  content: "\e000";
}
.icon--event::after {
  content: "\e878";
}
.icon--expand-more::after {
  content: "\e5cf";
}
.icon--expand-right-circle::after {
  content: "\f591";
}
.icon--face::after {
  content: "\e87c";
}
.icon--face4::after {
  content: "\f8dc";
}
.icon--favorite::after {
  content: "\e87d";
}
.icon--hamburger::after {
  content: "\e5d2";
}
.icon--info::after {
  content: "\e88e";
}
.icon--open-in-full::after {
  content: "\f1ce";
}
.icon--palette::after {
  content: "\e40a";
}
.icon--part::after {
  content: "\f724";
}
.icon--phone::after {
  content: "\e0b0";
}
.icon--reset::after {
  content: "\f053";
}
.icon--savings::after {
  content: "\e2eb";
}
.icon--shipment::after {
  content: "\e558";
}
.icon--shopping-bag::after {
  content: "\f1cc";
}
.icon--sell::after {
  content: "\f05b";
}
.icon--star::after {
  content: "\e838";
}
.icon--time::after {
  content: "\e8b5";
}
.icon--toy::after {
  content: "\e332";
}
.icon--tune::after {
  content: "\e429";
}

.single-product .product .woocommerce-product-gallery {
  position: relative;
}
.single-product .product .woocommerce-product-gallery__trigger {
  text-decoration: none;
  font-size: 0;
}
@media (max-width: 1191.98px) {
  .single-product .product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}
@media (min-width: 1192px) {
  .single-product .product .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
  }
  .single-product .product .woocommerce-product-gallery__trigger::after {
    content: "\e56b";
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
  }
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs {
  padding: 0;
  display: flex;
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs li {
  margin-right: 0.4rem;
  list-style: none;
}
.single-product .product .woocommerce-product-gallery .flex-control-thumbs li img {
  background-color: var(--color-neutral-light);
}
.single-product .product__summary {
  position: relative;
  background-color: var(--color-neutral-light);
  padding: clamp(0.8rem, 1.5vh, 2.4rem);
  height: 100%;
}
.single-product .product__summary .price .regular-price {
  text-decoration: line-through;
  opacity: 0.8;
}
.single-product .product__summary .js-add-to-cart {
  justify-content: center;
}
@media (max-width: 775.98px) {
  .single-product .product__summary .js-add-to-cart {
    width: 100%;
  }
}
@media (min-width: 776px) {
  .single-product .product__summary .js-add-to-cart {
    min-width: 20rem;
  }
}
.single-product .product__summary .icon--favorite {
  cursor: pointer;
  position: relative;
  padding: 0.8rem;
  z-index: 1;
  border-radius: 0.8rem;
  border: 1px solid var(--color-neutral-base);
  color: var(--color-text);
  background-color: var(--color-neutral-lightest);
}
.single-product .product__summary .icon--favorite::after {
  font-size: 2.9rem;
  transition: all 0.3s ease-in-out;
}
.single-product .product__summary .icon--favorite .icon--background {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
}
.single-product .product__summary .icon--favorite .icon--background::after {
  color: var(--color-primary-base);
}
.single-product .product__summary .icon--favorite .icon--background::after:hover {
  color: #bbe5ed;
}
.single-product .product__summary .icon--favorite .icon--background.icon--filled {
  opacity: 1;
  visibility: visible;
}
.single-product .product__summary .usps {
  padding: 0;
}
.single-product .product__summary .usps li {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  margin: 0.4rem 0;
}
.single-product .product__summary .usps li .icon, .single-product .product__summary .usps li .product .woocommerce-product-gallery__trigger, .single-product .product .product__summary .usps li .woocommerce-product-gallery__trigger {
  margin-right: 0.4rem;
}
.single-product .product__summary .usps li .icon::after, .single-product .product__summary .usps li .product .woocommerce-product-gallery__trigger::after, .single-product .product .product__summary .usps li .woocommerce-product-gallery__trigger::after {
  font-size: 2rem;
}
.single-product .product img[role=presentation] {
  background-color: white;
}
.single-product .product .shipping-companies {
  display: flex;
}
.single-product .product .shipping-companies__logo {
  padding: 12px 8px;
  border-radius: 8px;
  width: 75px;
}
.single-product .product .shipping-companies__logo:first-child {
  background: #FFCC00;
  margin-right: 4px;
}
.single-product .product .shipping-companies__logo:last-child {
  background: #004654;
}

.pswp img, .pswp__bg {
  background-color: white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
}
body.has-overlay {
  overflow: hidden;
}
body.has-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 153, 201, 0.1);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  transition: all 0.3s ease-in-out;
}

.main {
  min-height: 68vh;
}

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

.container {
  max-width: 140rem;
  margin: auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
@media (min-width: 968px) {
  .container {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
.container--boxed {
  max-width: 100rem;
}

body {
  position: relative;
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size-body);
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0;
  line-height: var(--font-size-body-lh);
}
p + p {
  margin-top: 1rem;
}

a {
  color: var(--color-primary-darkest);
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.8rem;
  line-height: var(--font-size-heading-lh);
}

h3 {
  font-weight: 400;
}

.heading {
  line-height: var(--font-size-heading-lh);
  font-size: var(--font-size-heading);
  font-weight: 600;
}

.subheading {
  line-height: var(--font-size-subheading-lh);
  font-size: var(--font-size-subheading);
  font-weight: 600;
}

.page-heading {
  line-height: var(--font-size-page-heading-lh);
  font-size: var(--font-size-page-heading);
  font-weight: 600;
}

label {
  line-height: var(--font-size-body-lh);
}

.text-info {
  color: var(--color-primary);
}

.text-warning {
  color: var(--color-warning);
}

.text-danger {
  color: var(--color-danger);
}

.text-success {
  color: var(--color-success);
}

.header {
  position: relative;
  z-index: 2;
  border-bottom: 0.1rem solid var(--color-border);
  background-color: #fff;
}
.header__top {
  background-color: #bbe5ed;
  padding: 0.4rem 0;
  min-height: 32px;
}
.header__top .swiper {
  overflow: hidden;
  opacity: 0;
  height: 2.5rem;
}
.header__top .swiper.swiper-initialized {
  opacity: 1;
  height: auto;
}
.header__top .usps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: inline-flex;
}
.header__top .usps li {
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: center;
}
@media (min-width: 1192px) {
  .header__top .usps li {
    text-align: left;
  }
}
.header .review-stars {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  text-decoration: none;
}
.header .review-stars__mark {
  font-size: 3rem;
  margin-right: 0.4rem;
  font-weight: 100;
}
.header .review-stars small {
  color: var(--color-neutral-darkest);
  font-size: 1rem;
  display: block;
}
.header .review-stars .rating-value[rating-value="1"] {
  --star-rev: 1;
}
.header .review-stars .rating-value[rating-value="2"] {
  --star-rev: 2;
}
.header .review-stars .rating-value[rating-value="3"] {
  --star-rev: 3;
}
.header .review-stars .rating-value[rating-value="4"] {
  --star-rev: 4;
}
.header .review-stars .rating-value[rating-value="5"] {
  --star-rev: 5;
}
.header .review-stars .rating-value {
  display: block;
  --_star-size: 2rem;
  --_gap: 1rem;
  --gap-max-size: min(var(--_gap), var(--_star-size) / 5);
  --gap-calc: calc( (var(--star-rev, 0) - 1) * var(--gap-max-size) );
  height: var(--_star-size);
  width: calc(var(--star-rev, 0) * var(--_star-size) + var(--gap-calc));
  background-image: url(https://api.iconify.design/material-symbols:star-rounded.svg?color=%23f0ad4e);
  background-repeat: space no-repeat;
  background-size: var(--_star-size);
}
.header .quick-links {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 13.1rem;
}
@media (min-width: 1192px) {
  .header .quick-links {
    order: 3;
  }
}
.header .quick-links__link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.header .quick-links__link:not(:first-child) {
  margin-left: 0.4rem;
}
.header .quick-links__link .icon {
  z-index: 1;
  border-radius: 0.8rem;
  border: 1px solid var(--color-neutral-base);
  position: relative;
}
.header .quick-links__link .icon--background {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border: 0;
}
.header .quick-links__link .icon--background::after {
  background-color: var(--color-neutral-lightest);
  color: var(--color-primary-base);
  border-radius: 0.8rem;
}
.header .quick-links__link .icon::after {
  font-size: 3.9rem;
  transition: all 0.3s ease-in-out;
}
.header .quick-links__link .icon .js-favorite-count {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-weight: bold;
  color: var(--color-text);
}
.header .quick-links__link .icon .js-cart-count {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  top: 64%;
  left: 50%;
  font-weight: bold;
  color: var(--color-text);
}
.header .quick-links__link .icon:hover .icon--background::after {
  color: #bbe5ed;
}
.header .quick-links__link small {
  font-size: 1rem;
  display: block;
  color: var(--color-text);
  text-align: center;
  width: 6.6rem;
  top: 100%;
  font-weight: 500;
}
@media (max-width: 1191.98px) {
  .header .quick-links__link small {
    display: none;
  }
}
.header__menu {
  background-color: var(--color-neutral-lighter);
}
@media (max-width: 1191.98px) {
  .header__menu {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100vw);
    width: 100%;
    z-index: -1;
    background-color: white;
    padding-top: 2.4rem;
    max-width: 42rem;
  }
  .header__menu.is-visible {
    transform: translateX(0);
    overflow-y: auto;
  }
}
.header__footer {
  background-color: var(--color-primary-base);
  line-height: 1.2;
  padding: 0.4rem 0;
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
}

.footer {
  position: relative;
  min-height: 175vh;
  margin-top: 10rem;
  z-index: 0;
}
@media (min-width: 968px) {
  .footer {
    min-height: 70vh;
  }
}
.footer__image {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(250px, 80%, 800px);
  height: auto;
  z-index: -1;
}
.footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 153, 201, 0.15);
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer h4 {
  color: var(--color-primary-base);
  font-size: 2rem;
}
.footer ul {
  padding-left: 0;
  margin-top: 0;
}
.footer ul li {
  list-style: none;
  padding: 0.4rem 0;
}
.footer ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--color-text);
  transition: color 0.3s ease-in-out;
  display: block;
}
.footer ul li a:hover {
  color: var(--color-primary-darkest);
}

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