@charset "UTF-8";
/**
 * @file
 * CSS output file
 *
 * Combine all theme scss into a single CSS file
 */
/**
 * @file
 * Variables
 * 
 * Contains global variables available to the theme.
 */
/**
 * @file
 * Mixins
 *
 * Contains global SCSS mixins
 */
/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

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

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

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

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

.m-auto {
  margin: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

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

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

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

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

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

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

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

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/**
 * @file
 * Animations
 * 
 * Contains all keyframe animations in use on the site.
 */
.two-column.view.view-explore-heritage-section-view {
  overflow: hidden;
}
@media screen and (min-width: 1201px) {
  .two-column.view.view-explore-heritage-section-view {
    padding-top: 15rem;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 1401px) {
  .two-column.view.view-explore-heritage-section-view {
    padding-top: 12rem;
  }
}
.two-column.view.view-explore-heritage-section-view::before {
  content: "";
  background-image: url(../assets/images/new-giraffee-unscreen.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  width: 100px;
  height: 100px;
  left: inherit;
  right: 0;
  background-position: top center;
}
@media screen and (min-width: 1025px) {
  .two-column.view.view-explore-heritage-section-view::before {
    width: 100%;
    height: 100px;
    left: 20%;
    max-width: 300px;
    right: inherit;
  }
}
@media screen and (min-width: 1025px) {
  .two-column.view.view-explore-heritage-section-view::before {
    height: 150px;
  }
}
@media screen and (min-width: 1401px) {
  .two-column.view.view-explore-heritage-section-view::before {
    height: 122px;
    max-width: 300px;
  }
}
@media screen and (min-width: 700px) {
  .two-column.view.view-explore-heritage-section-view #explore-text {
    padding-right: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .about-one.view-display-id-block_1::after {
    content: "";
    position: absolute;
    right: 0%;
    bottom: -9%;
    background-image: url(../assets/animations/Homepage/leaf-unscreen-new-.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 300px;
    height: 260px;
    width: 100%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
* {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

figure {
  margin: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #FFFF00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  border-radius: 0;
  accent-color: #f06670;
  margin-right: 5px;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
  border-radius: 0;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
 * @file
 * Sitewide fonts
 */
@font-face {
  font-family: "Rowdies";
  src: url("../fonts/Rowdies/Rowdies-Bold.woff2") format("woff2"), url("../fonts/Rowdies/Rowdies-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rowdies";
  src: url("../fonts/Rowdies/Rowdies-Light.woff2") format("woff2"), url("../fonts/Rowdies/Rowdies-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rowdies";
  src: url("../fonts/Rowdies/Rowdies-Regular.woff2") format("woff2"), url("../fonts/Rowdies/Rowdies-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-ExtraBold.woff2") format("woff2"), url("../fonts/Sora/Sora-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Medium.woff2") format("woff2"), url("../fonts/Sora/Sora-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-SemiBold.woff2") format("woff2"), url("../fonts/Sora/Sora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Bold.woff2") format("woff2"), url("../fonts/Sora/Sora-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-ExtraLight.woff2") format("woff2"), url("../fonts/Sora/Sora-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Regular.woff2") format("woff2"), url("../fonts/Sora/Sora-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Light.woff2") format("woff2"), url("../fonts/Sora/Sora-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Thin.woff2") format("woff2"), url("../fonts/Sora/Sora-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/**
 * @file
 * Sitewide typography
 */
h1,
h2,
h3,
h5,
h6 {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.14;
}
@media screen and (min-width: 700px) {
  h1 {
    font-size: 3.8rem;
    line-height: 1.17;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  margin-left: 64px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: normal;
}
@media screen and (min-width: 700px) {
  h2 {
    font-size: 3rem;
    margin: 2.1rem 0;
    line-height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  h2 {
    font-size: 3.5rem;
    margin-left: 80px;
  }
}

h3,
.h3 {
  margin: 1.1rem 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
}
@media screen and (min-width: 700px) {
  h3,
  .h3 {
    font-size: 2.4rem;
    margin: 1.5rem 0;
    line-height: 3rem;
  }
}
@media screen and (min-width: 1401px) {
  h3,
  .h3 {
    font-size: 3rem;
  }
}

h4 {
  margin: 1.8rem 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.5rem;
}
@media screen and (min-width: 700px) {
  h4 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  h4 {
    line-height: 3rem;
    margin: 1.4rem 0;
  }
}

h5 {
  margin: 1.5rem 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 700px) {
  h5 {
    margin: 1.3rem 0;
  }
}
@media screen and (min-width: 1025px) {
  h5 {
    margin: 1.5rem 0;
  }
}

h6 {
  margin: 1.2rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.6rem;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  h6 {
    margin: 1.8rem 0;
    line-height: normal;
  }
}

.wysiwyg__body ul,
.layout-content ul {
  padding-left: 20px;
  list-style: disc;
}
.wysiwyg__body ul > li,
.layout-content ul > li {
  margin: 1rem 0;
}
.wysiwyg__body ul ul,
.layout-content ul ul {
  padding-left: 10px;
}
.wysiwyg__body ol,
.layout-content ol {
  counter-reset: listStyle;
  padding-left: 0;
  list-style: decimal;
}
.wysiwyg__body ol > li,
.layout-content ol > li {
  margin: 1rem 0;
}
.wysiwyg__body ol > li > ol,
.layout-content ol > li > ol {
  padding-left: 10px;
}
.wysiwyg__body ul ol,
.wysiwyg__body ol ul,
.layout-content ul ol,
.layout-content ol ul {
  padding-left: 0;
}
.wysiwyg__body ol ol ol,
.wysiwyg__body ul ul ul,
.layout-content ol ol ol,
.layout-content ul ul ul {
  padding-left: 1.5rem;
}

p {
  margin: 0 0 2rem;
  margin-left: 1px;
}
p:empty {
  display: none;
}

span.blue {
  color: #000000;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

a {
  cursor: pointer;
  font-weight: normal;
  text-decoration: none;
  transition: 0.2s ease;
  color: #f06670;
  transition: all ease 0.3s;
}

/**
 * @file
 * Base theme styles
 */
* {
  /* background-color: #fff !important;*/
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
html.overflow-hidden {
  overflow: hidden;
}
html.overflow-hidden body {
  overflow: hidden;
  position: relative;
  height: 100%;
}

img {
  max-width: 100%;
  /* margin-bottom: -60px;*/
  height: auto;
  margin-left: 2px;
}

body {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #FFF;
}
body.js-fixed {
  overflow: hidden;
}

button {
  font-family: "Sora", sans-serif;
}

* > p:last-child,
* > ul:last-child,
* > ol:last-child {
  margin-bottom: 0px;
}

.button-secondary a {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .button-secondary a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.button-secondary a:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}

.button-outline a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .button-outline a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.button-outline a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}

.button-outline.white a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .button-outline.white a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.button-outline.white a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.button-outline.white a {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.heading, .view-frequently-asked-questions .view-header .faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
.webform-submission-form .view-header h2,
.form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .view-header h2,
.add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .view-header h2, .path-add-a-review main .page-title, .path-cart .page-title, .heading-sub, .webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
.webform-submission-form .view-header h4,
.form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .view-header h4,
.add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .view-header h4 {
  font-size: 2.6rem;
  line-height: 3.5rem;
  font-family: "Rowdies", sans-serif;
}
@media screen and (min-width: 1201px) {
  .heading, .view-frequently-asked-questions .view-header .faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
  .webform-submission-form .view-header h2,
  .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .view-header h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .view-header h2, .path-add-a-review main .page-title, .path-cart .page-title, .heading-sub, .webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
  .webform-submission-form .view-header h4,
  .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .view-header h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .view-header h4 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 5rem;
  }
}
@media screen and (min-width: 1201px) {
  .heading, .view-frequently-asked-questions .view-header .faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
  .webform-submission-form .view-header h2,
  .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .view-header h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .view-header h2, .path-add-a-review main .page-title, .path-cart .page-title, .heading-sub, .webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
  .webform-submission-form .view-header h4,
  .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .view-header h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .view-header h4 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
}

.heading-v2 {
  font-size: 1.6rem;
  font-family: "Rowdies", sans-serif;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1201px) {
  .heading-v2 {
    font-size: 1.8rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1201px) {
  .heading-v2 {
    font-size: 2rem;
  }
}

.heading-sub, .webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
.webform-submission-form .view-header h4,
.form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .view-header h4,
.add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .view-header h4 {
  font-family: "Sora", sans-serif;
  font-weight: 200;
}

.description, .view-frequently-asked-questions .view-header .faq-short-text {
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  line-height: 2.2rem;
  color: #000000;
}
@media screen and (min-width: 1025px) {
  .description, .view-frequently-asked-questions .view-header .faq-short-text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 375px) {
  .description, .view-frequently-asked-questions .view-header .faq-short-text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1401px) {
  .description, .view-frequently-asked-questions .view-header .faq-short-text {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.description .item-list ul, .view-frequently-asked-questions .view-header .faq-short-text .item-list ul {
  padding: 0;
}
.description .item-list ul li, .view-frequently-asked-questions .view-header .faq-short-text .item-list ul li {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  color: #000000;
}
@media screen and (min-width: 1025px) {
  .description .item-list ul li, .view-frequently-asked-questions .view-header .faq-short-text .item-list ul li {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1401px) {
  .description .item-list ul li, .view-frequently-asked-questions .view-header .faq-short-text .item-list ul li {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.description .item-list ul li:before, .view-frequently-asked-questions .view-header .faq-short-text .item-list ul li:before {
  display: none;
}
.description .sections, .view-frequently-asked-questions .view-header .faq-short-text .sections {
  margin-bottom: 3rem;
}

.max-content, .path-user-profile .main__site--content, .view-frequently-asked-questions, .webform-submission-form,
.form__layout,
.add-product-review, .product-statistics .view-content, .two-column .view-content {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .max-content, .path-user-profile .main__site--content, .view-frequently-asked-questions, .webform-submission-form,
  .form__layout,
  .add-product-review, .product-statistics .view-content, .two-column .view-content {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .max-content, .path-user-profile .main__site--content, .view-frequently-asked-questions, .webform-submission-form,
  .form__layout,
  .add-product-review, .product-statistics .view-content, .two-column .view-content {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.slick-arrow.slick-disabled {
  cursor: not-allowed !important;
}

.slick-next {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .slick-next {
    width: 70px;
    height: 70px;
  }
}
.slick-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}

.slick-prev {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .slick-prev {
    width: 70px;
    height: 70px;
  }
}
.slick-prev:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.slick-prev:before {
  background-image: url(../assets/icons/chevron-small-left_curved.svg);
}

.relative {
  position: relative !important;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #842029;
  /* background-color: #f8d7da;*/
  /*border-color: #f5c2c7;*/
}

@media screen and (max-width: 700px) {
  .cocos_iframe_div {
    height: 600px !important;
  }
}
.cocos_iframe_div iframe {
  border: 0 !important;
}

ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
}
ul.slick-dots li {
  font-size: 0;
  border: 0;
  width: 13px;
  height: 13px;
  background: #818282;
  border-radius: 50%;
  margin: 4px;
  cursor: pointer;
}
ul.slick-dots li.slick-active {
  background: #000000;
}
ul.slick-dots li button {
  border: 0;
  padding: 0;
}

.messages,
.payment-messages--error {
  padding: 10px 20px 10px 20px;
  margin-bottom: 14px;
  margin-left: -18px;
  background: no-repeat 10px 21px;
  background-image: none !important;
}
.messages ul,
.payment-messages--error ul {
  list-style: none;
}
.messages ul li,
.payment-messages--error ul li {
  margin: 0 10px 0;
}
.messages .StripeElement,
.payment-messages--error .StripeElement {
  margin-top: 20px;
}

.ajax-progress.ajax-progress-fullscreen {
  background-color: rgba(0, 0, 0, 0.3215686275);
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ajax-progress.ajax-progress-fullscreen .ajax-throbber.sk-flow {
  width: auto;
  height: auto;
}
.ajax-progress.ajax-progress-fullscreen .sk-flow-dot {
  background-color: #fff;
  width: 15px;
  height: 15px;
  margin: 5px;
}

.heading-h3, .path-user-profile .field--type-text-with-summary.field--label-hidden.field__item h3, .path-user-profile .page-title, .path-customize-your-book .book_cover_title,
.path-customize-your-book .book_cover_format_message, .block-owt-product-review.block-review-graph-book h3,
.view-product-reviews.block-review-graph-book h3 {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  /* text-transform: capitalize; */
}
@media screen and (min-width: 700px) {
  .heading-h3, .path-user-profile .field--type-text-with-summary.field--label-hidden.field__item h3, .path-user-profile .page-title, .path-customize-your-book .book_cover_title,
  .path-customize-your-book .book_cover_format_message, .block-owt-product-review.block-review-graph-book h3,
  .view-product-reviews.block-review-graph-book h3 {
    font-size: 25px;
  }
}

.form-required::after {
  margin: 0px 0.1em;
}

.pager {
  width: 100%;
  margin-top: 20px;
}
.pager__items {
  padding: 0;
}
.pager__items li {
  display: inline-flex;
  margin: 0 !important;
  line-height: normal;
  padding: 0;
}
.pager__items li a {
  padding: 6px 15px;
  border-radius: 5px;
  transition: all ease 0.3s;
}
.pager__items li.is-active a,
.pager__items li a:hover {
  background: #f06670;
  color: #fff;
}

.view-printer-admin-ops-view .view-content {
  margin-top: 4rem;
}

.block-views-blockhow-it-works-section-block-1 {
  overflow: hidden;
}

.view-_0-off-coupon {
  display: block;
  line-height: normal;
}

.is-b-loading {
  min-height: 20px;
}
@media screen and (min-width: 700px) {
  .is-b-loading {
    min-height: 30px;
  }
}

input::placeholder {
  font-style: normal;
}

.gl-star-rating--stars[class*=" s"] > span {
  background: url(../assets/images/off-star.svg) !important;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
}

.gl-star-rating--stars[class*=" s"] > span.gl-active, .gl-star-rating--stars[class*=" s"] > span.gl-active.gl-selected {
  background-image: url(../assets/images/on-star.svg) !important;
}

.add-product-review .js-form-item-product-rating [data-star-rating] {
  align-items: center;
  justify-content: center;
  width: 100%;
}

[data-star-rating] .gl-star-rating--stars[aria-label]:after,
[data-star-rating] .gl-star-rating--stars[aria-label]:before {
  display: none !important;
}

#validation-error {
  margin-bottom: 20px;
  font-weight: 400;
  color: #de2626;
}

.messages {
  border: none;
  box-shadow: none;
}

body.path-user {
  line-height: 4rem;
}

/**
 * @file
 * Print specific styliing
 */
@media print {
  .footer {
    display: none;
  }
  .accordion__content {
    display: block !important;
  }
  #block-nhcc-theme-branding {
    display: block;
  }
}
.content-wrapper form {
  width: 100%;
  max-width: 43.8rem;
}
.content-wrapper form fieldset {
  margin: 0;
}
.content-wrapper form > .js-form-item {
  margin-bottom: 4rem;
}
.content-wrapper form > .js-form-item > label,
.content-wrapper form > .js-form-item legend {
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.8rem;
}
.content-wrapper .js-form-item {
  position: relative;
}
.content-wrapper .js-form-item label {
  display: block;
  position: relative;
  cursor: pointer;
}
.content-wrapper .js-webform-type-checkboxes .js-form-item:not(:last-child),
.content-wrapper .js-webform-type-radios .js-form-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.content-wrapper .button {
  border: 0;
}
.content-wrapper input[type=text],
.content-wrapper input[type=number],
.content-wrapper input[type=email],
.content-wrapper input[type=tel],
.content-wrapper input[type=password],
.content-wrapper input[type=number],
.content-wrapper input[type=date],
.content-wrapper input[type=select],
.content-wrapper select {
  width: 100%;
  height: 5rem;
  border: solid 0.1rem #767676;
  padding: 1.2rem 1.4rem;
  font-family: "Sora", sans-serif;
}
.content-wrapper input[type=select],
.content-wrapper select {
  padding-right: 4.5rem;
}
@media screen and (min-width: 700px) {
  .content-wrapper input[type=select],
  .content-wrapper select {
    max-width: 27.5rem;
  }
}
.content-wrapper textarea {
  width: 100%;
  min-height: 21.5rem;
  border: solid 0.1rem #767676;
  padding: 1.2rem 1.4rem;
  font-style: italic;
}
.content-wrapper input[type=radio],
.content-wrapper input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
}
.content-wrapper input[type=radio] + label,
.content-wrapper input[type=checkbox] + label {
  padding-left: 2.8rem;
}
.content-wrapper input[type=radio] + label:before,
.content-wrapper input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  height: 2rem;
  width: 2rem;
  background: none;
  border: solid 0.1rem #F0666F;
  transition: all ease 0.3s;
}
.content-wrapper input[type=radio]:checked + label:before,
.content-wrapper input[type=checkbox]:checked + label:before {
  background-color: #F0666F;
  border-color: #F0666F;
}
.content-wrapper input[type=radio]:checked + label:after,
.content-wrapper input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.content-wrapper input[type=radio] + label:after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #005a79;
  border-radius: 50%;
  left: 0.5rem;
  top: 0.9rem;
  opacity: 0;
  transition: all ease 0.3s;
}
.content-wrapper input[type=radio] + label:before {
  border-radius: 50%;
}
.content-wrapper input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1rem;
  border-radius: 50%;
  left: 0.3rem;
  top: 0.9rem;
  opacity: 0;
  transition: all ease 0.3s;
}

::placeholder {
  font-style: italic;
}

.partner-login-form {
  margin-bottom: 4em;
}
@media screen and (min-width: 700px) {
  .partner-login-form {
    margin-bottom: 4.5em;
  }
}
@media screen and (min-width: 1025px) {
  .partner-login-form {
    margin-bottom: 10.2rem;
  }
}
.partner-login-form .button--primary {
  margin-left: 0;
}

table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered,
.views-table {
  border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td,
.views-table th,
.views-table td {
  border: 1px solid #eceeef;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8;
}

.table-hover .table-success:hover {
  background-color: #d0e9c6;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d0e9c6;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7;
}

.table-hover .table-info:hover {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
  background-color: #faf2cc;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #faf2cc;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede;
}

.table-hover .table-danger:hover {
  background-color: #ebcccc;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ebcccc;
}

.thead-inverse th {
  color: #fff;
  background-color: #292b2c;
}

.thead-default th {
  color: #464a4c;
  background-color: #eceeef;
}

.table-inverse {
  color: #fff;
  background-color: #292b2c;
}

.table-inverse th,
.table-inverse td,
.table-inverse thead th {
  border-color: #fff;
}

.table-inverse.table-bordered {
  border: 0;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive.table-bordered {
  border: 0;
}

.topbar {
  background-color: #9CD1A4;
  padding: 6px 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .topbar {
    padding: 10px 0;
  }
}
.topbar .views-field-description a,
.topbar a {
  color: #000000;
  font-weight: normal;
  font-size: 1.5rem;
  font-family: "Sora", sans-serif;
  display: inline-block;
}

.header {
  top: 0;
  z-index: 9;
  transition: all ease 0.3s;
  width: 100%;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  position: sticky;
  background-color: #F1F1F1;
  padding: 10px 0;
  box-shadow: 0px 10px 6px rgba(0, 0, 0, 0.0509803922);
}
@media screen and (min-width: 1025px) {
  .header {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
  }
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
}
.header__menus {
  display: none;
  transform: translateY(-100%);
  transition: all 0.5s ease;
  margin-left: -127px;
}
@media screen and (min-width: 1025px) {
  .header__menus {
    display: block;
    transform: inherit;
  }
}
.header__menus .main__menu .menu {
  display: block;
}
@media screen and (min-width: 1025px) {
  .header__menus .main__menu .menu {
    display: flex;
  }
}
.header__menus .main__menu .menu {
  margin: 0;
  margin-right: 83px;
}
@media screen and (max-width: 1366px) {
  .header__menus .main__menu .menu {
    margin-right: -15px;
  }
}
.header__menus .main__menu .menu-item {
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.header__menus .main__menu .menu-item a {
  font-size: 18px;
  font-weight: 500;
  font-family: "Sora", sans-serif;
  display: inline-block;
  padding: 4px 20px;
  color: #000000;
  position: relative;
  line-height: 24px;
}
@media screen and (min-width: 700px) {
  .header__menus .main__menu .menu-item a {
    font-size: 16px;
  }
}
.header__menus .main__menu .menu-item a.is-active {
  color: #F0666F;
}
.header__user-menus .block > ul.menu {
  margin: 0;
  display: flex;
  align-items: center;
}
.header__user-menus .block > ul.menu > .menu-item {
  padding: 0;
}
.header__user-menus .block > ul.menu > .menu-item:not(:last-child) {
  margin-right: 50px;
}
.header__user-menus .block > ul.menu > .menu-item > a {
  font-size: 0;
  width: 25px;
  height: 25px;
  display: block;
  background-size: 100%;
}
.header__user-menus .menu .search {
  position: relative;
}
.header__user-menus .menu .search > a {
  background: url(../assets/icons/search.svg) no-repeat;
}
.header__user-menus .menu .cart > a {
  background: url(../assets/icons/cart.svg) no-repeat;
}
.header__user-menus .menu .account > a {
  background: url(../assets/icons/account.svg) no-repeat;
}
.header__logo img {
  width: 100%;
  max-width: 100px;
  top: -10px;
  margin-bottom: -25px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .header__logo img {
    max-width: 140px;
  }
}
.header__menu-toggle {
  display: block;
  border: 0;
  background: 0 0;
  padding: 5px;
  margin-top: 13px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: unset;
}
@media screen and (min-width: 1025px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle::before {
  display: none;
}
.header__menu-toggle .menu-icon {
  width: 28px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-top: 2px;
}
.header__menu-toggle .menu-icon .line {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header__menu-toggle .menu-icon .line:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.header__menu-toggle .menu-icon .line:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
.header__menu-toggle .menu-icon .line:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
.header .header__menu-toggle.active .line:nth-child(1) {
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}
.header .header__menu-toggle.active .line:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header .header__menu-toggle.active .line:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 5px;
}
.header .header__menus.active_menu {
  display: block;
  transform: translateY(0);
  top: 0px;
  position: fixed;
  /*left: 0;*/
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  overflow: auto;
  z-index: 9;
  padding: 80px 36px;
  background-image: url(../assets/images/about_vt-bg.png);
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 100%;
  background-size: 100% 110px;
  bottom: -10px;
  right: 0;
  background-position: bottom right;
}
@media screen and (min-width: 614px) {
  .header .header__menus.active_menu {
    background-size: 100% 89px;
  }
}
@media screen and (min-width: 425px) {
  .header .header__menus.active_menu {
    background-size: 100% 95px;
  }
}
@media screen and (min-width: 1024px) {
  .header .header__menus.active_menu {
    background-size: 100% 50%;
  }
}
.header .header__menus.active_menu .menu {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .header__menus.active_menu .menu .menu-item {
  margin-bottom: 25px;
}
@media screen and (min-width: 700px) {
  .header .header__menus.active_menu .menu .menu-item {
    margin-bottom: 25px;
  }
}
.header__account-menus {
  position: relative;
}
.header__account-menus .lists {
  display: flex;
  align-items: center;
}
.header__account-menus .lists li:not(:last-child) {
  margin-right: 25px;
}
@media screen and (min-width: 700px) {
  .header__account-menus .lists li:not(:last-child) {
    margin-right: 30px;
  }
}
.header__account-menus .lists li a {
  background-repeat: no-repeat;
  font-size: 0px;
  padding: 10px;
  background-size: auto 100%;
  position: relative;
}
.header__account-menus .lists li.search a {
  background-image: url(../assets/icons/search.svg);
}
.header__account-menus .lists li.cart a {
  background-image: url(../assets/icons/cart.svg);
}
.header__account-menus .lists li.cart a span {
  font-size: 1.2rem;
  font-weight: normal;
  background: #F0666F;
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  text-align: center;
  line-height: 19px;
  top: -10px;
  right: -12px;
  border-radius: 20px;
}
.header__account-menus .lists li.user a {
  margin-right: -61px;
  background-image: url(../assets/icons/user.svg);
}

html.js.hiddin {
  overflow: hidden;
}

.header.header-active .header__logo {
  z-index: 999;
}
.header.header-active .header__logo a img {
  max-width: 166px;
}
.header.header-active .header__menu-toggle.active {
  z-index: 999;
}

.scrolling-disabled .cocos_iframe_div {
  position: relative;
}
.scrolling-disabled .cocos_iframe_div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.scrolling-disabled .cocos_iframe_div iframe {
  border: 0;
}

.path-user label {
  font-weight: 500;
}
.path-user input,
.path-user select {
  border: 1px solid #030504;
  border-radius: 8px;
  padding: 15px 20px;
  width: 100%;
}
.path-user .description, .path-user .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .path-user .faq-short-text {
  /* margin-top: -10px; */
}
.path-user .form-submit {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-user .form-submit {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-user .form-submit:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-user .form-submit {
  width: 100% !important;
}
.path-user:not(.user-logged-in) .region-content .user-login-form > *, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *, .path-user:not(.user-logged-in) .region-content-top .user-login-form > * {
  align-items: center;
}
.path-user:not(.user-logged-in) .region-content .user-login-form > *.js-form-type-password, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *.js-form-type-password, .path-user:not(.user-logged-in) .region-content-top .user-login-form > *.js-form-type-password {
  position: relative;
}
.path-user:not(.user-logged-in) .region-content .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-top .user-login-form > *.js-form-type-password + a {
  color: #000;
  font-weight: 500;
  position: absolute;
  right: 20px;
  font-size: 14px;
  margin-top: -10px;
}
@media screen and (min-width: 700px) {
  .path-user:not(.user-logged-in) .region-content .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-top .user-login-form > *.js-form-type-password + a {
    right: 50px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .path-user:not(.user-logged-in) .region-content .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *.js-form-type-password + a, .path-user:not(.user-logged-in) .region-content-top .user-login-form > *.js-form-type-password + a {
    right: 100px;
    margin-top: -10px;
  }
}
.path-user:not(.user-logged-in) .region-content .user-login-form > *.js-form-type-password button, .path-user:not(.user-logged-in) .region-content-bottom .user-login-form > *.js-form-type-password button, .path-user:not(.user-logged-in) .region-content-top .user-login-form > *.js-form-type-password button {
  position: absolute;
  right: 13px;
  top: 36px;
  opacity: 0.6;
  padding: 20px;
  margin: 0;
  font-size: 10px;
  background-size: 25px;
}

.user__form {
  display: flex;
  max-width: 1920px;
  margin: auto;
  justify-content: center;
}
.user__form > form {
  position: relative;
  padding: 40px 20px;
}
@media screen and (min-width: 700px) {
  .user__form > form {
    padding: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .user__form > form {
    padding: 100px;
  }
}
.user__form > form .confirm-parent,
.user__form > form .password-parent {
  max-width: 100%;
}
.user__form > form input,
.user__form > form select,
.user__form > form textarea {
  border-radius: 8px;
  width: 100%;
}
.user__form > form input + .password-strength,
.user__form > form select + .password-strength,
.user__form > form textarea + .password-strength {
  width: 100% !important;
}
.user__form > form .js-form-type-checkbox {
  display: flex;
  gap: 5px;
  margin-top: -10px;
}
.user__form > form input.form-checkbox {
  width: auto;
  display: inline-block;
  padding: 7px;
  border-radius: 4px;
  appearance: none;
  margin: 0;
}
.user__form > form input.form-checkbox + label {
  color: #707070;
  font-size: 14px;
}
.user__form > form input.form-checkbox:checked {
  background-color: #f0666f;
  border-color: #f0666f;
}
.user__form > form input.form-checkbox:checked + label {
  position: relative;
}
.user__form > form input.form-checkbox:checked + label:before {
  content: "";
  width: 3px;
  height: 8px;
  margin: 0px 4px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  left: -19px;
  top: 9px;
}
.user__form > form .form-actions {
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .user__form > form .form-actions {
    margin-top: 30px;
  }
}
.user__form > form.user-pass .form-item + p {
  line-height: normal;
  margin-top: -10px;
}
.user__form--tabs {
  text-align: center;
  margin-bottom: 30px;
}
.user__form--tabs ul {
  list-style: none;
  padding: 0;
}
.user__form--tabs ul li {
  display: inline-block;
  padding: 0 15px;
}
.user__form--tabs ul li a {
  color: #707070;
  font-weight: 400;
  font-size: 18px;
  position: relative;
}
.user__form--tabs ul li a:after {
  content: "";
  width: 50%;
  height: 3px;
  background: transparent;
  display: flex;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.user__form--tabs ul li.active a {
  color: #000;
  font-weight: bold;
}
.user__form--tabs ul li.active a:after {
  background-color: #F0666F;
}
.user__form .login-image-container {
  max-width: 50%;
  padding: 100px 60px 100px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .user__form .login-image-container {
    max-width: 100%;
    padding: 20px 0;
    display: block;
    text-align: center;
  }
}
.user__form .login-image-container .login-image {
  max-height: 550px;
}
.user__form .openid-connect-login-form {
  position: relative;
  display: block;
}
.user__form .openid-connect-login-form:before {
  content: "";
  border-bottom: solid 1px #cfd6e4;
  width: 100%;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  height: 0px;
}
.user__form .openid-connect-login-form:after {
  content: "OR";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
  font-weight: 400;
}
.user__form .openid-connect-login-form h2 {
  display: none;
}
.user__form .openid-connect-login-form .button {
  background-color: unset;
  background-repeat: no-repeat;
  color: #000;
  border: 1px solid #CFD6E4;
  margin-bottom: 1.5rem;
  transition: all ease 0.3s;
}
.user__form .openid-connect-login-form .button:hover {
  background-color: #cfd6e4;
}
.searchbar {
  position: absolute;
  right: 110px;
  top: -4px;
  width: 0;
  z-index: -1;
  transition: all ease 0.3s;
}
@media screen and (max-width: 699px) {
  .searchbar {
    right: 0;
    top: 2px;
  }
}
@media screen and (min-width: 700px) {
  .searchbar {
    right: 165px;
    top: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .searchbar {
    right: 120px;
    top: -4px;
  }
}
.searchbar .search__menu-close {
  background: url(../assets/icons/close.svg) no-repeat;
  background-size: 24px;
  background-position: 10px center;
  border: 0;
  padding: 20px;
  display: none;
  margin: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
}
.searchbar.open {
  width: 300px;
  z-index: 9;
}
.searchbar.open .form-text {
  border: 1px solid #B5B4B4 !important;
  border-radius: 10px !important;
  padding: 12px 40px 12px 10px !important;
  width: 100% !important;
  background: #ffffff url(../assets/icons/search.svg) no-repeat;
  background-size: 20px;
  background-position: 10px center;
  padding-left: 40px !important;
}
.searchbar.open .search__menu-close {
  display: block;
}
.searchbar .views-exposed-form {
  position: relative;
}
.searchbar .views-exposed-form label {
  display: block;
  font-weight: bold;
  display: none;
}
.searchbar .views-exposed-form .button {
  display: none !important;
  position: absolute;
  top: 30px;
  right: 1px;
  display: inline-block;
  color: #f1f1f1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 8px 23px;
  cursor: pointer;
  line-height: 22px;
  background-color: #f0666f;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid #f0666f;
}
.searchbar .views-exposed-form .form-text {
  border: 0;
  margin: 0;
  border-radius: 10px;
  padding: 0;
  width: 100%;
  height: 44px;
}
.searchbar .views-exposed-form .form-text:focus, .searchbar .views-exposed-form .form-text:active, .searchbar .views-exposed-form .form-text:focus-visible {
  border: solid 1px #F0656F !important;
  outline: 0;
}
.searchbar .views-exposed-form .form-item {
  width: 100%;
  margin: 0;
}

.openid-connect-login-form {
  display: none;
}

@media screen and (max-width: 767px) {
  .user__form {
    display: unset;
  }
  .user__form .login-image-container .login-image {
    width: 95%;
  }
}
.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #657BBC;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .footer-inner {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.footer-main {
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (min-width: 701px) {
  .footer-main {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1201px) {
  .footer-main {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1401px) {
  .footer-main {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.footer-main__img {
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  .footer-main__img {
    margin-bottom: 50px;
  }
}
.footer-main__img a img {
  max-width: 150px;
}
@media screen and (min-width: 1201px) {
  .footer-main__img a img {
    max-width: 200px;
  }
}
@media screen and (min-width: 1401px) {
  .footer-main__img a img {
    max-width: 276px;
  }
}
.footer-main__social-media {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .footer-main__social-media {
    margin-top: 30px;
  }
}
.footer-main__social-media .social-list {
  display: flex;
}
@media screen and (max-width: 700px) {
  .footer-main__social-media .social-list {
    justify-content: center;
  }
}
.footer-main__social-media .social-list li {
  width: 31px;
  height: 31px;
  border-radius: 100%;
  margin-right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .footer-main__social-media .social-list li {
    width: 38px;
    height: 38px;
  }
}
.footer-main__social-media .social-list li:last-child {
  margin-right: 0;
}
.footer-main__social-media .social-list li .footer__social {
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
}
.footer-main__social-media .social-list li .footer--social__facebook {
  background-image: url(../assets/icons/facebook.svg);
}
.footer-main__social-media .social-list li .footer--social__instagram {
  background-image: url(../assets/icons/instagram.svg);
}
.footer-main__social-media .social-list li .footer--social__twitter {
  background-image: url(../assets/icons/x.svg);
}
.footer-main__social-media .social-list li .footer--social__whatsapp {
  background-image: url(../assets/icons/whatsapp.svg);
}
.footer-main__column {
  margin-bottom: 0px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .footer-main__column {
    text-align: left;
    max-width: calc(50% - 40px);
  }
}
@media screen and (min-width: 1201px) {
  .footer-main__column {
    margin-bottom: 0;
    max-width: 25%;
    text-align: left;
  }
}
.footer-main__column h3 {
  color: #FEE073;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 300;
}
@media screen and (min-width: 1025px) {
  .footer-main__column h3 {
    margin-bottom: 52px;
    font-size: 2.2rem;
  }
}
.footer-main__column .footer-menu__items li {
  margin-bottom: 18px;
}
.footer-main__column .footer-menu__items li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .footer-main__column .footer-menu__items li {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-main__column .footer-menu__items li {
    margin-bottom: 23px;
  }
}
.footer-main__column .footer-menu__items li {
  line-height: 22px;
}
.footer-main__column .footer-menu__items li a {
  font-size: 16px;
  font-weight: 400;
  font-family: "Sora", sans-serif;
  display: inline-block;
  color: #FFFFFF;
  position: relative;
  line-height: 20px;
}
@media screen and (min-width: 1025px) {
  .footer-main__column .footer-menu__items li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1401px) {
  .footer-main__column .footer-menu__items li a {
    font-size: 18px;
    line-height: 24px;
  }
}
.footer-main__column .footer-menu__items li:last-child {
  margin-bottom: 0;
}
.footer-main__content-info .footer-phone a,
.footer-main__content-info .footer-email a {
  font-size: 14px;
  font-weight: 400;
  font-family: "Sora", sans-serif;
  display: inline-block;
  color: #FFFFFF;
  position: relative;
  line-height: 24px;
}
@media screen and (min-width: 1025px) {
  .footer-main__content-info .footer-phone a,
  .footer-main__content-info .footer-email a {
    font-size: 18px;
  }
}
.footer-main__content-info .footer-phone {
  margin-bottom: 12px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer-main__content-info .footer-phone {
    margin-bottom: 23px;
  }
}
.footer-main__content-info .footer-phone a {
  position: relative;
  padding-left: 38px;
}
.footer-main__content-info .footer-phone a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background-image: url(../assets/icons/phone_outline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 15px;
}
.footer-main__content-info .footer-email a {
  padding-left: 29px;
  position: relative;
  word-break: break-all;
}
.footer-main__content-info .footer-email a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  background-image: url(../assets/icons/mail_outline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 15px;
}
.footer-description {
  margin-bottom: 26px;
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  line-height: 22px;
  color: #FFFFFF;
  max-width: 5px;
  max-width: 414px;
}
@media screen and (min-width: 1025px) {
  .footer-description {
    margin-bottom: 53px;
    font-size: 1.8rem;
  }
}
.footer-description p {
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  line-height: 22px;
  color: #FFFFFF;
  max-width: 5px;
  max-width: 414px;
}
@media screen and (min-width: 1025px) {
  .footer-description p {
    font-size: 1.8rem;
  }
}
.footer-description a {
  color: #FFFFFF;
}
.footer-info {
  border-top: 1px solid #dcdcdc;
  padding: 20px 0;
}
.footer-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1025px) {
  .footer-info-inner {
    flex-direction: column-reverse;
  }
}
.footer-info__copyright {
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 2.2rem;
  margin-top: 10px;
}
@media screen and (max-width: 1025px) {
  .footer-info__copyright {
    margin-top: 10px;
  }
}
.footer-info__acc-logo img {
  display: block;
  width: 400px;
}
@media screen and (min-width: 1025px) {
  .footer-info__acc-logo img {
    max-width: 400px;
  }
}

/**
 * @file
 * Region content layout styles.
 */
.path-frontpage .region-content, .path-frontpage .region-content-top, .path-frontpage .region-content-bottom {
  padding: 0;
}

/**
 * @file
 * Content column layout styles.
 */
@media screen and (min-width: 700px) {
  .column2col {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}
.column2col__col:first-child {
  margin: 0 0 2em;
}
@media screen and (min-width: 700px) {
  .column2col__col:first-child {
    margin: 0;
  }
}
@media screen and (min-width: 700px) {
  .column2col__col {
    flex-basis: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 1025px) {
  .column2col__col {
    flex-basis: calc(50% - 2.5rem);
  }
}

@media screen and (min-width: 700px) {
  .column3col {
    display: flex;
    flex-flow: row wrap;
  }
}
@media screen and (min-width: 1025px) {
  .column3col {
    flex-flow: row nowrap;
  }
}
.column3col__col {
  margin: 0 0 2em;
}
@media screen and (min-width: 700px) {
  .column3col__col {
    flex: 0;
    flex-basis: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .column3col__col {
    flex-basis: calc(33.3333333333% - 0.2rem);
  }
}
@media screen and (min-width: 700px) {
  .column3col__col:nth-child(2) {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .column3col__col:nth-child(2) {
    margin: 0 0.4rem;
  }
}

.print-curriculum {
  position: relative;
  text-align: left;
  padding-left: calc(1.995rem + 20px);
  z-index: 1;
}
.print-curriculum:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.4rem;
  background-image: url("../images/print-white.svg");
  background-image: url("../images/print.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
.print-curriculum__inner {
  display: flex;
  justify-content: flex-end;
  padding: 0 1rem;
}
@media screen and (min-width: 1025px) {
  .print-curriculum--mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .print-curriculum--desktop {
    display: none;
  }
}
.print-curriculum:hover:before {
  background-image: url("../images/print-white.svg");
}

@media print {
  body.js-print-curriculum .si-toggle-container,
  body.js-print-curriculum .page-title__icons,
  body.js-print-curriculum .breadcrumb,
  body.js-print-curriculum .program__contact_info_section_heading,
  body.js-print-curriculum .block-nhcc-contact-information-block,
  body.js-print-curriculum .homehero__main,
  body.js-print-curriculum .quick-facts-wrapper,
  body.js-print-curriculum .wysiwyg,
  body.js-print-curriculum #block-nhcc-theme-local-tasks,
  body.js-print-curriculum .featbackblk,
  body.js-print-curriculum .accordion__top,
  body.js-print-curriculum .accordion__icon,
  body.js-print-curriculum .accordion__all,
  body.js-print-curriculum .accordion__icon,
  body.js-print-curriculum .field__item > .paragraph,
  body.js-print-curriculum .block-nhcc-looking-for-something-else-block,
  body.js-print-curriculum .header__menus,
  body.js-print-curriculum .print-curriculum.cta--button {
    display: none !important;
  }
  body.js-print-curriculum .intro-text,
  body.js-print-curriculum .program__page_content,
  body.js-print-curriculum .field__item > .paragraph.paragraph--type--embed-block {
    display: initial !important;
  }
  body.js-print-curriculum p,
  body.js-print-curriculum h1,
  body.js-print-curriculum h2,
  body.js-print-curriculum h3,
  body.js-print-curriculum h4,
  body.js-print-curriculum h5,
  body.js-print-curriculum h6,
  body.js-print-curriculum span {
    color: #000000;
    page-break-inside: avoid;
  }
  body.js-print-curriculum ol li, body.js-print-curriculum ul li {
    list-style: initial;
  }
  body.js-print-curriculum ol li::before, body.js-print-curriculum ul li::before {
    content: none;
  }
  body.js-print-curriculum .accordion__toggle {
    margin: 2rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
  }
  body.js-print-curriculum .table.table--wysiwyg {
    margin: 0 0 1rem;
  }
  body.js-print-curriculum table,
  body.js-print-curriculum th,
  body.js-print-curriculum td {
    border-spacing: 1px !important;
    border: 1px solid #000000 !important;
    font-size: 14px !important;
  }
  body.js-print-curriculum table,
  body.js-print-curriculum table tr td,
  body.js-print-curriculum table tr th {
    page-break-inside: avoid;
  }
  body.js-print-curriculum table thead {
    position: static;
    background-color: transparent !important;
  }
  body.js-print-curriculum th {
    color: #000000;
  }
  body.js-print-curriculum th,
  body.js-print-curriculum td {
    padding: 5px;
  }
  body.js-print-curriculum th:last-of-type, body.js-print-curriculum th:nth-last-of-type(2),
  body.js-print-curriculum td:last-of-type,
  body.js-print-curriculum td:nth-last-of-type(2) {
    width: 15px !important;
  }
  body.js-print-curriculum .intro-text {
    border: none;
  }
  body.js-print-curriculum .region-banner {
    background-color: transparent !important;
  }
  body.js-print-curriculum .region-banner:before, body.js-print-curriculum .region-banner:after {
    content: none !important;
  }
}

.two-column {
  background-color: #FFFFFF;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .two-column {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1201px) {
  .two-column {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.two-column__section {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center;*/
}
.two-column__col {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .two-column__col {
    flex-shrink: 0;
    width: 50%;
  }
}
.two-column__heading {
  max-width: 80%;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .two-column__heading {
    max-width: 550px;
  }
}
@media screen and (min-width: 1201px) {
  .two-column__heading {
    max-width: 640px;
  }
}
.two-column__description {
  max-width: 741px;
  display: block;
}
.two-column__button {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1201px) {
  .two-column__button {
    margin-top: 30px;
  }
}
.two-column__image {
  margin-top: 38px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .two-column__image {
    margin: auto;
    width: 50%;
    /*margin-left: 140px;*/
  }
}

.two-column-v2 {
  background-color: #fff0b9;
  padding-top: 52px;
  padding-bottom: 52px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1201px) {
  .two-column-v2 .description, .two-column-v2 .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .two-column-v2 .faq-short-text {
    padding-right: 81px;
  }
}
@media screen and (min-width: 1201px) {
  .two-column-v2 .button-outline {
    margin-top: 70px;
  }
}
.two-column-v2 .button-outline a {
  border: 1px solid #657BBC;
  color: #657BBC;
}
.two-column-v2 .button-outline a:hover {
  background-color: #657BBC;
  color: #FFFFFF;
}
.two-column-v2 .two-column__content {
  margin-top: 100px;
  position: relative;
}
.two-column-v2 .two-column__image {
  position: relative;
}
.two-column-v2 .two-column__image img {
  display: block;
}
.two-column-v2 .two-column__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  /* background-image: url(../assets/animations/Homepage/leaf-unscreen.gif);*/
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 200px;
  height: 260px;
  width: 100%;
  transform: translateX(-90%) rotate(310deg);
  z-index: -1;
}
.two-column-v2 .two-column__image::after {
  content: "";
  /* background-image: url(../assets/images/white_bg.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 40px;
  top: -20px;
  width: calc(100% - 40px);
  height: 150%;
  z-index: -1;
}

.two-column-v2.view-more-than-a-book-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 325px;
  height: 190px;
  /* background-image: url(../assets/images/giraffee-unscreen.gif);*/
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg) translateX(150%);
}
.two-column-v2.view-more-than-a-book-section::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  /* background-image: url(../assets/images/Bird.gif);*/
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 140px;
  max-width: 200px;
  transform: translateX(-150%);
}

#explore-by-heritage .two-column__image {
  margin: auto;
}

.explore-age {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .explore-age {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.explore-age {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
.explore-age::before {
  content: "";
  background-image: url(../assets/images/cloud-group-2.0.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  max-width: 120px;
  height: 86px;
}
@media screen and (min-width: 700px) {
  .explore-age::before {
    max-width: 200px;
    height: 100px;
    left: 15%;
  }
}
@media screen and (min-width: 1201px) {
  .explore-age::before {
    top: -10%;
    left: 12%;
    width: 100%;
    min-height: 200px;
    max-width: 340px;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age::before {
    top: -8%;
    min-height: 280px;
  }
}
@media screen and (min-width: 1025px) {
  .explore-age::after {
    content: "";
    position: absolute;
    right: -101px;
    top: 27%;
    background-image: url(../assets/images/new-giraffee-unscreen.png);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 300px;
    height: 150px;
    width: 100%;
    transform: rotate(90deg);
    transform-origin: center;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1201px) {
  .explore-age::after {
    max-width: 474px;
    height: 273px;
    width: 100%;
  }
}
@media screen and (min-width: 1201px) {
  .explore-age {
    padding-top: 15rem;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age {
    padding-top: 25rem;
  }
}
.explore-age .view-header {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .explore-age .view-header {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age .view-header {
    margin-bottom: 70px;
  }
}
.explore-age .view-header h2 {
  max-width: 630px;
  margin-top: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .explore-age .view-header h2 {
    margin-bottom: 20px;
  }
}
.explore-age .view-header .description, .explore-age .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .explore-age .view-header .faq-short-text {
  max-width: 828px;
}
.explore-age .child__card {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
  border: solid 1px #ddd;
}
.explore-age .child__card:before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, rgba(54, 72, 56, 0)), to(rgb(0, 0, 0)));
  background: -olinear-gradient(360deg, rgba(54, 72, 56, 0) 70%, rgb(0, 0, 0) 100%);
  background: linear-gradient(360deg, rgba(54, 72, 56, 0) 70%, rgb(0, 0, 0) 100%);
  mix-blend-mode: multiply;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
  -ms-transform: matrix(1, 0, 0, -1, 0, 0);
  transform: matrix(1, 0, 0, -1, 0, 0);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.explore-age .child__image img {
  display: block;
  width: 100%;
}
.explore-age .child__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 10px;
  z-index: 2;
}
@media screen and (min-width: 1401px) {
  .explore-age .child__content {
    padding: 22px 10px;
  }
}
@media screen and (min-width: 1601px) {
  .explore-age .child__content {
    padding: 22px;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age .child__button a {
    font-size: 18px;
    padding: 12px 32px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1601px) {
  .explore-age .child__button a {
    font-size: 18px;
    padding: 18px 46px;
    border-radius: 10px;
  }
}
.explore-age .child__name {
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 700px) {
  .explore-age .child__name {
    font-size: 17px;
  }
}
@media screen and (min-width: 1401px) {
  .explore-age .child__name {
    font-size: 22px;
  }
}
@media screen and (min-width: 1601px) {
  .explore-age .child__name {
    font-size: 25px;
  }
}
.explore-age .views-view-grid > .row {
  margin: 0 -15px;
}
.explore-age .views-view-grid > .row > * {
  padding: 0 15px;
}

* {
  /* background-color: #fff !important;*/
}

.simplenews-subscriber-form::before {
  content: "";
  position: absolute;
  background-image: url(../assets/images/colud-group.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
}
.simplenews-subscriber-form {
  background-color: #fff0b9;
  padding: 5rem;
}
@media screen and (min-width: 1025px) {
  .simplenews-subscriber-form {
    padding: 72px;
  }
}
.simplenews-subscriber-form {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .simplenews-subscriber-form {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .simplenews-subscriber-form {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.simplenews-subscriber-form {
  clear: both;
  text-align: center;
}
.simplenews-subscriber-form .js-form-item-message {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 3.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 1025px) {
  .simplenews-subscriber-form .js-form-item-message {
    font-size: 40px;
    margin: 0;
    margin-bottom: 20px;
    line-height: 5rem;
  }
}
.simplenews-subscriber-form .description, .simplenews-subscriber-form .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .simplenews-subscriber-form .faq-short-text {
  font-size: 16px;
  margin: auto;
  margin-bottom: 36px;
  max-width: 638px;
  font-weight: 400;
  line-height: 2.2rem;
}
@media screen and (min-width: 1025px) {
  .simplenews-subscriber-form .description, .simplenews-subscriber-form .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .simplenews-subscriber-form .faq-short-text {
    margin-bottom: 70px;
    font-size: 2rem;
    line-height: 3rem;
  }
}
.simplenews-subscriber-form form {
  max-width: 800px;
  margin: auto;
  position: relative;
  text-align: center;
}
.simplenews-subscriber-form .js-form-type-email label {
  display: none;
}
.simplenews-subscriber-form .js-form-type-email input {
  border: 1px solid #030504;
  border-radius: 35px;
  padding: 12px 125px 12px 23px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .simplenews-subscriber-form .js-form-type-email input {
    padding: 20px 180px 20px 20px;
  }
}
.simplenews-subscriber-form .js-form-type-email .description, .simplenews-subscriber-form .js-form-type-email .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .simplenews-subscriber-form .js-form-type-email .faq-short-text {
  display: none;
}
.simplenews-subscriber-form .form-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}
.simplenews-subscriber-form .form-actions .button,
.simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .simplenews-subscriber-form .form-actions .button,
  .simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.simplenews-subscriber-form .form-actions .button:hover,
.simplenews-subscriber-form .form-actions form .form-actions input[type=submit]:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.simplenews-subscriber-form .form-actions .button,
.simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
  border-radius: 35px !important;
  padding: 18px 28px !important;
  line-height: 23px !important;
  /*@media screen and (min-width: 1025px)and(max-width: 1440px) {
      padding: 18px 28px !important;
  }*/
  /* @media screen and (min-width: 1025px) {
      padding: 18px 28px !important;
  }*/
}
@media screen and (min-width: 375px) {
  .simplenews-subscriber-form .form-actions .button,
  .simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
    padding: 10px 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .simplenews-subscriber-form .form-actions .button,
  .simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
    padding: 10px 25px !important;
  }
}
@media screen and (min-width: 1024px) {
  .simplenews-subscriber-form .form-actions .button,
  .simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
    padding: 18px 28px !important;
  }
}
@media screen and (max-width: 1440px) {
  .simplenews-subscriber-form .form-actions .button,
  .simplenews-subscriber-form .form-actions form .form-actions input[type=submit] {
    padding: 18px 30px !important;
  }
}

#personalization-form {
  background-color: #F1F1F1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  #personalization-form {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  #personalization-form {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
#personalization-form #edit-next--384kU-nsdaw,
#personalization-form #edit-prev--U7KmDkZ_xRw {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  #personalization-form #edit-next--384kU-nsdaw,
  #personalization-form #edit-prev--U7KmDkZ_xRw {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
#personalization-form #edit-next--384kU-nsdaw:hover,
#personalization-form #edit-prev--U7KmDkZ_xRw:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
#personalization-form > * {
  padding: 30px 0;
}
@media screen and (min-width: 1025px) {
  #personalization-form > * {
    padding: 40px 0;
    /*margin-left:19% !important;
    display: inline-block !important;*/
  }
}
@media screen and (min-width: 1401px) {
  #personalization-form > * {
    padding: 60px 0 0 0;
  }
}
#personalization-form .book_cover_radios,
#personalization-form .gift_wrap_radios {
  display: none !important;
}
#personalization-form #multistep-form-wrapper {
  max-width: 800px;
  margin: auto;
}
#personalization-form #multistep-form-wrapper .note_title {
  margin-top: 3rem;
  text-align: center;
  font-size: 22px;
  line-height: 2.8rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 1401px) {
  #personalization-form #multistep-form-wrapper .note_title {
    margin-top: 5rem;
    font-size: 22px;
    line-height: 3.3rem;
  }
}
#personalization-form #multistep-form-wrapper .note_title + .note_add_message {
  display: none;
}
#personalization-form #multistep-form-wrapper .note_add_message {
  text-align: center;
  font-size: 14px;
  line-height: 2rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: #000000;
}
@media screen and (min-width: 1201px) {
  #personalization-form #multistep-form-wrapper .note_add_message {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 1401px) {
  #personalization-form #multistep-form-wrapper .note_add_message {
    font-size: 20px;
    line-height: 3rem;
  }
}
#personalization-form .fieldgroup {
  text-align: center;
}
#personalization-form .fieldgroup.book_cover_radios + .cover_image_card_section {
  text-align: center;
}
#personalization-form .fieldgroup.book_cover_radios + .cover_image_card_section .book_cover_card:first-child:before {
  content: "Most Popular";
  background: #B2BDDE;
  position: absolute;
  left: 0;
  top: 30px;
  color: #fff;
  padding: 10px 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 18px;
  font-weight: 500;
}
#personalization-form legend {
  width: 100%;
}
#personalization-form .fieldset-legend {
  font-size: 30px;
  line-height: 4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  font-family: "Rowdies", sans-serif;
}
#personalization-form .form-radios {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 600px;
  margin: auto;
  gap: 20px;
}
#personalization-form .form-radios .js-form-item.form-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
}
#personalization-form .form-radios .js-form-item.form-item [type=checkbox],
#personalization-form .form-radios .js-form-item.form-item [type=radio] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#personalization-form .form-radios .js-form-item.form-item.active {
  opacity: 1;
}
#personalization-form .form-radios .js-form-item.form-item::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: #F0666F;
  color: #FFFFFF;
  font-size: 2.5rem;
  display: flex;
  font-weight: 300;
  font-family: "Rowdies", sans-serif;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60px;
  height: 60px;
}
#personalization-form .form-radios .js-form-item.form-item:nth-child(1)::before {
  content: "1";
}
#personalization-form .form-radios .js-form-item.form-item:nth-child(2)::before {
  content: "2";
}
#personalization-form .form-radios .js-form-item.form-item:nth-child(3)::before {
  content: "3";
}
#personalization-form .form-radios .js-form-item.form-item.completed::before {
  content: "✓";
}
#personalization-form .form-radios .js-form-item.form-item .option {
  font-size: 17px;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  width: 245px;
  margin-top: 76px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}
#personalization-form .js-form-item.form-item.js-form-type-textarea {
  margin-top: 2rem;
}
@media screen and (min-width: 1025px) {
  #personalization-form .js-form-item.form-item.js-form-type-textarea {
    margin-top: 3rem;
    margin-bottom: 10px;
  }
}
#personalization-form .js-form-item.form-item.js-form-type-textarea #note_text_area {
  border-radius: 10px;
  border: 1px solid #707070;
  background-color: #FFFFFF;
  font-size: 16px;
  min-height: 160px;
  padding: 16px;
  color: #000000;
}
@media screen and (min-width: 1025px) {
  #personalization-form .js-form-item.form-item.js-form-type-textarea #note_text_area {
    font-size: 20px;
    padding: 25px;
    min-height: 300px;
  }
}
#personalization-form .note_suffix_info #note_reset_btn {
  font-size: 1px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: #F0666F;
  line-height: 2rem;
}
@media screen and (min-width: 1025px) {
  #personalization-form .note_suffix_info #note_reset_btn {
    font-size: 16px;
  }
}
#personalization-form .note_word_count #multistep_word_count {
  display: block;
  color: #000000;
  font-size: 14px;
  line-height: 2rem;
}
@media screen and (min-width: 1025px) {
  #personalization-form .note_word_count #multistep_word_count {
    font-size: 16px;
  }
}
#personalization-form #edit-next {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  #personalization-form #edit-next {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
#personalization-form #edit-next:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
#personalization-form #edit-next {
  background-color: #F0666F;
  color: #FFFFFF;
  margin: auto;
  display: block;
}
#personalization-form .note_word_count {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
}
#personalization-form .note_word_count #multistep_word_count {
  font-size: 16px;
}

.path-cart .banner {
  width: calc(65% - 28px);
  padding: 2rem 0 5rem;
}
@media screen and (max-width: 1025px) {
  .path-cart .banner {
    width: 100%;
  }
}
@media screen and (max-width: 1401px) {
  .path-cart .banner {
    padding: 2rem 0 6rem;
  }
}
.path-cart .banner:before {
  display: none !important;
}
.path-cart .banner .star {
  display: none !important;
}
.path-cart .banner .banner__main .view-content .slick .slick-arrow {
  width: 40px !important;
  height: 40px !important;
}
@media screen and (max-width: 700px) {
  .path-cart .banner .view-header h4 {
    margin-bottom: 0;
  }
}
.path-cart .layout-container {
  background-color: #F1F1F1;
}
.path-cart .cart-empty-page {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-cart .cart-empty-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-cart .cart-empty-page {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-cart .cart-empty-page {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.path-cart .view-commerce-cart-form {
  background-color: #F1F1F1;
  padding-top: 10px;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form {
    padding-top: 30px;
  }
}
.path-cart .view-commerce-cart-form {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-cart .view-commerce-cart-form {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-cart .view-commerce-cart-form {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-cart .view-commerce-cart-form {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.path-cart .page-title {
  margin: 0;
  background-color: #f1f1f1;
  padding: 30px 35px 0px 35px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1401px) {
  .path-cart .page-title {
    padding: 40px 140px 0 140px;
  }
}
.path-cart .page-title {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-cart .page-title {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-cart .page-title {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form form .views-row {
  width: calc(65% - 35px);
  margin-bottom: 20px;
}
@media screen and (max-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form form .views-row {
    width: 100%;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container {
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  padding: 20px;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container {
    padding: 30px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .cart-product-image {
  margin-right: -10px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .cart-product-image {
    width: 180px;
    margin-right: -40px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .cart-product-image img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transform: rotate(24deg);
  margin-left: -20px;
  max-width: inherit;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .cart-product-image img {
    width: 230px;
    height: 190px;
    margin-left: -55px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .product-flex-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-left: 24px;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .product-flex-container {
    width: calc(100% - 190px);
  }
}
@media screen and (min-width: 1201px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .product-flex-container {
    align-items: center;
    flex-direction: unset;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .product-flex-container .product-unit-price {
  font-size: 19px;
  line-height: 20px;
  font-family: "Rowdies", sans-serif;
  color: #F0666F;
  margin-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .product-flex-container .product-unit-price {
    position: absolute;
    right: 0;
    bottom: 70px;
    line-height: 37px;
    font-size: 24px;
    margin-top: 2rem;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-buttons {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  width: 100%;
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .remove-button {
  position: relative;
  display: flex;
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .remove-button::before {
  content: "";
  background-image: url(../assets/icons/sm-delete.svg);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .remove-button::before {
    background-image: url(../assets/icons/delete__outline.png);
    width: 18px;
    height: 19px;
    top: 0;
    left: -10px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .remove-button input {
  background-color: unset;
  border: unset;
  color: #F0666F;
  font-size: 0px;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .remove-button input {
    font-size: 16px;
    padding-left: 5px;
    position: inherit;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-button {
  position: relative;
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-button a {
  font-size: 0;
  display: flex;
  align-items: center;
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-button a {
    font-size: 16px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-button a::before {
  content: "";
  left: -40px;
  top: 4px;
  background-image: url(../assets/icons/sm-eye.svg);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 5px;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .preview-button a::before {
    background-image: url(../assets/icons/eye-outline.png);
    width: 25px;
    height: 16px;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .edit-button {
  position: relative;
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .edit-button a {
  font-size: 0;
  display: flex;
  align-items: center;
  color: #657BBC;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .edit-button a {
    font-size: 16px;
    font-weight: normal;
  }
}
.path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .edit-button a::before {
  content: "";
  left: -40px;
  top: 4px;
  background-image: url(../assets/icons/sm-edit.svg);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 5px;
}
@media screen and (min-width: 1025px) {
  .path-cart .view-commerce-cart-form.view-id-commerce_cart_form .cart-flex-container .edit-button a::before {
    background-image: url(../assets/icons/edit-1_outline.png);
    width: 16px;
    height: 16px;
  }
}
.path-cart .product {
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 10px;
}
@media screen and (min-width: 1025px) {
  .path-cart .product {
    font-size: 16px;
    flex-direction: column;
    justify-content: unset;
    column-gap: 0;
    row-gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .path-cart .product {
    font-size: 16px;
    flex-direction: column;
    justify-content: unset;
    column-gap: 0;
    row-gap: 0;
  }
}
.path-cart .product span {
  color: #9A9A9A;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .path-cart .product span {
    color: #000000;
  }
}
.path-cart .product .product-title {
  font-family: "Rowdies", sans-serif;
  font-size: 20px;
  line-height: 2.4rem;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .path-cart .product .product-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 37px;
    margin-bottom: 10px;
  }
}
.path-cart .product .product-childs-name {
  display: inline-flex;
}
.path-cart .product .product-childs-name span {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0px;
  margin-right: 5px;
}
.path-cart .product .product-language {
  display: inline-flex;
}
.path-cart .product .product-language span {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0px;
  margin-right: 5px;
}
.path-cart .product .product-gift-wrap-cover {
  display: inline-flex;
}
.path-cart .product .product-gift-wrap-cover .gift-wrap-label {
  margin-right: 5px;
}
.path-cart .product .product-gift-wrap-cover .item-list {
  margin-left: 0;
}
.path-cart .product .product-gift-wrap-cover .item-list ul {
  list-style: none;
  padding: 0;
}
.path-cart .product .product-gift-wrap-cover .item-list ul li {
  margin: 0;
  display: inline-block;
}
.path-cart .product .product-gift-wrap-cover .item-list ul li:not(:last-child):after {
  content: ", ";
  margin-right: 5px;
}
.path-cart .product .product-book-cover {
  display: inline-flex;
}
@media screen and (max-width: 1025px) {
  .path-cart .product .product-book-cover {
    /*  flex-direction: column; */
  }
}
.path-cart .product .product-book-cover span {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0px;
  margin-right: 5px;
}
@media screen and (max-width: 1025px) {
  .path-cart .product > * {
    display: block !important;
    min-width: 100px;
    line-height: normal;
  }
}

.owt-order-summary-section {
  width: 36%;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .owt-order-summary-section {
    width: 100%;
    padding: 20px;
    position: static;
  }
}
.owt-order-summary-section h3 {
  font-weight: 300;
  margin-top: 0;
}
.owt-order-summary-section > div {
  position: relative;
}
@media screen and (min-width: 1401px) {
  .owt-order-summary-section > div#edit-coupon-redemption .button {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.owt-order-summary-section > div .coupon-redemption-form__coupons {
  margin-bottom: 10px;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons table {
  width: 100%;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons table td:first-child {
  font-weight: bold;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons table td:last-child {
  text-align: right;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons h3 {
  color: green;
  font-size: 16px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  display: none;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons .button {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .owt-order-summary-section > div .coupon-redemption-form__coupons .button {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.owt-order-summary-section > div .coupon-redemption-form__coupons .button:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.owt-order-summary-section > div .coupon-redemption-form__coupons .button {
  min-height: auto !important;
  width: auto;
  padding: 5px 14px !important;
  font-size: 14px !important;
  margin: 0 0 0 0;
}
.owt-order-summary-section > div .button {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .owt-order-summary-section > div .button {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.owt-order-summary-section > div .button:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.owt-order-summary-section > div .button {
  background: #dcdcdc;
  border-color: #dcdcdc;
  color: #000000;
  width: 100%;
  padding: 10px 25px !important;
  font-size: 16px !important;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 1401px) {
  .owt-order-summary-section > div .button {
    min-height: 48px;
    width: max-content;
    margin: 0;
  }
}
.owt-order-summary-section .order-summary-heading {
  text-align: left;
  font-size: 30px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  line-height: 3.7rem;
  margin: 0 0 20px 0;
  padding: 0;
}
.owt-order-summary-section .total-items,
.owt-order-summary-section .order-total-line__subtotal,
.owt-order-summary-section .order-total-line__adjustment,
.owt-order-summary-section .order-total-line__total {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 5px;
}
.owt-order-summary-section .order-total-line__adjustment--promotion * {
  font-weight: 400 !important;
  color: green;
  text-align: left;
  line-break: normal;
}
.owt-order-summary-section .order-total-line-label {
  font-size: 16px;
  font-family: "Sora", sans-serif;
  padding: 0;
}
.owt-order-summary-section .order-total-line-value {
  font-size: 16px;
  font-family: "Sora", sans-serif;
  line-height: 2.4rem;
  color: #000000;
  font-weight: 500;
}
.owt-order-summary-section .order-total-line__total {
  margin-top: 15px;
  font-size: 18px;
}
.owt-order-summary-section .order-total-line__total > * {
  font-size: 18px;
}
.owt-order-summary-section .order-total-line__total .order-total-line-value {
  font-weight: 600;
}
.owt-order-summary-section #edit-actions {
  text-align: center;
  margin-top: 0;
}
.owt-order-summary-section #edit-actions #edit-checkout {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .owt-order-summary-section #edit-actions #edit-checkout {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.owt-order-summary-section #edit-actions #edit-checkout:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.owt-order-summary-section #edit-actions #edit-checkout {
  cursor: pointer;
  width: 100%;
  padding: 19px 19px;
  border-radius: 15px;
  margin: 0;
  background-color: #F0666F;
  color: #FFFFFF !important;
}
@media screen and (max-width: 700px) {
  .owt-order-summary-section #edit-actions #edit-checkout {
    border-radius: 4px;
  }
}
.owt-order-summary-section .js-form-item #edit-coupon-redemption-code,
.owt-order-summary-section .js-form-item .form-text {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  border: 1px solid #dcdcdc;
  max-width: 100%;
}
@media screen and (min-width: 1401px) {
  .owt-order-summary-section .js-form-item #edit-coupon-redemption-code,
  .owt-order-summary-section .js-form-item .form-text {
    max-width: calc(100% - 110px);
  }
}
.owt-order-summary-section .js-form-item.form-item-coupon-redemption-code label {
  margin-bottom: 0;
  display: block;
}
@media screen and (min-width: 1025px) {
  .owt-order-summary-section .js-form-item.form-item-coupon-redemption-code label {
    margin-bottom: 8px;
  }
}
.owt-order-summary-section .owt-order-summary-section {
  width: 100%;
  padding: 0;
}
.owt-order-summary-section .owt-order-summary-section > h3 {
  display: none;
}

.coupon_code_info {
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .coupon_code_info {
    font-size: 2rem;
  }
}
.coupon_code_info .coupon_info_line {
  text-align: left;
}
.coupon_code_info .coupon_info_line .font-weight-bold {
  font-size: 16px;
  margin: 0 5px;
}
@media screen and (min-width: 1025px) {
  .coupon_code_info .coupon_info_line .font-weight-bold {
    font-size: 18px;
  }
}
.coupon_code_info .coupon_info_line .font-weight-bold {
  font-weight: 600;
}

.field--type-text-with-summary.field--label-hidden.field__item {
  padding: 20px 35px 2px 35px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .field--type-text-with-summary.field--label-hidden.field__item {
    padding: 0 140px 20px 140px;
  }
}
.field--type-text-with-summary.field--label-hidden.field__item {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .field--type-text-with-summary.field--label-hidden.field__item {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .field--type-text-with-summary.field--label-hidden.field__item {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.field--type-text-with-summary.field--label-hidden.field__item {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .field--type-text-with-summary.field--label-hidden.field__item .coupon_code_info {
    width: 65%;
    max-width: 100%;
    margin-right: auto;
  }
}
.field--type-text-with-summary.field--label-hidden.field__item p a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .field--type-text-with-summary.field--label-hidden.field__item p a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.field--type-text-with-summary.field--label-hidden.field__item p a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}

.page-node-type-page .main-content:has(.field--type-text-with-summary.field--label-hidden.field__item) {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .page-node-type-page .main-content:has(.field--type-text-with-summary.field--label-hidden.field__item) {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .page-node-type-page .main-content:has(.field--type-text-with-summary.field--label-hidden.field__item) {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-node-type-page .main-content:has(.field--type-text-with-summary.field--label-hidden.field__item) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.page-node-type-page .field--type-text-with-summary.field--label-hidden.field__item {
  padding: 0 !important;
}
.page-node-type-page .field--type-text-with-summary.field--label-hidden.field__item p a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .page-node-type-page .field--type-text-with-summary.field--label-hidden.field__item p a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.page-node-type-page .field--type-text-with-summary.field--label-hidden.field__item p a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}

.cart--banner.cart__banner {
  background-color: #F1F1F1;
  padding: 35px 35px 80px 35px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .cart--banner.cart__banner {
    padding: 50px 140px 145px 140px;
  }
}
.cart--banner.cart__banner {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .cart--banner.cart__banner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .cart--banner.cart__banner {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.cart--banner.cart__banner .view-header h4 {
  margin: 0;
  text-align: center;
}
.cart--banner.cart__banner::before {
  display: none;
}
.cart--banner.cart__banner .star {
  display: none;
}
.cart--banner.cart__banner .banner__main {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .cart--banner.cart__banner .banner__main {
    max-width: 65%;
    margin-right: auto;
    margin-left: unset;
  }
}
.cart--banner.cart__banner .slick__arrow button {
  width: 50px !important;
  height: 50px !important;
}

.path-customize-your-book .layout-content {
  background-color: #F1F1F1;
}
.path-customize-your-book .layout-content h2 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 35px 40px 35px;
  text-align: center;
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .layout-content h2 {
    padding: 40px 140px 40px 140px;
  }
}
.path-customize-your-book .layout-content h2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-customize-your-book .layout-content h2 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-customize-your-book .layout-content h2 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-customize-your-book .layout-content #personalization-form--imv2lVw1ERw {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 35px 60px 35px;
}
@media screen and (min-width: 1401px) {
  .path-customize-your-book .layout-content #personalization-form--imv2lVw1ERw {
    padding: 60px 140px 145px 140px;
  }
}

.block-owt-product-review,
.view-product-reviews {
  background-color: #FFFFFF;
  margin-left: 8% !important;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .block-owt-product-review,
  .view-product-reviews {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .block-owt-product-review,
  .view-product-reviews {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.block-owt-product-review.block-add-product-review,
.view-product-reviews.block-add-product-review {
  padding-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .block-owt-product-review.block-add-product-review,
  .view-product-reviews.block-add-product-review {
    padding-bottom: 6rem !important;
  }
}
.block-owt-product-review.block-review-graph-book,
.view-product-reviews.block-review-graph-book {
  padding-top: 40px;
}
@media screen and (min-width: 1025px) {
  .block-owt-product-review.block-review-graph-book,
  .view-product-reviews.block-review-graph-book {
    padding-top: 68px;
    margin-left: 8%;
    position: relative;
  }
}
.block-owt-product-review.block-review-graph-book .review,
.view-product-reviews.block-review-graph-book .review {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: -21px;
  margin-top: 40px;
  border-bottom: solid 1px #DCDCDC;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  .block-owt-product-review.block-review-graph-book .review,
  .view-product-reviews.block-review-graph-book .review {
    justify-content: center;
    margin-top: 20px;
  }
}
.block-owt-product-review.block-review-graph-book .review_stats,
.view-product-reviews.block-review-graph-book .review_stats {
  width: 200px;
  text-align: center;
}
.block-owt-product-review.block-review-graph-book .review__row,
.view-product-reviews.block-review-graph-book .review__row {
  width: 100%;
  max-width: 292px;
}
.block-owt-product-review.block-review-graph-book .review .average_rating,
.view-product-reviews.block-review-graph-book .review .average_rating {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.block-owt-product-review.block-review-graph-book .review .no_of_reviews,
.view-product-reviews.block-review-graph-book .review .no_of_reviews {
  font-weight: bold;
}
.block-owt-product-review.block-review-graph-book .review .progress,
.view-product-reviews.block-review-graph-book .review .progress {
  display: flex;
  height: 1.2rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #DCDCDC !important;
  border-radius: 8px;
  width: 100%;
}
.block-owt-product-review.block-review-graph-book .review .progress-wrapper,
.view-product-reviews.block-review-graph-book .review .progress-wrapper {
  display: flex;
  align-items: center;
}
.block-owt-product-review.block-review-graph-book .review .progress-wrapper + .progress-wrapper,
.view-product-reviews.block-review-graph-book .review .progress-wrapper + .progress-wrapper {
  margin-top: 1rem;
}
.block-owt-product-review.block-review-graph-book .review .progress-bar,
.view-product-reviews.block-review-graph-book .review .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #F0666F !important;
  transition: width 0.6s ease;
}
.block-owt-product-review.block-review-graph-book .review .rating-number,
.view-product-reviews.block-review-graph-book .review .rating-number {
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
}
.block-owt-product-review.block-review-graph-book .review .starrating,
.view-product-reviews.block-review-graph-book .review .starrating {
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 10px;
}
.block-owt-product-review.block-review-graph-book .review .starrating .rate-image,
.view-product-reviews.block-review-graph-book .review .starrating .rate-image {
  background: url(../assets/images/off-star.svg);
  background-size: 100%;
  width: 25px;
  height: 25px;
  margin: 0 2px;
}
.block-owt-product-review.block-review-graph-book .review .starrating .rate-image.star7-on,
.view-product-reviews.block-review-graph-book .review .starrating .rate-image.star7-on {
  background-image: url(../assets/images/on-star.svg);
}
.block-owt-product-review .post_review_btn,
.view-product-reviews .post_review_btn {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .block-owt-product-review .post_review_btn,
  .view-product-reviews .post_review_btn {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.block-owt-product-review .post_review_btn:hover,
.view-product-reviews .post_review_btn:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.block-owt-product-review .post_review_btn,
.view-product-reviews .post_review_btn {
  margin-bottom: 10px;
  margin-left: -99px;
}
.block-owt-product-review .reviews,
.view-product-reviews .reviews {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .block-owt-product-review .reviews,
  .view-product-reviews .reviews {
    flex-wrap: wrap;
  }
}
.block-owt-product-review .reviews__name,
.view-product-reviews .reviews__name {
  width: 200px;
  flex-shrink: 0;
  font-weight: bold;
}
.block-owt-product-review .reviews__star,
.view-product-reviews .reviews__star {
  height: 25px;
}
.block-owt-product-review .reviews__comment,
.view-product-reviews .reviews__comment {
  display: block;
  margin-top: 10px;
}
.block-owt-product-review .reviews__flag,
.view-product-reviews .reviews__flag {
  margin-top: 10px;
}
.block-owt-product-review .reviews__flag a,
.view-product-reviews .reviews__flag a {
  color: #353333;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
}
.block-owt-product-review .reviews .rate-image,
.view-product-reviews .reviews .rate-image {
  background: url(../assets/images/off-star.svg);
  background-size: 100%;
  width: 25px;
  height: 25px;
  margin: 0 2px;
}
.block-owt-product-review .reviews .rate-image.star7-on,
.view-product-reviews .reviews .rate-image.star7-on {
  background-image: url(../assets/images/on-star.svg);
}
.block-owt-product-review .views-row,
.view-product-reviews .views-row {
  /* &:not(:last-child) { */
  border-bottom: solid 1px #DCDCDC;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  margin-left: 9%;
  /* } */
}
.block-owt-product-review .views-row:last-child,
.view-product-reviews .views-row:last-child {
  /* margin-left:25%; */
}
.block-owt-product-review .views-row:nth-of-type(4),
.view-product-reviews .views-row:nth-of-type(4) {
  /* margin-left:25%; */
}
.block-owt-product-review .views-row:nth-of-type(6),
.view-product-reviews .views-row:nth-of-type(6) {
  /* margin-left:25%; */
}
.block-owt-product-review .pager__items,
.view-product-reviews .pager__items {
  margin-top: 30px;
}
.block-owt-product-review .pager__items .pager__item a,
.view-product-reviews .pager__items .pager__item a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .block-owt-product-review .pager__items .pager__item a,
  .view-product-reviews .pager__items .pager__item a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.block-owt-product-review .pager__items .pager__item a:hover,
.view-product-reviews .pager__items .pager__item a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.block-owt-product-review .pager__items .pager__item a,
.view-product-reviews .pager__items .pager__item a {
  margin-bottom: 60px;
}

.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-1 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-1 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 {
  margin-left: 8%;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 h2 {
  padding: 0;
  text-align: left;
  font-size: 20px;
  line-height: normal;
  font-weight: 100;
  text-decoration: underline;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline {
  margin-bottom: 30px;
  margin-left: 3px;
  display: flex;
  align-items: end;
}
@media screen and (min-width: 1025px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline {
    margin-bottom: 50px;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline .form-item {
  position: relative;
  display: inline-block;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline label {
  position: absolute;
  font-size: 17px;
  left: 21px;
  color: gray;
  top: 17px;
  font-weight: bold;
  bottom: 10px;
  transform: translateY(-50%);
  font-weight: 400;
  pointer-events: none;
  z-index: 2;
  margin: 0;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline .form-select {
  text-align: left;
  color: rgb(3, 5, 4);
  font-weight: 500;
  position: relative;
  background-image: url(../assets/icons/Arrow_down.svg);
  background-repeat: no-repeat;
  font-size: 1.8rem;
  font-family: Sora, sans-serif;
  min-width: 150px;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  border-image: initial;
  background-position: right 1.9rem center;
  padding: 10px 40px 10px 20px;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline .form-select {
    padding: 30px 86px 4px 22px;
    border-radius: 10px;
    min-width: 166px;
    border: 1px solid #707070;
  }
}
@media screen and (max-width: 1024px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline .form-select {
    padding: 32px 86px 4px 30px;
    border-radius: 10px;
    min-width: 166px;
    border: 1px solid #707070;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form-actions {
  margin-left: auto;
  margin-bottom: 0;
  display: none !important;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form-actions .form-submit {
  margin: 0 !important;
}

.path-add-a-review main {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 35px 40px 35px;
}
@media screen and (min-width: 1025px) {
  .path-add-a-review main {
    padding: 60px 0 60px 0;
  }
}
.path-add-a-review main {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-add-a-review main {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-add-a-review main {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-add-a-review main .button {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-add-a-review main .button {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-add-a-review main .button:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-add-a-review main .button {
  margin: 0;
}
.path-add-a-review main .page-title {
  margin-top: 0;
  text-align: center;
}
.path-add-a-review .add-product-review .js-form-item-product-rating {
  width: 100% !important;
  margin-bottom: 4rem !important;
  margin-top: 4rem !important;
}
@media screen and (min-width: 1025px) {
  .path-add-a-review .add-product-review .js-form-item-product-rating {
    margin-bottom: 4rem !important;
  }
}
.path-add-a-review .add-product-review .js-form-item-product-rating label {
  display: none !important;
}

div[data-drupal-messages] + .coupon-redemption-form__coupons {
  margin-top: 20px;
}

.view-content {
  /*margin-left:121px !important;*/
}

.reviews__name {
  /* margin-left: -22% !important; */
}

.layout-region-checkout-secondary {
  float: right;
  width: 35%;
  background: #FFF0B9;
  padding: 20px;
  text-align: center;
  font-weight: 400;
  margin-top: 14px;
  border-radius: 15px;
  max-width: 500px;
  /* margin-left: 35px; */
  line-height: normal;
}

input#edit-next {
  z-index: 1;
}

form#views-exposed-form-product-reviews-block-2 {
  margin-left: 20px;
  margin-top: 0px;
}

.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-2 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-2 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 {
  /* margin-left: 8%; */
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 h2 {
  font-size: 2.4rem;
  margin-left: 20px;
  margin-bottom: 7px;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline {
  margin-bottom: 30px;
  margin-left: 3px;
  display: flex;
  align-items: end;
}
@media screen and (min-width: 1025px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline {
    margin-bottom: 50px;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline .form-item {
  position: relative;
  display: inline-block;
  margin-top: 0px;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline label {
  color: #707070;
  position: absolute;
  font-size: 17px;
  left: 30px;
  top: 17px;
  font-weight: bold;
  bottom: 10px;
  transform: translateY(-50%);
  font-weight: 400;
  pointer-events: none;
  z-index: 2;
  margin: 0;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline .form-select {
  text-align: left;
  color: rgb(3, 5, 4);
  font-weight: 500;
  position: relative;
  background-image: url(../assets/icons/Arrow_down.svg);
  background-repeat: no-repeat;
  font-size: 1.8rem;
  font-family: Sora, sans-serif;
  min-width: 150px;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  border-image: initial;
  background-position: right 1.9rem center;
  padding: 10px 40px 10px 20px;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline .form-select {
    padding: 32px 86px 4px 30px;
    border-radius: 10px;
    min-width: 166px;
    border: 1px solid #707070;
  }
}
@media screen and (max-width: 1024px) {
  .block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline .form-select {
    padding: 32px 86px 4px 30px;
    border-radius: 10px;
    min-width: 166px;
    border: 1px solid #707070;
  }
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form-actions {
  margin-left: auto;
  margin-bottom: 0;
  display: none !important;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form-actions .form-submit {
  margin: 0 !important;
}
.block-views.block-views-exposed-filter-blockproduct-reviews-block-2 form .form--inline {
  margin-bottom: 8px;
  display: none;
}

#block-one-world-addproductreviewdetail {
  margin-bottom: 20px !important;
}

.path-product .block-owt-product-review,
.view-product-reviews {
  margin-left: auto !important;
}

.path-product .block-owt-product-review .post_review_btn,
.view-product-reviews .post_review_btn {
  margin-left: 74px;
  margin-top: 11px;
}
@media screen and (min-width: 370px) {
  .path-product .block-owt-product-review .post_review_btn,
  .view-product-reviews .post_review_btn {
    margin-left: 26px;
  }
}
@media screen and (min-width: 767px) {
  .path-product .block-owt-product-review .post_review_btn,
  .view-product-reviews .post_review_btn {
    margin-left: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .path-product .block-owt-product-review .post_review_btn,
  .view-product-reviews .post_review_btn {
    margin-left: 72px;
  }
}
@media screen and (min-width: 1440px) {
  .path-product .block-owt-product-review .post_review_btn,
  .view-product-reviews .post_review_btn {
    margin-left: 111px;
  }
}

@media screen and (min-width: 621px) {
  .path-cart .product {
    font-size: 16px;
    flex-direction: column;
    justify-content: unset;
    column-gap: 0;
    row-gap: 0;
  }
}
/*.region .region-content input#edit-submit {
      padding: 18px 28px !important;
   @media screen and (min-width: 1180px){
    padding: 18px 28px !important;
}
 }*/
@media (max-width: 1024px) {
  .simplenews-subscriber-form .form-actions .button {
    padding: 11px 20px !important;
    line-height: 20px !important;
  }
}
@media (min-width: 621px) and (max-width: 1025px) {
  .product {
    flex-direction: column !important;
    justify-content: unset !important;
    column-gap: 20px !important;
    row-gap: 8px !important;
  }
  .path-cart .product > * {
    display: inline-flex !important;
  }
}
.review-submit-wrapper {
  display: flex;
  justify-content: right;
}

div#block-one-world-reviewgraphbook {
  margin-left: 0px !important;
  padding-left: 12%;
  padding-bottom: 30px;
}

div#block-one-world-exposedformproduct-reviewsblock-1 {
  padding-left: 12%;
  margin-left: 0px;
  background-color: #fff !important;
}

.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 form .form--inline {
  margin-bottom: 0px !important;
  padding-bottom: 50px;
}

.block-owt-product-review.block-review-graph-book .review, .view-product-reviews.block-review-graph-book .review {
  margin-bottom: 0px !important;
}

.block-views.block-views-exposed-filter-blockproduct-reviews-block-1 h2 {
  padding-top: 30px;
}

.explore--category {
  background-color: #FFFFFF;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 1025px) {
  .explore--category {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1201px) {
  .explore--category {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 1401px) {
  .explore--category {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.explore--category .heading, .explore--category .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .explore--category .faq-title, .explore--category .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .explore--category h2,
.explore--category .webform-submission-form .view-header h2,
.webform-submission-form .view-header .explore--category h2,
.explore--category .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .explore--category h2,
.explore--category .form__layout .view-header h2,
.form__layout .view-header .explore--category h2,
.explore--category .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .explore--category h2,
.explore--category .add-product-review .view-header h2,
.add-product-review .view-header .explore--category h2, .explore--category .heading-sub, .explore--category .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .explore--category h4,
.explore--category .webform-submission-form .view-header h4,
.webform-submission-form .view-header .explore--category h4,
.explore--category .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .explore--category h4,
.explore--category .form__layout .view-header h4,
.form__layout .view-header .explore--category h4,
.explore--category .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .explore--category h4,
.explore--category .add-product-review .view-header h4,
.add-product-review .view-header .explore--category h4, .explore--category .path-cart .page-title, .path-cart .explore--category .page-title, .explore--category .path-add-a-review main .page-title, .path-add-a-review main .explore--category .page-title {
  margin-top: 0;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 1201px) {
  .explore--category .heading, .explore--category .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .explore--category .faq-title, .explore--category .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .explore--category h2,
  .explore--category .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .explore--category h2,
  .explore--category .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .explore--category h2,
  .explore--category .form__layout .view-header h2,
  .form__layout .view-header .explore--category h2,
  .explore--category .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .explore--category h2,
  .explore--category .add-product-review .view-header h2,
  .add-product-review .view-header .explore--category h2, .explore--category .heading-sub, .explore--category .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .explore--category h4,
  .explore--category .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .explore--category h4,
  .explore--category .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .explore--category h4,
  .explore--category .form__layout .view-header h4,
  .form__layout .view-header .explore--category h4,
  .explore--category .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .explore--category h4,
  .explore--category .add-product-review .view-header h4,
  .add-product-review .view-header .explore--category h4, .explore--category .path-cart .page-title, .path-cart .explore--category .page-title, .explore--category .path-add-a-review main .page-title, .path-add-a-review main .explore--category .page-title {
    margin-bottom: 2rem;
  }
}
.explore--category__main {
  position: relative;
}
.explore--category__main .view-content {
  margin: 0 -15px;
}
.explore--category__content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.explore--category__content--image {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px #dddddd;
}
.explore--category__content--image img {
  border-radius: 10px;
  width: 100%;
}
.explore--category__content--title {
  margin-top: 1.6rem;
  font-size: 2.5rem;
  line-height: 32px;
  margin-bottom: 0;
  display: inline;
  font-weight: 300;
}
@media screen and (min-width: 700px) {
  .explore--category__content--title {
    margin-top: 2rem;
  }
}
.explore--category__content--description {
  margin-top: 1rem;
  min-height: 70px;
}
@media screen and (min-width: 1401px) {
  .explore--category__content--description {
    min-height: 90px;
  }
}
.explore--category__content--button {
  position: absolute;
  left: 50%;
  bottom: 145px;
  transform: translateX(-50%);
  bottom: 145px;
}
@media screen and (max-width: 700px) {
  .explore--category__content--button a {
    background-color: #F0666F;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 700px) {
  .explore--category__content--button {
    margin-top: 3rem;
    position: static;
    transform: unset;
  }
}
.explore--category .slide__caption {
  padding: 23px 15px;
}
.explore--category .slick__arrow {
  position: absolute;
  top: 20px;
  right: 0;
}
@media screen and (max-width: 700px) {
  .explore--category .slick__arrow {
    position: absolute;
    bottom: -21px;
    right: 0;
    left: 0;
    top: auto;
    margin: auto;
    text-align: center;
  }
}
.explore--category .slick__arrow .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .explore--category .slick__arrow .slick-arrow {
    width: 70px;
    height: 70px;
  }
}
.explore--category .slick__arrow .slick-arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.explore--category .slick__arrow .slick-prev {
  right: 20px;
  left: auto;
}
.explore--category .slick__arrow .slick-prev {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .explore--category .slick__arrow .slick-prev {
    width: 70px;
    height: 70px;
  }
}
.explore--category .slick__arrow .slick-prev:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.explore--category .slick__arrow .slick-prev:before {
  background-image: url(../assets/icons/chevron-small-left_curved.svg);
}

.how-it-works__main {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 7rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 641px) and (max-width: 768px) {
  .how-it-works__main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .how-it-works .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 24px;
  }
  .how-it-works__section {
    width: calc(100% - 80px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .views-rows {
    width: 100%;
  }
  .col-lg-3,
  .col-md-6,
  .col-xs-12 {
    width: 48% !important;
    max-width: 48% !important;
    flex: 0 0 48% !important;
  }
  .how-it-works__number {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .how-it-works .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px; /* Adjust vertical spacing between rows */
  }
  /* Adjust each column's width to fit two items per row */
  .col-lg-3, .col-md-6, .col-xs-12 {
    width: 48% !important; /* Make two items per row */
    max-width: 48% !important;
    flex: 0 0 48% !important;
  }
  /* Ensuring order matches the desired layout */
  .how-it-works__section:nth-child(1) {
    order: 1; /* Item 1 (Buy Your Book) */
  }
  .how-it-works__section:nth-child(2) {
    order: 2; /* Item 2 (Pick Your Story) */
  }
  .how-it-works__section:nth-child(3) {
    order: 3; /* Item 3 (Customize Your Character) */
  }
  .how-it-works__section:nth-child(4) {
    order: 4; /* Item 4 (Preview Your Story) */
  }
}
/*@media screen and (max-width: 1025px) {
  .how-it-works__main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .how-it-works .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    row-gap: 24px;

  }

  .how-it-works__section {
   width: calc(100% - 80px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .views-rows {
    width: 100%;
  }

  .col-lg-3,
  .col-md-6,
  .col-xs-12 {
    width: 48% !important;
    max-width: 48% !important;
    flex: 0 0 48% !important;
  }

  .how-it-works__number {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
}*/
@media screen and (min-width: 300px) and (max-width: 1024px) {
  .how-it-works__main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .how-it-works .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .how-it-works__section {
    width: 83%;
    display: flex;
    flex-direction: row; /* Number on the left, card on the right */
    align-items: flex-start;
    gap: 16px;
    box-sizing: border-box;
  }
  .how-it-works__number {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    font-weight: bold;
    font-size: 1rem;
    line-height: 36px;
    text-align: center;
    flex-shrink: 0;
  }
  .views-rows {
    width: 100%;
  }
  .col-lg-3,
  .col-md-6,
  .col-xs-12 {
    width: 83% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
}
/*@media (max-width: 1024px) {
  .row {
    grid-template-columns: 1fr;
  }
  .step__how-it-warraper {
    flex-direction: column;
    text-align: center;
  }
}*/
@media screen and (max-width: 1025px) {
  .how-it-works .row {
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .how-it-works .row {
    row-gap: 20px;
  }
}
.how-it-works {
  margin-top: 115px;
  background-color: #F1F1F1;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 23px !important;
  background-image: url(../assets/images/balloon-2.0.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 118px;
  height: 197px;
  z-index: 1;
  background-size: 100%;
}
@media screen and (min-width: 614px) {
  .how-it-works::before {
    left: 69px !important;
  }
}
@media screen and (min-width: 700px) {
  .how-it-works::before {
    background-image: url(../assets/images/balloon-2.0.png);
    /* top: -30px;*/
    left: 16% !important;
    max-width: 140px;
    height: 382px;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works::before {
    background-image: url(../assets/images/balloon-2.0.png);
    /*top: -70px;*/
    left: 3% !important;
    max-width: 140px;
    height: 382px;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works::before {
    top: -75px;
    left: 30% !important;
    max-width: 167px;
    height: 382px;
  }
}
.how-it-works::after {
  content: "";
  background-image: url(../assets/images/moving-cloud-2.0.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 200px;
  position: absolute;
  right: 0;
  max-width: 100px;
  height: 100px;
  top: -55px;
  animation: moveLeft 15s linear infinite;
  animation-delay: 5s;
}
@media screen and (min-width: 700px) {
  .how-it-works::after {
    max-width: 250px;
    height: 210px;
    top: -103px;
  }
}
@keyframes moveLeft {
  0% {
    right: -300px;
  }
  100% {
    right: 100%;
  }
}
.how-it-works__main {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 7rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .how-it-works__main {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1025px) {
  .how-it-works__main .row .views-rows {
    width: 100%;
  }
}
.how-it-works .heading, .how-it-works .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works .faq-title, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h2,
.how-it-works .webform-submission-form .view-header h2,
.webform-submission-form .view-header .how-it-works h2,
.how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h2,
.how-it-works .form__layout .view-header h2,
.form__layout .view-header .how-it-works h2,
.how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h2,
.how-it-works .add-product-review .view-header h2,
.add-product-review .view-header .how-it-works h2, .how-it-works .heading-sub, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h4,
.how-it-works .webform-submission-form .view-header h4,
.webform-submission-form .view-header .how-it-works h4,
.how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h4,
.how-it-works .form__layout .view-header h4,
.form__layout .view-header .how-it-works h4,
.how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h4,
.how-it-works .add-product-review .view-header h4,
.add-product-review .view-header .how-it-works h4, .how-it-works .path-cart .page-title, .path-cart .how-it-works .page-title, .how-it-works .path-add-a-review main .page-title, .path-add-a-review main .how-it-works .page-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 2rem;
  max-width: calc(100% - 80px);
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .how-it-works .heading, .how-it-works .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works .faq-title, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .how-it-works h2,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .form__layout .view-header h2,
  .form__layout .view-header .how-it-works h2,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .add-product-review .view-header h2,
  .add-product-review .view-header .how-it-works h2, .how-it-works .heading-sub, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .how-it-works h4,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .form__layout .view-header h4,
  .form__layout .view-header .how-it-works h4,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .add-product-review .view-header h4,
  .add-product-review .view-header .how-it-works h4, .how-it-works .path-cart .page-title, .path-cart .how-it-works .page-title, .how-it-works .path-add-a-review main .page-title, .path-add-a-review main .how-it-works .page-title {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (min-width: 1201px) {
  .how-it-works .heading, .how-it-works .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works .faq-title, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .how-it-works h2,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .form__layout .view-header h2,
  .form__layout .view-header .how-it-works h2,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .add-product-review .view-header h2,
  .add-product-review .view-header .how-it-works h2, .how-it-works .heading-sub, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .how-it-works h4,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .form__layout .view-header h4,
  .form__layout .view-header .how-it-works h4,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .add-product-review .view-header h4,
  .add-product-review .view-header .how-it-works h4, .how-it-works .path-cart .page-title, .path-cart .how-it-works .page-title, .how-it-works .path-add-a-review main .page-title, .path-add-a-review main .how-it-works .page-title {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works .heading, .how-it-works .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works .faq-title, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .how-it-works h2,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .form__layout .view-header h2,
  .form__layout .view-header .how-it-works h2,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h2,
  .how-it-works .add-product-review .view-header h2,
  .add-product-review .view-header .how-it-works h2, .how-it-works .heading-sub, .how-it-works .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .how-it-works h4,
  .how-it-works .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .form__layout .view-header h4,
  .form__layout .view-header .how-it-works h4,
  .how-it-works .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works h4,
  .how-it-works .add-product-review .view-header h4,
  .add-product-review .view-header .how-it-works h4, .how-it-works .path-cart .page-title, .path-cart .how-it-works .page-title, .how-it-works .path-add-a-review main .page-title, .path-add-a-review main .how-it-works .page-title {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works .views-view-grid > .row {
    margin: 0 -3.3rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works .views-rows {
    padding: 0 1.3rem;
  }
}
@media screen and (min-width: 1600px) {
  .how-it-works .views-rows {
    padding: 0 3.3rem;
  }
}
.how-it-works .views-rows:last-child .how-it-works__section::before {
  display: none;
}
.how-it-works .views-rows .views-field-nothing {
  height: 100%;
}
.how-it-works .views-rows .views-field-nothing > span {
  height: 100%;
  display: block;
}
.how-it-works__section {
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  /*max-width: calc(100% - 80px);*/
  z-index: 1;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .how-it-works__section {
    margin-top: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works__section {
    max-width: 100%;
    margin-top: auto;
  }
}
.how-it-works__section::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 106%;
  border: 1px dashed #000;
  left: -59px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .how-it-works__section::before {
    border: unset;
    bottom: -68px;
    left: 50%;
    top: inherit;
    background-image: url(../assets/icons/cover_Path.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 100%;
    height: 97px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .how-it-works__section::before {
    bottom: -85px;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__section::before {
    width: calc(100% + 3.6rem);
  }
}
@media screen and (min-width: 1600px) {
  .how-it-works__section::before {
    width: calc(100% + 6.6rem);
  }
}
.how-it-works__content-img {
  margin-bottom: 1rem;
}
.how-it-works__content-img img {
  max-width: 34px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .how-it-works__content-img img {
    max-width: 50px;
  }
}
.how-it-works__content-title h3 {
  margin-top: 0;
  font-weight: 300;
}
.how-it-works__content-description {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1201px) {
  .how-it-works__content-description {
    margin-bottom: 2.2rem;
  }
}
.how-it-works__content-oder {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  right: 0;
  background-color: #FEE073;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (min-width: 1025px) {
  .how-it-works__content-oder {
    width: 46px;
    height: 46px;
    transform: unset;
    font-size: 25px;
    margin: auto;
    bottom: -23px;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works__content-oder {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 700px) {
  .how-it-works .footer-button {
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-top: 30px;
    padding-left: 0;
  }
}
@media screen and (min-width: 700px) {
  .how-it-works .footer-button {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works .footer-button {
    margin-top: 12.8rem;
    text-align: center;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works .footer-button {
    margin-top: 16.8rem;
  }
}

.how-it-works__main {
  position: relative;
}
.how-it-works__main::before {
  content: "";
  background-image: url(../assets/images/girl.2.0.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100px;
  height: 100px;
}
@media screen and (min-width: 700px) {
  .how-it-works__main::before {
    max-width: 150px;
    height: 160px;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works__main::before {
    max-width: 220px;
    height: 240px;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main::before {
    max-width: 320px;
    height: 360px;
  }
}
@media screen and (min-width: 700px) {
  .how-it-works__main {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main {
    padding-top: 10rem;
    padding-bottom: 13rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main .row {
    margin: 0 -1.3rem;
  }
}
@media screen and (min-width: 1600px) {
  .how-it-works__main .row {
    margin: 0 -3.3rem;
  }
}
@media screen and (min-width: 1401px) {
  .how-it-works__main .row .views-rows {
    padding: 0 1.3rem;
  }
}
@media screen and (min-width: 1600px) {
  .how-it-works__main .row .views-rows {
    padding: 0 3.3rem;
  }
}
.how-it-works__main .view-header {
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .how-it-works__main .view-header {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works__main .view-header {
    margin-bottom: 3rem;
  }
}
.how-it-works__main .view-header .heading, .how-it-works__main .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .how-it-works__main .view-header .faq-title, .how-it-works__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h2,
.how-it-works__main .webform-submission-form .view-header h2,
.webform-submission-form .how-it-works__main .view-header h2,
.how-it-works__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h2,
.how-it-works__main .form__layout .view-header h2,
.form__layout .how-it-works__main .view-header h2,
.how-it-works__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h2,
.how-it-works__main .add-product-review .view-header h2,
.add-product-review .how-it-works__main .view-header h2, .how-it-works__main .view-header .heading-sub, .how-it-works__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h4,
.how-it-works__main .webform-submission-form .view-header h4,
.webform-submission-form .how-it-works__main .view-header h4,
.how-it-works__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h4,
.how-it-works__main .form__layout .view-header h4,
.form__layout .how-it-works__main .view-header h4,
.how-it-works__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__main .view-header h4,
.how-it-works__main .add-product-review .view-header h4,
.add-product-review .how-it-works__main .view-header h4, .how-it-works__main .view-header .path-cart .page-title, .path-cart .how-it-works__main .view-header .page-title, .how-it-works__main .view-header .path-add-a-review main .page-title, .path-add-a-review main .how-it-works__main .view-header .page-title {
  margin-bottom: 0 !important;
  margin-left: 0px;
}
.how-it-works__main .view-header .description, .how-it-works__main .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .how-it-works__main .view-header .faq-short-text {
  margin: auto;
  margin-top: 1rem;
  text-align: center;
}
.how-it-works__main .views-field.views-field-nothing {
  height: 100%;
}
.how-it-works__main .cardbox_Wrapper {
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  max-width: 100%;
  z-index: 1;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .how-it-works__main .cardbox_Wrapper {
    margin-top: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1025px) {
  .how-it-works__main .cardbox_Wrapper {
    margin-top: auto;
  }
}
.how-it-works__main .cardbox__inner {
  align-items: start;
}
.how-it-works__main .cardbox__inner-content {
  /*text-align: left;*/
}
.how-it-works__main .cardbox__inner--img {
  margin-bottom: 1rem;
}
.how-it-works__main .cardbox__inner--img img {
  max-width: 65px;
}

.view-how-it-works-section.view-display-id-block_2 .how-it-works__main::before {
  display: none;
}

.how-it-works__banner {
  padding: 60px 20px 20px;
  position: relative;
}
.how-it-works__banner--content {
  text-align: center;
}
.how-it-works__banner--content .heading, .how-it-works__banner--content .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works__banner--content .faq-title, .how-it-works__banner--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
.how-it-works__banner--content .webform-submission-form .view-header h2,
.webform-submission-form .view-header .how-it-works__banner--content h2,
.how-it-works__banner--content .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
.how-it-works__banner--content .form__layout .view-header h2,
.form__layout .view-header .how-it-works__banner--content h2,
.how-it-works__banner--content .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
.how-it-works__banner--content .add-product-review .view-header h2,
.add-product-review .view-header .how-it-works__banner--content h2, .how-it-works__banner--content .heading-sub, .how-it-works__banner--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
.how-it-works__banner--content .webform-submission-form .view-header h4,
.webform-submission-form .view-header .how-it-works__banner--content h4,
.how-it-works__banner--content .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
.how-it-works__banner--content .form__layout .view-header h4,
.form__layout .view-header .how-it-works__banner--content h4,
.how-it-works__banner--content .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
.how-it-works__banner--content .add-product-review .view-header h4,
.add-product-review .view-header .how-it-works__banner--content h4, .how-it-works__banner--content .path-cart .page-title, .path-cart .how-it-works__banner--content .page-title, .how-it-works__banner--content .path-add-a-review main .page-title, .path-add-a-review main .how-it-works__banner--content .page-title {
  margin-top: 0;
  margin-bottom: 5px;
}
@media screen and (min-width: 700px) {
  .how-it-works__banner--content .heading, .how-it-works__banner--content .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .how-it-works__banner--content .faq-title, .how-it-works__banner--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
  .how-it-works__banner--content .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .how-it-works__banner--content h2,
  .how-it-works__banner--content .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
  .how-it-works__banner--content .form__layout .view-header h2,
  .form__layout .view-header .how-it-works__banner--content h2,
  .how-it-works__banner--content .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h2,
  .how-it-works__banner--content .add-product-review .view-header h2,
  .add-product-review .view-header .how-it-works__banner--content h2, .how-it-works__banner--content .heading-sub, .how-it-works__banner--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
  .how-it-works__banner--content .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .how-it-works__banner--content h4,
  .how-it-works__banner--content .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
  .how-it-works__banner--content .form__layout .view-header h4,
  .form__layout .view-header .how-it-works__banner--content h4,
  .how-it-works__banner--content .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .how-it-works__banner--content h4,
  .how-it-works__banner--content .add-product-review .view-header h4,
  .add-product-review .view-header .how-it-works__banner--content h4, .how-it-works__banner--content .path-cart .page-title, .path-cart .how-it-works__banner--content .page-title, .how-it-works__banner--content .path-add-a-review main .page-title, .path-add-a-review main .how-it-works__banner--content .page-title {
    margin-bottom: 20px;
  }
}
.how-it-works__banner-button {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .how-it-works__banner-button {
    margin-top: 50px;
  }
}

.step-how-it .views-field.views-field-nothing {
  height: 100%;
}

.step-how-it {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0;
  padding-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .step-how-it {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .step-how-it {
    padding-left: 14rem;
    padding-right: 14rem;
    padding-bottom: 5rem;
  }
}
.step-how-it .description, .step-how-it .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .step-how-it .faq-short-text {
  font-size: 13px;
  line-height: normal;
  font-weight: 300;
}
@media screen and (min-width: 700px) {
  .step-how-it .description, .step-how-it .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .step-how-it .faq-short-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}
.step-how-it .step__how-it-warraper {
  display: flex;
  justify-content: end;
  position: relative;
  flex-direction: row-reverse;
  align-items: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .step-how-it .step__how-it-warraper {
    flex-direction: row-reverse;
    padding-bottom: 0;
  }
}
.step-how-it .step__how-it-warraper::before {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 102, 111, 0.5019607843);
  top: auto;
  left: 15px;
  bottom: -38%;
  height: calc(100% - 22px);
}
@media screen and (min-width: 700px) {
  .step-how-it .step__how-it-warraper::before {
    bottom: -40%;
    left: 34px;
    height: calc(100% - 50px);
  }
}
@media screen and (min-width: 1401px) {
  .step-how-it .step__how-it-warraper::before {
    height: calc(100% - 70px);
  }
}
.step-how-it .view-content {
  border: 2px solid rgba(240, 102, 111, 0.5019607843);
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 28px 20px;
  max-width: 1220px;
  margin: auto;
}
@media screen and (min-width: 700px) {
  .step-how-it .view-content {
    padding: 28px 50px;
    border-radius: 60px;
  }
}
@media screen and (min-width: 1201px) {
  .step-how-it .view-content {
    border-radius: 80px;
    padding: 55px 100px;
  }
}
@media screen and (min-width: 1401px) {
  .step-how-it .view-content {
    padding: 108px 208px;
  }
}
.step-how-it .view-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .step-how-it .view-content .row .views-rows {
    width: 100%;
  }
}
.step-how-it .view-content .views-rows:last-child .step__how-it-work::before {
  display: none;
}
.step-how-it .how-it-work-button {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .step-how-it .how-it-work-button {
    margin-top: 4rem;
  }
}
.step-how-it .row .views-rows:last-child .step__how-it-warraper::before {
  display: none;
}

.step__how-it-img {
  padding-right: 0px;
  max-width: 80px;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .step__how-it-img {
    padding-right: 30px;
    max-width: 200px;
  }
}
@media screen and (min-width: 1201px) {
  .step__how-it-img {
    padding-right: 40px;
    max-width: 321px;
  }
}

.step__how-it-work {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  position: relative;
  max-width: 140px;
  margin-left: auto;
}
@media screen and (min-width: 700px) {
  .step__how-it-work {
    max-width: 304px;
    margin-left: unset;
  }
}
.step__how-it-work-oder {
  font-size: 9px;
  color: #657BBC;
  line-height: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: "Sora", sans-serif;
}
@media screen and (min-width: 700px) {
  .step__how-it-work-oder {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .step__how-it-work-oder {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.step__how-it-work-text {
  font-size: 13px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  line-height: 1.5rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 700px) {
  .step__how-it-work-text {
    font-size: 20px;
    line-height: 2.5rem;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1401px) {
  .step__how-it-work-text {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 1401px) {
  .step__how-it-work-text {
    font-size: 30px;
    line-height: 3.5rem;
  }
}
.step__how-it-work--step {
  display: block;
}
.step__how-it-work--step:before {
  text-align: center;
  content: "";
  background: #f06670;
  color: #fff;
  width: 30px;
  display: block;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 32px;
  font-family: "Rowdies";
  z-index: 1;
  position: relative;
  outline: solid 1px #f06670;
  outline-offset: 5px;
}
@media screen and (min-width: 700px) {
  .step__how-it-work--step:before {
    width: 70px;
    height: 70px;
    line-height: 67px;
    border-radius: 50%;
    font-size: 24px;
    font-family: "Rowdies";
    z-index: 1;
    position: relative;
    outline: solid 1px #f06670;
    outline-offset: 10px;
  }
}

.step-how-it .views-rows:first-child .step__how-it-work--step:before {
  content: "1";
}
.step-how-it .views-rows:nth-child(2) .step__how-it-work--step:before {
  content: "2";
}
.step-how-it .views-rows:nth-child(3) .step__how-it-work--step:before {
  content: "3";
}
.step-how-it .views-rows:nth-child(4) .step__how-it-work--step:before {
  content: "4";
}

.step-how-it .view-content .views-row:last-child .step__how-it-work--step.complete::before {
  display: none;
}

@media (max-width: 500px) {
  .step-how-it .step__how-it-warraper {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-direction: row-reverse;
    align-items: center;
    padding-bottom: 0px;
  }
  .mobile-step-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .step__how-it-work {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 86%;
    padding-right: 74px;
    margin-left: auto;
  }
  .step__how-it-img {
    padding-right: 0px;
    max-width: 56%;
    margin-left: 5%;
  }
}
.product-statistics {
  clear: both;
  background-color: #F1F1F1;
  padding: 60px 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .product-statistics {
    padding: 100px 0;
  }
}
.product-statistics__icon {
  margin: auto;
  width: 100px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .product-statistics__icon {
    margin-bottom: 20px;
  }
}
.product-statistics__icon lottie-player {
  width: 64px;
  height: 64px;
}
@media screen and (min-width: 1025px) {
  .product-statistics__icon lottie-player {
    width: 100px;
    height: 100px;
  }
}
.product-statistics .row {
  row-gap: 25px;
}
@media screen and (max-width: 1025px) {
  .product-statistics .row .col-lg-3 {
    width: 50%;
  }
}
.product-statistics__name {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #657BBC;
  max-width: 220px;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .product-statistics__name {
    font-size: 18px;
    line-height: 3rem;
  }
}

.buy--section {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #CCE8D2;
  position: relative;
  margin-top: 70px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 700px) {
  .buy--section {
    margin-top: 0px;
  }
}
.buy--section::before {
  content: "";
  position: absolute;
  background-image: url(../assets/animations/Homepage/leaf-unscreen-new-.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(145deg);
  width: 100%;
  top: -32%;
  left: -6%;
  max-width: 150px;
  height: 120px;
}
@media screen and (min-width: 700px) {
  .buy--section::before {
    max-width: 200px;
    height: 200px;
    top: -197px;
    left: -11px;
  }
}
@media screen and (min-width: 1201px) {
  .buy--section::before {
    max-width: 273px;
    height: 300px;
    top: -62%;
    left: -2%;
  }
}
@media screen and (min-width: 1401px) {
  .buy--section::before {
    top: -60%;
  }
}
@media screen and (min-width: 1025px) {
  .buy--section {
    margin-top: 110px;
    padding-top: 9.4rem;
    padding-bottom: 8rem;
  }
}
.buy--section__section-buy-two {
  flex-direction: column-reverse;
}
@media screen and (min-width: 700px) {
  .buy--section__section-buy-two {
    flex-direction: column-reverse;
  }
}
.buy--section__section--content .heading, .buy--section__section--content .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .buy--section__section--content .faq-title, .buy--section__section--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .buy--section__section--content h2,
.buy--section__section--content .webform-submission-form .view-header h2,
.webform-submission-form .view-header .buy--section__section--content h2,
.buy--section__section--content .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .buy--section__section--content h2,
.buy--section__section--content .form__layout .view-header h2,
.form__layout .view-header .buy--section__section--content h2,
.buy--section__section--content .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .buy--section__section--content h2,
.buy--section__section--content .add-product-review .view-header h2,
.add-product-review .view-header .buy--section__section--content h2, .buy--section__section--content .heading-sub, .buy--section__section--content .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .buy--section__section--content h4,
.buy--section__section--content .webform-submission-form .view-header h4,
.webform-submission-form .view-header .buy--section__section--content h4,
.buy--section__section--content .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .buy--section__section--content h4,
.buy--section__section--content .form__layout .view-header h4,
.form__layout .view-header .buy--section__section--content h4,
.buy--section__section--content .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .buy--section__section--content h4,
.buy--section__section--content .add-product-review .view-header h4,
.add-product-review .view-header .buy--section__section--content h4, .buy--section__section--content .path-cart .page-title, .path-cart .buy--section__section--content .page-title, .buy--section__section--content .path-add-a-review main .page-title, .path-add-a-review main .buy--section__section--content .page-title {
  margin-top: 0;
  margin-bottom: 2rem;
}
.buy--section__section--content .description, .buy--section__section--content .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .buy--section__section--content .faq-short-text {
  max-width: 638px;
}
.buy--section__section--content .button-outline {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .buy--section__section--content .button-outline {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .buy--section__section--content .button-outline {
    margin-top: 60px;
  }
}
.buy--section__section--content .button-outline a {
  border: 1px solid #657BBC;
  color: #657BBC;
}
.buy--section__section--content .button-outline a:hover {
  color: #FFFFFF;
  background-color: #657BBC;
}
.buy--section__section--image {
  margin-top: -105px;
  position: static;
}
@media screen and (min-width: 700px) {
  .buy--section__section--image {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .buy--section__section--image {
    position: absolute;
    right: 0;
    top: -20%;
    margin-top: 0;
  }
}

.about-one {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.about-one::before {
  content: "One World Tales";
  position: absolute;
  font-size: 50px;
  z-index: 2;
  line-height: normal;
  font-family: "Sora";
  font-weight: 600;
  color: #FFFFFF;
  left: unset;
  top: unset;
  transform: rotate(90deg);
  white-space: nowrap;
  z-index: 2;
  text-shadow: 0px 1px 4px #8f8f8f;
  right: 0px;
  width: 70px;
  bottom: 50%;
}
@media screen and (min-width: 700px) {
  .about-one::before {
    bottom: -12px;
    text-shadow: 0px 1px 4px #b6cb9b;
    width: auto;
    left: 0;
    transform: unset;
    font-weight: 400;
    font-size: 9vw;
    top: auto;
    margin-right: 0px;
  }
}
.about-one .about-one__section--text {
  padding-left: 0;
}
@media screen and (min-width: 1025px) {
  .about-one .about-one__section--text {
    padding-left: 97px;
  }
}
.about-one {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #fff0b9;
}
@media screen and (min-width: 1401px) {
  .about-one {
    padding-top: 9.2rem;
    padding-bottom: 9.2rem;
  }
}
.about-one__section {
  align-items: center;
  row-gap: 20px;
  flex-direction: column-reverse;
}
@media screen and (min-width: 700px) {
  .about-one__section {
    row-gap: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .about-one__section {
    flex-direction: unset;
  }
}
.about-one__section--content-image {
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 700px) {
  .about-one__section--content-image {
    margin-top: 1px;
  }
}
.about-one__section--content-image img {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2509803922);
  max-width: calc(100% - 50px);
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .about-one__section--content-image img {
    max-width: 268px;
  }
}
@media screen and (min-width: 700px) {
  .about-one__section--content-image img {
    width: 100%;
    max-width: 100%;
  }
}
.about-one__section--content-image::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 0;
  top: -28px;
  bottom: 0;
  background-image: url(../assets/images/bg-green.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: inherit;
  width: 86%;
  z-index: -1;
  height: 150%;
  border-radius: 10px;
}
@media screen and (min-width: 700px) {
  .about-one__section--content-image::before {
    width: 100%;
  }
}
.about-one__section--text {
  position: relative;
}
@media screen and (min-width: 1201px) {
  .about-one__section--text {
    padding-left: 120px;
  }
}
.about-one__section--text::before {
  content: "";
  position: absolute;
  background-image: url(../assets/images/birds.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  max-width: 130px;
  background-size: contain;
  left: 65%;
  top: -40px;
}
@media screen and (min-width: 700px) {
  .about-one__section--text::before {
    max-width: 319px;
    height: 100px;
    right: 0px;
    left: inherit;
    top: 0px;
  }
}
@media screen and (min-width: 1025px) {
  .about-one__section--text::before {
    max-width: 319px;
    height: 100px;
    right: -50px;
    top: -180px;
  }
}
.about-one__section--text-title .heading, .about-one__section--text-title .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .about-one__section--text-title .faq-title, .about-one__section--text-title .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
.about-one__section--text-title .webform-submission-form .view-header h2,
.webform-submission-form .view-header .about-one__section--text-title h2,
.about-one__section--text-title .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
.about-one__section--text-title .form__layout .view-header h2,
.form__layout .view-header .about-one__section--text-title h2,
.about-one__section--text-title .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
.about-one__section--text-title .add-product-review .view-header h2,
.add-product-review .view-header .about-one__section--text-title h2, .about-one__section--text-title .heading-sub, .about-one__section--text-title .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
.about-one__section--text-title .webform-submission-form .view-header h4,
.webform-submission-form .view-header .about-one__section--text-title h4,
.about-one__section--text-title .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
.about-one__section--text-title .form__layout .view-header h4,
.form__layout .view-header .about-one__section--text-title h4,
.about-one__section--text-title .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
.about-one__section--text-title .add-product-review .view-header h4,
.add-product-review .view-header .about-one__section--text-title h4, .about-one__section--text-title .path-cart .page-title, .path-cart .about-one__section--text-title .page-title, .about-one__section--text-title .path-add-a-review main .page-title, .path-add-a-review main .about-one__section--text-title .page-title {
  margin-top: 0;
  margin-bottom: 1.6rem;
  margin-left: 0px;
}
@media screen and (min-width: 1025px) {
  .about-one__section--text-title .heading, .about-one__section--text-title .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .about-one__section--text-title .faq-title, .about-one__section--text-title .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
  .about-one__section--text-title .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .about-one__section--text-title h2,
  .about-one__section--text-title .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
  .about-one__section--text-title .form__layout .view-header h2,
  .form__layout .view-header .about-one__section--text-title h2,
  .about-one__section--text-title .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h2,
  .about-one__section--text-title .add-product-review .view-header h2,
  .add-product-review .view-header .about-one__section--text-title h2, .about-one__section--text-title .heading-sub, .about-one__section--text-title .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
  .about-one__section--text-title .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .about-one__section--text-title h4,
  .about-one__section--text-title .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
  .about-one__section--text-title .form__layout .view-header h4,
  .form__layout .view-header .about-one__section--text-title h4,
  .about-one__section--text-title .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .about-one__section--text-title h4,
  .about-one__section--text-title .add-product-review .view-header h4,
  .add-product-review .view-header .about-one__section--text-title h4, .about-one__section--text-title .path-cart .page-title, .path-cart .about-one__section--text-title .page-title, .about-one__section--text-title .path-add-a-review main .page-title, .path-add-a-review main .about-one__section--text-title .page-title {
    margin-bottom: 2rem;
  }
}
.about-one__section--text-description {
  max-width: 536px;
}
.about-one__section--text-button {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .about-one__section--text-button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1401px) {
  .about-one__section--text-button {
    margin-top: 113px;
  }
}
.about-one__section--text-button a {
  color: #657BBC;
  border: 1px solid #657BBC;
}
.about-one__section--text-button a:hover {
  color: #FFFFFF;
  border: 1px solid #657BBC;
  background-color: #657BBC;
}

.about__v2 {
  padding-top: 57px;
  padding-bottom: 57px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .about__v2 .about-one__section {
    flex-direction: row-reverse;
  }
}
.about__v2 .about-one__section--content-image img {
  max-width: 100%;
  margin-left: 0px;
}
.about__v2::before {
  display: none;
}
.about__v2 .about-one__section--content-image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  transform: translateY(-50%);
  background: #b2bdde;
  height: 70%;
  z-index: -1;
  max-width: 190px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .about__v2 .about-one__section--content-image::before {
    left: -90%;
    top: 50%;
    transform: translateY(-50%);
    min-width: 300px;
    max-width: unset;
    margin: unset;
  }
}
.about__v2 .about-one__section--content-image::after {
  content: "Journey";
  position: absolute;
  left: 0;
  font-size: 80px;
  color: #fff;
  opacity: 0.3;
  bottom: 17%;
}
@media screen and (max-width: 700px) {
  .about__v2 .about-one__section--content-image::after {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 700px) {
  .about__v2 .about-one__section--content-image::after {
    font-size: 11vw;
  }
}
.about__v2 .about-one__section--text {
  padding-left: 0;
}
@media screen and (min-width: 1025px) {
  .about__v2 .about-one__section--text {
    padding-left: 97px;
  }
}
.about__v2 .about-one__section--text::before {
  right: auto;
  left: 50%;
  top: -10px;
}
@media screen and (min-width: 1201px) {
  .about__v2 .about-one__section--text::before {
    top: -90px;
  }
}
.about__v2 .description, .about__v2 .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .about__v2 .faq-short-text {
  max-width: 637px;
}
.about__v2 .button-outline a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .about__v2 .button-outline a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.about__v2 .button-outline a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}

.banner {
  background: #F1F1F1;
  padding: 2rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.banner .star {
  animation: 0.45s linear infinite spinner-grow;
  transition: 0.3s all;
  z-index: 1;
}
.banner .star img {
  width: 40px;
}
.banner .star.star1 {
  position: absolute;
  right: 60px;
  top: 120px;
}
@media screen and (min-width: 700px) {
  .banner .star.star1 {
    right: 290px;
    top: 114px;
  }
}
.banner .star.star2 {
  right: 70px;
  top: 80px;
  position: absolute;
}
@media screen and (min-width: 700px) {
  .banner .star.star2 {
    right: 175px;
    top: 240px;
  }
}
.banner .star.star2 img {
  width: 25px;
}
.banner .star.star3 {
  position: absolute;
  top: 100px;
  right: 10px;
}
@media screen and (min-width: 700px) {
  .banner .star.star3 {
    top: 290px;
    right: 60px;
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.051);
  }
}
.banner::before {
  content: "";
  background-image: url(../assets/images/new_header-bg.png);
  background-repeat: no-repeat;
  background-position: right 0;
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
  z-index: 1;
  background-size: 100%;
  width: 113px;
  height: 121px;
  background-size: 100%;
}
@media screen and (min-width: 700px) {
  .banner::before {
    width: 350px;
    height: 350px;
    right: -46px;
  }
}
.banner__content {
  margin-bottom: 2rem;
  max-width: 75%;
}
@media screen and (min-width: 700px) {
  .banner__content {
    max-width: 60%;
  }
}
.banner .view-header {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1401px) {
  .banner .view-header {
    margin-bottom: 2rem;
  }
}
.banner__main {
  position: relative;
  z-index: 2;
}
.banner__main .view-content {
  position: relative;
}
.banner__main .view-content .slick {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 1401px) {
  .banner__main .view-content .slick {
    max-width: 1100px;
  }
}
.banner__main .view-content .slick .slick-list {
  margin: 0;
  box-sizing: content-box;
  padding: 0 0 10px;
}
@media screen and (min-width: 700px) {
  .banner__main .view-content .slick .slick-list {
    margin: 0 50px;
    padding: 0 0 40px;
  }
}
@media screen and (min-width: 1025px) {
  .banner__main .view-content .slick .slick-list .slick-slide {
    scale: 0.85;
  }
}
@media screen and (min-width: 1025px) {
  .banner__main .view-content .slick .slick-list .slick-slide.slick-current {
    scale: 1.22;
  }
}
.banner__main .view-content .slick .slick-list .slick-slide.slick-current .slide__description .views-field-field-product-image img:hover {
  scale: 1.05 !important;
  transform: rotate(24deg);
}
.banner__main .view-content .slick .slick-list + .slick-dots {
  margin-top: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 1;
}
.banner__main .view-content .slick .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .banner__main .view-content .slick .slick-arrow {
    width: 70px;
    height: 70px;
  }
}
.banner__main .view-content .slick .slick-arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.banner__main .view-content .slick .slick-arrow:before {
  background-image: url(../assets/icons/chevron-small-left_curved.svg);
}
.banner__main .view-content .slick .slick-arrow {
  background-color: #B2BDDE;
}
.banner__main .view-content .slick .slick-arrow:hover {
  background-color: #7b8fca;
}
.banner__main .view-content .slick .slick-arrow:before {
  background-image: url(../assets/icons/white-right.svg);
  background-image: url(../assets/icons/white-left.svg);
}
.banner__main .view-content .slick .slick-arrow {
  position: absolute;
  top: auto;
  bottom: -60px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  transition: all 0.3s ease;
  display: none !important;
}
@media screen and (min-width: 700px) {
  .banner__main .view-content .slick .slick-arrow {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: inherit;
    display: inline-block !important;
  }
}
.banner__main .view-content .slick .slick-next {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .banner__main .view-content .slick .slick-next {
    width: 70px;
    height: 70px;
  }
}
.banner__main .view-content .slick .slick-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.banner__main .view-content .slick .slick-next {
  background-color: #B2BDDE;
}
.banner__main .view-content .slick .slick-next:hover {
  background-color: #7b8fca;
}
.banner__main .view-content .slick .slick-next:before {
  background-image: url(../assets/icons/white-right.svg);
}
.banner__main .view-content .slick .slick-next {
  position: absolute;
  left: 0;
}
@media screen and (min-width: 700px) {
  .banner__main .view-content .slick .slick-next {
    left: inherit;
    right: 0;
  }
}
.banner__main .view-content .slick .slide__caption {
  padding: 0 15px;
}
.banner__main .view-content .slick .slide__description .views-field-field-product-image img {
  transition: all ease 0.3s;
  border-radius: 15px;
  margin: auto;
}
.banner__main .view-content .slick .slide__description .views-field-field-product-image img:hover {
  scale: 1.3;
  transform: rotate(25deg);
}
.banner__heading {
  margin: 0 0 1.5rem;
  max-width: 600px;
}
@media screen and (max-width: 700px) {
  .banner__heading {
    line-height: normal;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 700px) {
  .banner__heading {
    margin: 0 0 1rem;
    max-width: 700px;
  }
}
@media screen and (min-width: 1201px) {
  .banner__heading {
    max-width: 850px;
  }
}
@media screen and (min-width: 1401px) {
  .banner__heading {
    max-width: 999px;
  }
}
@media screen and (min-width: 1601px) {
  .banner__heading {
    max-width: 1080px;
  }
}
.banner__description {
  line-height: 22px;
}
@media screen and (min-width: 700px) {
  .banner__description {
    max-width: 700px;
  }
}
@media screen and (min-width: 1401px) {
  .banner__description {
    margin: 0 0 2rem;
    max-width: 810px;
  }
}

.testimonial {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background-color: #CCE8D2;
  padding-top: 3rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 1025px) {
  .testimonial {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1201px) {
  .testimonial {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 1401px) {
  .testimonial {
    padding-top: 14rem;
    padding-bottom: 8rem;
  }
}
.testimonial__main .view-header .heading, .testimonial__main .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .testimonial__main .view-header .faq-title, .testimonial__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h2,
.testimonial__main .webform-submission-form .view-header h2,
.webform-submission-form .testimonial__main .view-header h2,
.testimonial__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h2,
.testimonial__main .form__layout .view-header h2,
.form__layout .testimonial__main .view-header h2,
.testimonial__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h2,
.testimonial__main .add-product-review .view-header h2,
.add-product-review .testimonial__main .view-header h2, .testimonial__main .view-header .heading-sub, .testimonial__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h4,
.testimonial__main .webform-submission-form .view-header h4,
.webform-submission-form .testimonial__main .view-header h4,
.testimonial__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h4,
.testimonial__main .form__layout .view-header h4,
.form__layout .testimonial__main .view-header h4,
.testimonial__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .testimonial__main .view-header h4,
.testimonial__main .add-product-review .view-header h4,
.add-product-review .testimonial__main .view-header h4, .testimonial__main .view-header .path-cart .page-title, .path-cart .testimonial__main .view-header .page-title, .testimonial__main .view-header .path-add-a-review main .page-title, .path-add-a-review main .testimonial__main .view-header .page-title {
  margin-bottom: 0;
  margin-left: 0px;
}
.testimonial__testimonial_section {
  position: relative;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
}
.testimonial__testimonial_section--userdata {
  padding: 20px;
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 40%;
  background: #CCE8D2;
  z-index: 2;
  border-top-right-radius: 20px;
}
.testimonial__testimonial_section--userdata:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #CCE8D2;
  width: 20px;
  height: 20px;
  z-index: 0;
  border-top-right-radius: 20px;
}
.testimonial__testimonial_section--userdata:after {
  display: inline-block;
  content: "";
  background: #F1F1F1;
  position: absolute;
  width: 150%;
  height: 100%;
  top: -1px;
  left: 100%;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 2;
}
.testimonial__testimonial_section--userdata .round-border {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #F1F1F1;
  top: 0;
  right: 0;
  z-index: -1;
}
.testimonial__testimonial_section--userdata-rating {
  overflow: hidden;
  display: block;
}
.testimonial__testimonial_section--userdata-rating .starrating .star1-on {
  width: 21px;
  height: 20px;
  margin-right: 10px;
  background: url(../assets/images/black-star.svg) no-repeat center;
}
.testimonial__testimonial_section--inner {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.testimonial__testimonial_section-content {
  display: block;
  position: relative;
  background-color: #F1F1F1;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  padding: 60px 20px 30px;
}
@media screen and (min-width: 1025px) {
  .testimonial__testimonial_section-content {
    padding: 98px 42px 50px;
  }
}
.testimonial__testimonial_section-content::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  background-image: url(../assets/images/quotes.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1025px) {
  .testimonial__testimonial_section-content::before {
    height: 33px;
    left: 42px;
    top: 42px;
    width: 33px;
  }
}
.testimonial__testimonial_section--wraper {
  display: flex;
  margin-top: 10px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .testimonial__testimonial_section--wraper {
    margin-top: 20px;
  }
}
.testimonial__testimonial_section--wraper-user {
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  line-height: 30px;
  padding-left: 0;
}
@media screen and (min-width: 700px) {
  .testimonial__testimonial_section--wraper-user {
    font-size: 20px;
    padding-left: 15px;
  }
}
.testimonial .view-content {
  position: relative;
}
.testimonial .slide__caption {
  padding: 0 10px;
}
@media screen and (min-width: 1401px) {
  .testimonial .slide__caption {
    padding: 0 20px;
  }
}
.testimonial .slick .slick-list {
  margin: 0 -10px;
}
@media screen and (min-width: 1401px) {
  .testimonial .slick .slick-list {
    margin: 0 -20px;
  }
}
.testimonial .slick__arrow {
  position: absolute;
  top: -86px;
  right: 0;
}
@media screen and (max-width: 1025px) {
  .testimonial .slick__arrow {
    position: absolute;
    top: auto;
    right: 0;
    left: 25px;
    bottom: -70px;
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .testimonial .slick-arrow {
    width: 70px;
    height: 70px;
  }
}
.testimonial .slick-arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.testimonial .slick-arrow {
  background-color: #818282;
}
.testimonial .slick-arrow:hover {
  background-color: #818282;
}
.testimonial .slick-arrow:before {
  background-image: url(../assets/icons/white-right.svg);
}
@media screen and (max-width: 700px) {
  .testimonial .slick-arrow {
    background-color: #818282;
  }
}
.testimonial .slick-prev {
  right: 20px;
  left: auto;
}
.testimonial .slick-prev {
  width: 50px;
  height: 50px;
  background-color: #FEE073;
  border-radius: 50%;
  padding: 0;
  border: 0;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1401px) {
  .testimonial .slick-prev {
    width: 70px;
    height: 70px;
  }
}
.testimonial .slick-prev:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-image: url(../assets/icons/chevron-small-right_curved.svg);
}
.testimonial .slick-prev:before {
  background-image: url(../assets/icons/chevron-small-left_curved.svg);
}
.testimonial .slick-prev {
  background-color: #818282;
}
.testimonial .slick-prev:hover {
  background-color: #818282;
}
.testimonial .slick-prev:before {
  background-image: url(../assets/icons/white-right.svg);
  background-image: url(../assets/icons/white-left.svg);
}
@media screen and (max-width: 700px) {
  .testimonial .slick-prev {
    background-color: #818282;
  }
}

li#login-menu-link a {
  display: none;
}

@media (min-width: 300px) and (max-width: 1024px) {
  li#login-menu-link a {
    display: inline-block;
    /* background-color: #F0666F; */
    text-align: center;
    border: 1px solid #F0666F;
    color: #F0666F;
    border-radius: 5px;
    padding: 8px 110px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    margin: auto;
    margin-top: 26px;
    margin-bottom: 10px;
  }
  /*li#login-menu-link a:hover{
   color: #F1F1F1;
   background-color: #F0666F;
  }*/
}
@media (min-width: 300px) and (max-width: 699px) {
  .how-it-works .how-it-works__main .view-header .heading, .how-it-works .how-it-works__main .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .how-it-works .how-it-works__main .view-header .faq-title, .how-it-works .how-it-works__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
  .how-it-works .how-it-works__main .webform-submission-form .view-header h2,
  .webform-submission-form .how-it-works .how-it-works__main .view-header h2,
  .how-it-works .how-it-works__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .how-it-works .how-it-works__main .form__layout .view-header h2,
  .form__layout .how-it-works .how-it-works__main .view-header h2,
  .how-it-works .how-it-works__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .how-it-works .how-it-works__main .add-product-review .view-header h2,
  .add-product-review .how-it-works .how-it-works__main .view-header h2, .how-it-works .how-it-works__main .view-header .heading-sub, .how-it-works .how-it-works__main .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
  .how-it-works .how-it-works__main .webform-submission-form .view-header h4,
  .webform-submission-form .how-it-works .how-it-works__main .view-header h4,
  .how-it-works .how-it-works__main .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .how-it-works .how-it-works__main .form__layout .view-header h4,
  .form__layout .how-it-works .how-it-works__main .view-header h4,
  .how-it-works .how-it-works__main .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .how-it-works .how-it-works__main .add-product-review .view-header h4,
  .add-product-review .how-it-works .how-it-works__main .view-header h4, .how-it-works .how-it-works__main .view-header .path-cart .page-title, .path-cart .how-it-works .how-it-works__main .view-header .page-title, .how-it-works .how-it-works__main .view-header .path-add-a-review main .page-title, .path-add-a-review main .how-it-works .how-it-works__main .view-header .page-title {
    margin-left: 58px;
    text-align: center;
  }
}
.delivery {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .delivery {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .delivery {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.delivery {
  background-color: #FFFFFF;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 700px) {
  .delivery {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1201px) {
  .delivery {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}
.delivery .views-row {
  row-gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .delivery .views-row {
    justify-content: inherit;
  }
}
.delivery .view-header {
  text-align: center;
}
.delivery .view-header .description, .delivery .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .delivery .view-header .faq-short-text {
  margin-bottom: 20px;
}
@media screen and (min-width: 1201px) {
  .delivery .view-header .description, .delivery .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .delivery .view-header .faq-short-text {
    margin-bottom: 40px;
  }
}
.delivery .view-header .heading, .delivery .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .delivery .view-header .faq-title, .delivery .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
.delivery .webform-submission-form .view-header h2,
.webform-submission-form .delivery .view-header h2,
.delivery .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
.delivery .form__layout .view-header h2,
.form__layout .delivery .view-header h2,
.delivery .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
.delivery .add-product-review .view-header h2,
.add-product-review .delivery .view-header h2, .delivery .view-header .heading-sub, .delivery .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
.delivery .webform-submission-form .view-header h4,
.webform-submission-form .delivery .view-header h4,
.delivery .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
.delivery .form__layout .view-header h4,
.form__layout .delivery .view-header h4,
.delivery .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
.delivery .add-product-review .view-header h4,
.add-product-review .delivery .view-header h4, .delivery .view-header .path-cart .page-title, .path-cart .delivery .view-header .page-title, .delivery .view-header .path-add-a-review main .page-title, .path-add-a-review main .delivery .view-header .page-title {
  margin-top: 0;
}
@media screen and (min-width: 1201px) {
  .delivery .view-header .heading, .delivery .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .delivery .view-header .faq-title, .delivery .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
  .delivery .webform-submission-form .view-header h2,
  .webform-submission-form .delivery .view-header h2,
  .delivery .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
  .delivery .form__layout .view-header h2,
  .form__layout .delivery .view-header h2,
  .delivery .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .delivery .view-header h2,
  .delivery .add-product-review .view-header h2,
  .add-product-review .delivery .view-header h2, .delivery .view-header .heading-sub, .delivery .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
  .delivery .webform-submission-form .view-header h4,
  .webform-submission-form .delivery .view-header h4,
  .delivery .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
  .delivery .form__layout .view-header h4,
  .form__layout .delivery .view-header h4,
  .delivery .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .delivery .view-header h4,
  .delivery .add-product-review .view-header h4,
  .add-product-review .delivery .view-header h4, .delivery .view-header .path-cart .page-title, .path-cart .delivery .view-header .page-title, .delivery .view-header .path-add-a-review main .page-title, .path-add-a-review main .delivery .view-header .page-title {
    margin-bottom: 20px;
  }
}
.delivery__cuntery {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.delivery__cuntery--image img {
  width: 64px;
}
@media screen and (min-width: 1025px) {
  .delivery__cuntery--image img {
    width: 100px;
  }
}
.delivery__cuntery--name h3 {
  font-size: 22px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 12px;
  font-weight: 300;
}
@media screen and (min-width: 1401px) {
  .delivery__cuntery--name h3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.delivery__cuntery--description {
  color: #657BBC;
  font-weight: 400;
  text-align: center;
}
.delivery .view-content .views-rows {
  width: 50%;
}
@media screen and (min-width: 700px) {
  .delivery .view-content .views-rows {
    width: 50%;
  }
}
@media screen and (min-width: 1201px) {
  .delivery .view-content .views-rows {
    width: 20%;
  }
}

.product--main {
  background-color: #F1F1F1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.product--main::before {
  display: none;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 100%;
  background-size: 100%;
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
  background-position: bottom right;
}
@media screen and (min-width: 1025px) {
  .product--main::before {
    background-size: 50%;
  }
}
@media screen and (min-width: 1201px) {
  .product--main::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    clip-path: polygon(100% 89%, 0 99%, 101% 100%);
  }
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 850px) {
  .product-details {
    row-gap: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.product-details-bg {
  position: absolute;
  bottom: 0;
  right: 8px;
  z-index: -1;
  max-width: 800px;
  text-align: right;
  width: 62%;
}
@media screen and (max-width: 1201px) {
  .product-details-bg {
    left: 50%;
    right: inherit;
    text-align: center;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media screen and (min-width: 1114px) {
  .product-details-bg .product-details-bg {
    /* left: 50%; */
    right: -44%;
    /* right: inherit; */
    text-align: center;
    bottom: 0px;
    transform: translateX(-50%);
    width: 100%;
  }
}
.product-details-bg img {
  max-width: 100%;
  display: block;
  margin-bottom: -41px;
}
.product-details__section .heading, .product-details__section .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .product-details__section .faq-title, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h2,
.product-details__section .webform-submission-form .view-header h2,
.webform-submission-form .view-header .product-details__section h2,
.product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h2,
.product-details__section .form__layout .view-header h2,
.form__layout .view-header .product-details__section h2,
.product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h2,
.product-details__section .add-product-review .view-header h2,
.add-product-review .view-header .product-details__section h2, .product-details__section .heading-sub, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h4,
.product-details__section .webform-submission-form .view-header h4,
.webform-submission-form .view-header .product-details__section h4,
.product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h4,
.product-details__section .form__layout .view-header h4,
.form__layout .view-header .product-details__section h4,
.product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h4,
.product-details__section .add-product-review .view-header h4,
.add-product-review .view-header .product-details__section h4, .product-details__section .path-cart .page-title, .path-cart .product-details__section .page-title, .product-details__section .path-add-a-review main .page-title, .path-add-a-review main .product-details__section .page-title {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 700px) {
  .product-details__section .heading, .product-details__section .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .product-details__section .faq-title, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .product-details__section h2,
  .product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .form__layout .view-header h2,
  .form__layout .view-header .product-details__section h2,
  .product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .add-product-review .view-header h2,
  .add-product-review .view-header .product-details__section h2, .product-details__section .heading-sub, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .product-details__section h4,
  .product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .form__layout .view-header h4,
  .form__layout .view-header .product-details__section h4,
  .product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .add-product-review .view-header h4,
  .add-product-review .view-header .product-details__section h4, .product-details__section .path-cart .page-title, .path-cart .product-details__section .page-title, .product-details__section .path-add-a-review main .page-title, .path-add-a-review main .product-details__section .page-title {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1201px) {
  .product-details__section .heading, .product-details__section .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .product-details__section .faq-title, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .product-details__section h2,
  .product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .form__layout .view-header h2,
  .form__layout .view-header .product-details__section h2,
  .product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h2,
  .product-details__section .add-product-review .view-header h2,
  .add-product-review .view-header .product-details__section h2, .product-details__section .heading-sub, .product-details__section .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .product-details__section h4,
  .product-details__section .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .form__layout .view-header h4,
  .form__layout .view-header .product-details__section h4,
  .product-details__section .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product-details__section h4,
  .product-details__section .add-product-review .view-header h4,
  .add-product-review .view-header .product-details__section h4, .product-details__section .path-cart .page-title, .path-cart .product-details__section .page-title, .product-details__section .path-add-a-review main .page-title, .path-add-a-review main .product-details__section .page-title {
    margin-bottom: 2rem;
  }
}
.product-details__section--reviews {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 700px) {
  .product-details__section--reviews {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1401px) {
  .product-details__section--reviews {
    margin-bottom: 3rem;
  }
}
.product-details__section--reviews .starrating {
  font-weight: 500;
  display: flex;
  gap: 5px;
}
.product-details__section--reviews .starrating .star1-on {
  background-image: url(../assets/images/on-star.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin: 0;
  background-size: 100%;
}
.product-details__section--reviews .starrating .star-off {
  width: 24px;
  height: 24px;
  background-image: url(../assets/images/off-star.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  background-size: 100%;
}
.product-details__section--reviews .starrating + p {
  line-height: normal;
  font-weight: 500;
  margin-top: 3px;
}
@media screen and (min-width: 1025px) {
  .product-details__section--reviews .starrating + p {
    margin-top: 0;
  }
}
.product-details__section--price {
  font-weight: 300;
  color: #657BBC;
  font-family: "Rowdies", sans-serif;
  font-size: 24px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .product-details__section--price {
    margin-top: 2rem;
    margin-bottom: 1.8rem;
  }
}
@media screen and (min-width: 1201px) {
  .product-details__section--price {
    font-size: 30px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}
.product-details-img {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .product-details-img {
    padding-left: 70px;
    margin-bottom: -89px;
  }
}
.product-details-img img {
  max-width: 70%;
}

.product {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1025px) {
  .product {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1401px) {
  .product {
    margin-bottom: 18rem;
  }
}
.product .views-field.views-field-nothing {
  height: 100%;
}
.product .view-header .heading, .product .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .product .view-header .faq-title, .product .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product .view-header h2,
.product .webform-submission-form .view-header h2,
.webform-submission-form .product .view-header h2,
.product .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .product .view-header h2,
.product .form__layout .view-header h2,
.form__layout .product .view-header h2,
.product .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .product .view-header h2,
.product .add-product-review .view-header h2,
.add-product-review .product .view-header h2, .product .view-header .heading-sub, .product .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product .view-header h4,
.product .webform-submission-form .view-header h4,
.webform-submission-form .product .view-header h4,
.product .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .product .view-header h4,
.product .form__layout .view-header h4,
.form__layout .product .view-header h4,
.product .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .product .view-header h4,
.product .add-product-review .view-header h4,
.add-product-review .product .view-header h4, .product .view-header .path-cart .page-title, .path-cart .product .view-header .page-title, .product .view-header .path-add-a-review main .page-title, .path-add-a-review main .product .view-header .page-title {
  margin-top: 3rem;
}
@media screen and (min-width: 1025px) {
  .product .view-header .heading, .product .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .product .view-header .faq-title, .product .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product .view-header h2,
  .product .webform-submission-form .view-header h2,
  .webform-submission-form .product .view-header h2,
  .product .view-header .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .product .view-header h2,
  .product .form__layout .view-header h2,
  .form__layout .product .view-header h2,
  .product .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product .view-header h2,
  .product .add-product-review .view-header h2,
  .add-product-review .product .view-header h2, .product .view-header .heading-sub, .product .view-header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .product .view-header h4,
  .product .webform-submission-form .view-header h4,
  .webform-submission-form .product .view-header h4,
  .product .view-header .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .product .view-header h4,
  .product .form__layout .view-header h4,
  .form__layout .product .view-header h4,
  .product .view-header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .product .view-header h4,
  .product .add-product-review .view-header h4,
  .add-product-review .product .view-header h4, .product .view-header .path-cart .page-title, .path-cart .product .view-header .page-title, .product .view-header .path-add-a-review main .page-title, .path-add-a-review main .product .view-header .page-title {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.product .view-content .views-row {
  margin: 0 -10px;
  margin-bottom: 5px;
  width: auto;
}
.product .view-content .views-row .views-rows {
  padding: 0 10px;
  margin-bottom: 0;
  margin-top: 10px !important;
}
.product .view-content .views-row .views-rows:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .product .view-content .views-row .views-rows {
    padding: 0 10px;
    margin-top: 15px !important;
  }
}
.product {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .product {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .product {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.product__wraper {
  border: 2px solid #F1F1F1;
  border-radius: 10px;
  position: relative;
  height: 100%;
  transition: all ease 0.3s;
  display: flex;
  flex-flow: column;
  padding-bottom: 30px;
  overflow: hidden;
}
.product__wraper:hover {
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.product__wraper:hover .product__image-box__image img {
  transform: rotate(20deg);
}
.product__wraper-age {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.7rem;
  background-color: #b2bdde;
  border-radius: 0px 10px 10px 0px;
  left: -2px;
  top: 10px;
  color: #FFFFFF;
  width: 80px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .product__wraper-age {
    font-size: 1.8rem;
    width: 150px;
    height: 54px;
  }
}
@media screen and (min-width: 1401px) {
  .product__wraper-age {
    font-size: 2.2rem;
  }
}
.product__image-box {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #F1F1F1;
  padding: 15px 0;
  text-align: center;
  display: block;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .product__image-box {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
  }
}
.product__image-box__image img {
  max-width: 200px;
  height: auto;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .product__image-box__image img {
    max-width: 400px;
  }
}
.product__content {
  padding: 20px 20px 0 20px;
}
.product__content--title h3 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
}
@media screen and (min-width: 1401px) {
  .product__content--title h3 {
    font-size: 26px;
  }
}
.product__content--title .description, .product__content--title .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .product__content--title .faq-short-text {
  font-weight: 400;
  margin-bottom: 40px;
}
.product__details {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 20px;
}
.product__details--pages {
  font-weight: 600;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  line-height: 2.7rem;
  color: #F0666F;
}
@media screen and (min-width: 1025px) {
  .product__details--pages {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1401px) {
  .product__details--pages {
    font-size: 2.2rem;
  }
}
.product__details--price {
  font-size: 1.6rem;
  line-height: 2.7rem;
  color: #657BBC;
  font-weight: 600;
  font-family: "Sora", sans-serif;
}
@media screen and (min-width: 1025px) {
  .product__details--price {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1401px) {
  .product__details--price {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1025px) {
  .product__heading {
    text-align: center;
    line-height: normal;
    margin: 4rem 0 3rem !important;
  }
}
.product .view-empty {
  margin-bottom: 50px;
}
.product .views-exposed-form .form--inline {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1025px) {
  .product .views-exposed-form .form--inline {
    flex-direction: row;
    margin-bottom: 10px;
    gap: 10px;
    justify-content: center;
  }
}
@media screen and (min-width: 1201px) {
  .product .views-exposed-form .form--inline {
    margin-bottom: 10px;
  }
}
.product .views-exposed-form .form--inline label {
  display: none;
}
.product .views-exposed-form .form--inline .form-item {
  margin: 0;
}
@media screen and (max-width: 1025px) {
  .product .views-exposed-form .form--inline .form-item {
    width: calc(50% - 10px);
  }
  .product .views-exposed-form .form--inline .form-item select {
    width: 100%;
  }
}
.product .views-exposed-form .form--inline .form-select {
  text-align: left;
  border: 2px solid #F1F1F1;
  color: #030504;
  font-weight: 500;
  position: relative;
  background-color: #ffffff;
  background-image: url(../assets/icons/Arrow_down.svg);
  background-repeat: no-repeat;
  background-position: right 1.9rem center;
  padding: 19px 50px 19px 20px;
  font-size: 1.8rem;
  font-family: "Sora", sans-serif;
  border-radius: 10px;
  min-width: 150px;
}
@media screen and (max-width: 1025px) {
  .product .views-exposed-form .form--inline .form-select {
    min-width: unset;
    font-size: 1.6rem;
    margin: 0;
  }
}
.product .views-exposed-form .form-actions {
  margin: 0;
  display: flex;
  gap: 20px;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  .product .views-exposed-form .form-actions {
    margin-right: -10px;
    margin-left: auto;
  }
}
.product .views-exposed-form .form-actions input {
  text-align: center;
  border: 2px solid #F0666F;
  color: #F0666F;
  font-weight: 500;
  position: relative;
  padding: 19px 25px;
  font-size: 1.8rem;
  font-family: "Sora", sans-serif;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: row;
  margin: 0;
  /* ADD THIS for iPhone/Safari */
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: transparent !important;
}
.product .views-exposed-form .form-actions input .product .views-exposed-form .form-actions input:hover {
  color: #fff;
  background-color: #F0666F !important; /* force pink */
}
@media screen and (max-width: 700px) {
  .product .views-exposed-form .form-actions input:hover {
    color: #fff;
    background-color: #F0666F !important;
  }
}

.view-search-products {
  margin-top: 80px;
}

@media screen and (max-width: 700px) {
  .block-character-customization-block .two-column__heading {
    max-width: 100%;
  }
}

.cardbox {
  background-color: #F1F1F1;
}
.cardbox .how-it-works__main {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1401px) {
  .cardbox .how-it-works__main {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.cardbox .how-it-works__main .actions-button {
  margin-top: 30px;
  text-align: center;
}
.cardbox .view-content .row {
  row-gap: 20px;
}
@media screen and (min-width: 1025px) {
  .cardbox .view-content .row {
    row-gap: 0px;
  }
}
.cardbox .heading, .cardbox .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .cardbox .faq-title, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h2,
.cardbox .webform-submission-form .view-header h2,
.webform-submission-form .view-header .cardbox h2,
.cardbox .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .cardbox h2,
.cardbox .form__layout .view-header h2,
.form__layout .view-header .cardbox h2,
.cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h2,
.cardbox .add-product-review .view-header h2,
.add-product-review .view-header .cardbox h2, .cardbox .heading-sub, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h4,
.cardbox .webform-submission-form .view-header h4,
.webform-submission-form .view-header .cardbox h4,
.cardbox .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .cardbox h4,
.cardbox .form__layout .view-header h4,
.form__layout .view-header .cardbox h4,
.cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h4,
.cardbox .add-product-review .view-header h4,
.add-product-review .view-header .cardbox h4, .cardbox .path-cart .page-title, .path-cart .cardbox .page-title, .cardbox .path-add-a-review main .page-title, .path-add-a-review main .cardbox .page-title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .cardbox .heading, .cardbox .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .cardbox .faq-title, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .cardbox h2,
  .cardbox .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .form__layout .view-header h2,
  .form__layout .view-header .cardbox h2,
  .cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .add-product-review .view-header h2,
  .add-product-review .view-header .cardbox h2, .cardbox .heading-sub, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .cardbox h4,
  .cardbox .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .form__layout .view-header h4,
  .form__layout .view-header .cardbox h4,
  .cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .add-product-review .view-header h4,
  .add-product-review .view-header .cardbox h4, .cardbox .path-cart .page-title, .path-cart .cardbox .page-title, .cardbox .path-add-a-review main .page-title, .path-add-a-review main .cardbox .page-title {
    margin-bottom: 40px;
    margin-left: 0px;
  }
}
@media screen and (min-width: 700px) {
  .cardbox .heading, .cardbox .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .cardbox .faq-title, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .cardbox h2,
  .cardbox .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .form__layout .view-header h2,
  .form__layout .view-header .cardbox h2,
  .cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h2,
  .cardbox .add-product-review .view-header h2,
  .add-product-review .view-header .cardbox h2, .cardbox .heading-sub, .cardbox .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .cardbox h4,
  .cardbox .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .form__layout .view-header h4,
  .form__layout .view-header .cardbox h4,
  .cardbox .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .cardbox h4,
  .cardbox .add-product-review .view-header h4,
  .add-product-review .view-header .cardbox h4, .cardbox .path-cart .page-title, .path-cart .cardbox .page-title, .cardbox .path-add-a-review main .page-title, .path-add-a-review main .cardbox .page-title {
    margin-bottom: 100px;
  }
}
.cardbox__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cardbox__inner--img {
  margin-bottom: 16px;
  margin: auto;
}
@media screen and (min-width: 1201px) {
  .cardbox__inner--img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1025px) {
  .cardbox__inner--img img {
    /*margin-left: 113px;*/
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 700px) {
  .cardbox__inner--img img {
    /* margin-left: 80px;*/
    width: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 300px) {
  .cardbox__inner--img img {
    /*margin-left: 113px;*/
  }
}
.cardbox__inner-content-title h3 {
  margin-top: 0;
  font-weight: 300;
  margin-bottom: 15px;
}
.cardbox .button-outline {
  margin-top: 50px;
  text-align: center;
}

.card-box-v2 {
  padding: 50px 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .card-box-v2 {
    /*  margin-left: 0px;*/
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .card-box-v2 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1025px) {
  .card-box-v2 {
    padding: 100px 140px 100px 140px;
  }
}
.card-box-v2--header .heading, .card-box-v2--header .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .card-box-v2--header .faq-title, .card-box-v2--header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
.card-box-v2--header .webform-submission-form .view-header h2,
.webform-submission-form .view-header .card-box-v2--header h2,
.card-box-v2--header .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
.card-box-v2--header .form__layout .view-header h2,
.form__layout .view-header .card-box-v2--header h2,
.card-box-v2--header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
.card-box-v2--header .add-product-review .view-header h2,
.add-product-review .view-header .card-box-v2--header h2, .card-box-v2--header .heading-sub, .card-box-v2--header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
.card-box-v2--header .webform-submission-form .view-header h4,
.webform-submission-form .view-header .card-box-v2--header h4,
.card-box-v2--header .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
.card-box-v2--header .form__layout .view-header h4,
.form__layout .view-header .card-box-v2--header h4,
.card-box-v2--header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
.card-box-v2--header .add-product-review .view-header h4,
.add-product-review .view-header .card-box-v2--header h4, .card-box-v2--header .path-cart .page-title, .path-cart .card-box-v2--header .page-title, .card-box-v2--header .path-add-a-review main .page-title, .path-add-a-review main .card-box-v2--header .page-title {
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .card-box-v2--header .heading, .card-box-v2--header .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .card-box-v2--header .faq-title, .card-box-v2--header .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
  .card-box-v2--header .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .card-box-v2--header h2,
  .card-box-v2--header .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
  .card-box-v2--header .form__layout .view-header h2,
  .form__layout .view-header .card-box-v2--header h2,
  .card-box-v2--header .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .card-box-v2--header h2,
  .card-box-v2--header .add-product-review .view-header h2,
  .add-product-review .view-header .card-box-v2--header h2, .card-box-v2--header .heading-sub, .card-box-v2--header .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
  .card-box-v2--header .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .card-box-v2--header h4,
  .card-box-v2--header .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
  .card-box-v2--header .form__layout .view-header h4,
  .form__layout .view-header .card-box-v2--header h4,
  .card-box-v2--header .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .card-box-v2--header h4,
  .card-box-v2--header .add-product-review .view-header h4,
  .add-product-review .view-header .card-box-v2--header h4, .card-box-v2--header .path-cart .page-title, .path-cart .card-box-v2--header .page-title, .card-box-v2--header .path-add-a-review main .page-title, .path-add-a-review main .card-box-v2--header .page-title {
    margin-bottom: 20xp;
  }
}
.card-box-v2--header .description, .card-box-v2--header .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .card-box-v2--header .faq-short-text {
  max-width: 1120px;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .card-box-v2--header .description, .card-box-v2--header .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .card-box-v2--header .faq-short-text {
    margin-bottom: 100px;
  }
}
.card-box-v2 .views-field-field-product-animation .lottiefiles-field-item {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .card-box-v2 .views-field-field-product-animation .lottiefiles-field-item {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
}
.card-box-v2__inner {
  text-align: left;
  align-items: flex-start;
  justify-content: start;
}
.card-box-v2__inner-description {
  font-weight: 400;
}

.coupon_code_info .coupon_info_line .font-weight-bold {
  font-size: 16px;
  margin: 0 5px;
  font-weight: 600;
  color: #f0666f;
}

a {
  cursor: pointer;
  font-weight: normal;
  text-decoration: none;
  transition: 0.2s ease;
  color: #657BBC;
  transition: all ease 0.3s;
}

.searchbar.open {
  width: 275px;
  margin-right: -17px;
  z-index: 9;
}

@media screen and (max-width: 380px) {
  .searchbar.open .form-text {
    width: 87% !important;
    margin-left: 35px !important;
  }
}
@media screen and (max-width: 1250px) {
  .searchbar.open .form-text {
    width: 87% !important;
    margin-left: 35px !important;
  }
}
@media screen and (max-width: 1026px) {
  .searchbar.open .form-text {
    width: 87% !important;
    margin-left: 35px !important;
  }
}
@media screen and (max-width: 1366px) {
  .searchbar.open .form-text {
    width: 85% !important;
    margin-left: 40px !important;
  }
}
/*.js-form-item label {
    position: absolute;
    margin-top: 2px;
    margin-left: 10px;
    font-weight: 400;
}
.form-select {

    margin-top: 2px !important;
    padding: 24px 36px 4px 11px !important;
}*/
.order-total-line {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #111;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.order-total-line__subtotal {
  font-weight: normal;
}

.order-total-line__adjustment--sticker-sheets,
.order-total-line__adjustment--shipping {
  font-weight: normal;
}

.order-total-line.total-items {
  font-weight: normal;
}

.order-total-line__total {
  font-weight: bold;
  font-size: 16px;
  margin-top: 8px;
}

.path-checkout .view-commerce-checkout-order-summary .views-view-table {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left;
}

.region-right-sidebar .views-element-container.block-views-blockcommerce-checkout-order-summary-block-2 h2 {
  text-align: left;
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-size: 24px;
}

/*checkout-complete-page .dialog-off-canvas-main-canvas .layout-container.clearfix .progressbar{
    margin-top: -29px;
}*/
.checkout-complete-page .dialog-off-canvas-main-canvas .layout-container aside.clearfix.text-formatted.field.field--name-body.field--type-text-with-summary.field--label-hidden.field__item {
  margin-bottom: -74px;
}

/**  checkout process  */
.checkout-complete-page.path-checkout .dialog-off-canvas-main-canvas .page-title {
  margin-top: 0px !important;
}

#block-one-world-donationblock .field--type-text-with-summary.field--label-hidden.field__item {
  margin-left: 0px !important;
}

.checkout-complete-page.path-checkout .dialog-off-canvas-main-canvas div#block-one-world-pagetitle .page-title {
  font-size: 40px !important;
  margin-left: 0px !important;
}

.checkout-complete-page.path-checkout .dialog-off-canvas-main-canvas .checkout-complete {
  margin-top: 85px;
}

/* profile icon */
@media (min-width: 360px) {
  input#edit-openid-connect-client-google-login--2 {
    background-position: 56px center !important;
  }
  input#edit-openid-connect-client-facebook-login--2 {
    background-position: 55px center !important;
  }
}
@media (min-width: 425px) {
  input#edit-openid-connect-client-google-login--2 {
    background-position: 85px center !important;
  }
  input#edit-openid-connect-client-facebook-login--2 {
    background-position: 85px center !important;
  }
}
@media (min-width: 621px) {
  input#edit-openid-connect-client-google-login--2 {
    background-position: 180px center !important;
  }
  input#edit-openid-connect-client-facebook-login--2 {
    background-position: 180px center !important;
  }
}
@media (min-width: 767px) {
  input#edit-openid-connect-client-google-login--2 {
    background-position: 190px center !important;
  }
  input#edit-openid-connect-client-facebook-login--2 {
    background-position: 190px center !important;
  }
}
@media (min-width: 1024px) {
  input#edit-openid-connect-client-google-login--2 {
    background-position: 279px center !important;
  }
  input#edit-openid-connect-client-facebook-login--2 {
    background-position: 279px center !important;
  }
}
/* @media (min-width: 621px) {
    input#edit-openid-connect-client-google-login--2 {
        background-position: 50px center !important;
    }
}
@media (min-width: 767px) {
    input#edit-openid-connect-client-google-login--2 {
        background-position: 40px center !important;
    }
        input#edit-openid-connect-client-facebook-login--2 {
        background-position: 40px center !important;
    }
}

@media (min-width: 1024px) {
    input#edit-openid-connect-client-google-login--2 {
        background-position: 100px center !important;
    }
        input#edit-openid-connect-client-facebook-login--2 {
        background-position: 100px center !important;
    }
}

@media (min-width: 280px) {
    input#edit-openid-connect-client-google-login--2 {
        background-position: 56px center !important;
    }
        input#edit-openid-connect-client-facebook-login--2 {
        background-position: 55px center !important;
    }
}

@media (min-width: 425px) {
    input#edit-openid-connect-client-facebook-login--2 {
        background-position: 81px center !important;
    }
}*/
.about-one__section--text-description p:last-child {
  margin-bottom: 12px;
}

h2.heading.mt, .view-frequently-asked-questions .view-header h2.mt.faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2.mt,
.webform-submission-form .view-header h2.mt,
.form__layout .js-form-item.form-item.form-type-processed-text h2.mt,
.form__layout .view-header h2.mt,
.add-product-review .js-form-item.form-item.form-type-processed-text h2.mt,
.add-product-review .view-header h2.mt, h2.mt.heading-sub, .path-cart h2.mt.page-title, .path-add-a-review main h2.mt.page-title {
  margin-left: 0;
}

.explore-age .view-header h2 {
  margin-left: 0;
}

h2.heading, .view-frequently-asked-questions .view-header h2.faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
.webform-submission-form .view-header h2,
.form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .view-header h2,
.add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .view-header h2, h2.heading-sub, .path-cart h2.page-title, .path-add-a-review main h2.page-title {
  margin-left: 0;
}

.how-it-works__main .cardbox__inner {
  align-items: start;
  margin: 0 auto;
}

h2.heading.product__heading, .view-frequently-asked-questions .view-header h2.product__heading.faq-title, .webform-submission-form .js-form-item.form-item.form-type-processed-text h2.product__heading,
.webform-submission-form .view-header h2.product__heading,
.form__layout .js-form-item.form-item.form-type-processed-text h2.product__heading,
.form__layout .view-header h2.product__heading,
.add-product-review .js-form-item.form-item.form-type-processed-text h2.product__heading,
.add-product-review .view-header h2.product__heading, h2.product__heading.heading-sub, .path-cart h2.product__heading.page-title, .path-add-a-review main h2.product__heading.page-title {
  margin-left: 0;
}

.messages.messages--status {
  color: green;
  font-weight: 400;
}

.view-orders .col-12.col-md-9.main-content .account-form.m-3 .row .col-12.col-md-6.main-content .invite-card.mb-4 .invitecard-content.p-3 p {
  font-size: 13px !important;
}

.shop-btn {
  background-color: rgba(243, 198, 211, 0);
  color: #F0666F;
  border: 1px solid #F0666F;
  padding: 10px 30px;
  font-size: 16px;
  /* font-weight: bold; */
  cursor: pointer;
  border-radius: 5px;
}

.shop-btn:hover {
  background: #F0666F;
  color: #fff;
}

.invite-card {
  border: 1px solid #F0666F;
  border-radius: 8px;
  text-align: left;
  background: #fff;
}

.heading-css {
  font: normal normal 300 30px/51px Rowdies;
}

.invite-btn {
  border: 1px solid #F0666F;
  background: transparent;
  color: #F0666F;
  font-weight: 500;
}

.invite-btn:hover {
  background: #F0666F;
  color: #fff;
}

/* logout page  css */
a#edit-cancel {
  cursor: pointer;
  font-weight: normal;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  width: 50%;
  text-align: center;
  border-redius: 8px;
  transition: 0.2s ease;
  color: #F0666F;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
  margin-bottom: 90px;
}
@media (min-width: 320px) and (max-width: 430px) {
  a#edit-cancel {
    width: 90%;
  }
}

a#edit-cancel:hover {
  color: #F1F1F1;
  background-color: #F0666F;
}

#user-logout-confirm div#edit-actions {
  /* margin: auto; */
  align-text: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#user-logout-confirm #edit-actions input#edit-submit {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
  width: 50% !important;
}
@media (min-width: 320px) and (max-width: 430px) {
  #user-logout-confirm #edit-actions input#edit-submit {
    width: 90% !important;
  }
}

#user-logout-confirm #edit-actions input#edit-submit:hover {
  color: #F0666F;
  background-color: #F1F1F1;
}

h1.page-title {
  margin-top: 30px;
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 90px;
  line-height: 1.17;
}

.review-img.img1 {
  position: relative;
}

.review-img.img1 img {
  position: absolute;
  right: -66px !important;
  width: 253px !important;
  top: -55px;
}
@media (min-width: 372px) {
  .review-img.img1 img {
    position: absolute;
    right: -38px;
    width: 94px;
    top: -114px;
  }
}
@media (min-width: 767px) {
  .review-img.img1 img {
    position: absolute;
    right: -38px;
    width: 139px;
    top: -124px;
  }
}
@media (min-width: 1024px) {
  .review-img.img1 img {
    width: 215px;
  }
}
@media (min-width: 1440px) {
  .review-img.img1 img {
    right: -63px;
    width: 252px;
  }
}

.review-img.img3 {
  position: relative;
}

.review-img.img3 img {
  position: absolute;
  width: 216px !important;
  left: -62px !important;
  top: -80px;
}
@media (min-width: 372px) {
  .review-img.img3 img {
    position: absolute;
    width: 106px;
    left: -42px;
    top: -91px;
  }
}
@media (min-width: 767px) {
  .review-img.img3 img {
    position: absolute;
    width: 140px;
    left: -42px;
    top: -91px;
  }
}
@media (min-width: 1024px) {
  .review-img.img3 img {
    width: 191px;
    left: -61px;
  }
}
@media (min-width: 1440px) {
  .review-img.img3 img {
    width: 212px;
  }
}

.review-img.img4 {
  position: relative;
}

.review-img.img4 {
  position: relative;
  text-align: right;
  margin-bottom: -20px;
}
@media (min-width: 767px) {
  .review-img.img4 {
    margin-left: 565px;
    margin-bottom: -10px;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .review-img.img4 {
    margin-bottom: -10px;
    margin-right: -64px;
  }
}

.review-img.img2 {
  position: relative;
}

.review-img.img2 img {
  position: absolute;
  padding-left: 0px;
}
@media (min-width: 372px) {
  .review-img.img2 img {
    left: 300px;
  }
}
@media (min-width: 767px) {
  .review-img.img2 img {
    padding-left: 200px;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .review-img.img2 img {
    padding-left: -17px;
  }
}

.review-img.img2 {
  position: relative;
}

@media (min-width: 1024px) {
  form#add-product-review {
    padding: 70px 186px 0px;
  }
}
form#add-product-review input#edit-full-name {
  background: #DBFAE1;
  border: 1px solid #00D82E;
}

form#add-product-review input#edit-email-address {
  background: #FFF5CF;
  border: 1px solid #FFC800;
}

.review-img.img4 img {
  max-width: 100%;
  /* margin-bottom: -60px; */
  height: auto;
  margin-right: 1px;
  width: 342px;
  margin-bottom: 11px;
  position: relative;
  z-index: 9999;
}
@media (min-width: 375px) {
  .review-img.img4 img {
    margin-bottom: 10px;
    height: auto;
    margin-right: -1px;
    width: 268px;
  }
}

[data-star-rating] .gl-star-rating--stars {
  padding-left: 14px;
}
@media (min-width: 372px) {
  [data-star-rating] .gl-star-rating--stars {
    align-items: center;
    top: 20px;
    cursor: pointer;
    display: flex;
    padding-left: 43px;
    position: relative;
  }
}
@media (min-width: 767px) {
  [data-star-rating] .gl-star-rating--stars {
    padding-left: 234px;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  [data-star-rating] .gl-star-rating--stars {
    padding-left: 1px;
  }
}

@media (min-width: 374px) {
  .review-img.img4 {
    position: relative;
    text-align: right;
    width: 212px;
    padding-left: 211px;
    margin-bottom: -10px;
  }
}
.wysiwyg-remote-video .video__wrapper {
  position: relative;
  margin-left: 52px !important;
  margin-right: 53px !important;
  margin-top: 11px;
}
@media screen and (min-width: 375px) {
  .wysiwyg-remote-video .video__wrapper {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .wysiwyg-remote-video .video__wrapper {
    margin-left: 41px !important;
    margin-right: 44px !important;
    margin-top: 1px;
  }
}
@media screen and (min-width: 1024px) {
  .wysiwyg-remote-video .video__wrapper {
    margin-left: 55px;
    margin-right: 55px;
  }
}
@media screen and (min-width: 1440px) {
  .wysiwyg-remote-video .video__wrapper {
    margin-left: 55px !important;
    margin-right: 57px !important;
  }
}
.wysiwyg-remote-video .video__wrapper .video__content {
  margin: 800px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  max-width: 640px;
  padding: 20px;
}
.wysiwyg-remote-video .video__wrapper .video__content.js-hidden {
  opacity: 0;
}
.wysiwyg-remote-video .video__wrapper .video__content .heading, .wysiwyg-remote-video .video__wrapper .video__content .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .wysiwyg-remote-video .video__wrapper .video__content .faq-title, .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
.wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .view-header h2,
.webform-submission-form .view-header .wysiwyg-remote-video .video__wrapper .video__content h2,
.wysiwyg-remote-video .video__wrapper .video__content .form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
.wysiwyg-remote-video .video__wrapper .video__content .form__layout .view-header h2,
.form__layout .view-header .wysiwyg-remote-video .video__wrapper .video__content h2,
.wysiwyg-remote-video .video__wrapper .video__content .add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
.wysiwyg-remote-video .video__wrapper .video__content .add-product-review .view-header h2,
.add-product-review .view-header .wysiwyg-remote-video .video__wrapper .video__content h2, .wysiwyg-remote-video .video__wrapper .video__content .heading-sub, .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
.wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .view-header h4,
.webform-submission-form .view-header .wysiwyg-remote-video .video__wrapper .video__content h4,
.wysiwyg-remote-video .video__wrapper .video__content .form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
.wysiwyg-remote-video .video__wrapper .video__content .form__layout .view-header h4,
.form__layout .view-header .wysiwyg-remote-video .video__wrapper .video__content h4,
.wysiwyg-remote-video .video__wrapper .video__content .add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
.wysiwyg-remote-video .video__wrapper .video__content .add-product-review .view-header h4,
.add-product-review .view-header .wysiwyg-remote-video .video__wrapper .video__content h4, .wysiwyg-remote-video .video__wrapper .video__content .path-cart .page-title, .path-cart .wysiwyg-remote-video .video__wrapper .video__content .page-title, .wysiwyg-remote-video .video__wrapper .video__content .path-add-a-review main .page-title, .path-add-a-review main .wysiwyg-remote-video .video__wrapper .video__content .page-title {
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 700px) {
  .wysiwyg-remote-video .video__wrapper .video__content .heading, .wysiwyg-remote-video .video__wrapper .video__content .view-frequently-asked-questions .view-header .faq-title, .view-frequently-asked-questions .view-header .wysiwyg-remote-video .video__wrapper .video__content .faq-title, .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .js-form-item.form-item.form-type-processed-text h2, .webform-submission-form .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
  .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .view-header h2,
  .webform-submission-form .view-header .wysiwyg-remote-video .video__wrapper .video__content h2,
  .wysiwyg-remote-video .video__wrapper .video__content .form__layout .js-form-item.form-item.form-type-processed-text h2,
  .form__layout .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
  .wysiwyg-remote-video .video__wrapper .video__content .form__layout .view-header h2,
  .form__layout .view-header .wysiwyg-remote-video .video__wrapper .video__content h2,
  .wysiwyg-remote-video .video__wrapper .video__content .add-product-review .js-form-item.form-item.form-type-processed-text h2,
  .add-product-review .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h2,
  .wysiwyg-remote-video .video__wrapper .video__content .add-product-review .view-header h2,
  .add-product-review .view-header .wysiwyg-remote-video .video__wrapper .video__content h2, .wysiwyg-remote-video .video__wrapper .video__content .heading-sub, .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .js-form-item.form-item.form-type-processed-text h4, .webform-submission-form .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
  .wysiwyg-remote-video .video__wrapper .video__content .webform-submission-form .view-header h4,
  .webform-submission-form .view-header .wysiwyg-remote-video .video__wrapper .video__content h4,
  .wysiwyg-remote-video .video__wrapper .video__content .form__layout .js-form-item.form-item.form-type-processed-text h4,
  .form__layout .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
  .wysiwyg-remote-video .video__wrapper .video__content .form__layout .view-header h4,
  .form__layout .view-header .wysiwyg-remote-video .video__wrapper .video__content h4,
  .wysiwyg-remote-video .video__wrapper .video__content .add-product-review .js-form-item.form-item.form-type-processed-text h4,
  .add-product-review .js-form-item.form-item.form-type-processed-text .wysiwyg-remote-video .video__wrapper .video__content h4,
  .wysiwyg-remote-video .video__wrapper .video__content .add-product-review .view-header h4,
  .add-product-review .view-header .wysiwyg-remote-video .video__wrapper .video__content h4, .wysiwyg-remote-video .video__wrapper .video__content .path-cart .page-title, .path-cart .wysiwyg-remote-video .video__wrapper .video__content .page-title, .wysiwyg-remote-video .video__wrapper .video__content .path-add-a-review main .page-title, .path-add-a-review main .wysiwyg-remote-video .video__wrapper .video__content .page-title {
    margin-bottom: 20px;
  }
}
.wysiwyg-remote-video .video__wrapper .video__content .description, .wysiwyg-remote-video .video__wrapper .video__content .view-frequently-asked-questions .view-header .faq-short-text, .view-frequently-asked-questions .view-header .wysiwyg-remote-video .video__wrapper .video__content .faq-short-text {
  color: #FFFFFF;
}
.wysiwyg-remote-video .video__wrapper .video__cover {
  position: relative;
}
.wysiwyg-remote-video .video__wrapper .video__cover.js-hidden {
  opacity: 0;
}
.wysiwyg-remote-video .video__wrapper .video__cover img {
  width: 100%;
  display: block;
  min-height: 350px;
  object-fit: cover;
}
.wysiwyg-remote-video .video__wrapper .video__cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: 0px;
  background: #000000;
  opacity: 0.7;
}
.wysiwyg-remote-video .video__wrapper .video__play {
  transition: all ease 0.3s;
  cursor: pointer;
  background-image: url(../assets/icons/play-icon.svg);
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: center;
  background-size: 27%;
  border: 0;
  display: inline-block;
  font-size: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.wysiwyg-remote-video .video__wrapper .video__play:hover {
  background-color: #9CD1A4;
}
@media screen and (min-width: 700px) {
  .wysiwyg-remote-video .video__wrapper .video__play {
    width: 41px;
    height: 41px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-remote-video .video__wrapper .video__play {
    width: 46px;
    height: 46px;
  }
}
.wysiwyg-remote-video .video__wrapper .video__play {
  font-size: 0;
  width: 42px;
  height: 42px;
  background-position: 16px center;
  background-size: 15px;
  margin-top: 20px;
}
@media screen and (min-width: 700px) {
  .wysiwyg-remote-video .video__wrapper .video__play {
    width: 80px;
    height: 80px;
    background-position: 30px center;
    background-size: 29px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1401px) {
  .wysiwyg-remote-video .video__wrapper .video__play {
    width: 100px;
    height: 100px;
    background-position: 40px center;
  }
}
.wysiwyg-remote-video .video__wrapper .video__embed {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.wysiwyg-remote-video .video__wrapper .video__embed.js-show {
  opacity: 1;
  z-index: 1;
}
.wysiwyg-remote-video .video__wrapper .video__embed:hover .video__close {
  opacity: 1;
}
.wysiwyg-remote-video .video__wrapper .video__embed .video-js,
.wysiwyg-remote-video .video__wrapper .video__embed .video-js .vjs-tech {
  width: 100% !important;
  height: 100% !important;
  position: static;
}
.wysiwyg-remote-video .video__wrapper .video__embed .video__close {
  transition: all ease 0.3s;
  font-size: 0;
  background: #9CD1A4 url(../assets/icons/close.svg) no-repeat center;
  background-size: 22px;
  top: 0;
  border: 0;
  right: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1025px) {
  .wysiwyg-remote-video .video__wrapper .video__embed .video__close {
    width: 70px;
    height: 70px;
    background-size: 30px;
  }
}
.wysiwyg-remote-video .video__wrapper .video__embed .video__close:hover {
  opacity: 1;
  background-color: #9CD1A4;
}
.wysiwyg-remote-video .video__wrapper .video__embed .media-oembed-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1025px) {
  .path-checkout .layout-checkout-form {
    display: flex;
    flex-wrap: wrap;
  }
  .path-checkout .layout-checkout-form .layout-region-checkout-main {
    width: 100%;
    order: 1;
  }
  .path-checkout .layout-checkout-form .layout-region-checkout-secondary {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 14px;
    order: 3;
  }
  .path-checkout .layout-checkout-form .layout-region-checkout-footer {
    width: 100%;
    order: 3;
  }
}
.path-checkout .layout-content {
  background-color: #F1F1F1;
}
.path-checkout .view-commerce-checkout-order-summary table,
.path-checkout .view-commerce-checkout-order-summary tr, .path-checkout .view-commerce-checkout-order-summary td, .path-checkout .view-commerce-checkout-order-summary th {
  border: 0;
  margin-left: 49px;
}
.path-checkout .view-commerce-checkout-order-summary .views-field-purchased-entity > div {
  display: flex;
  flex-flow: row-reverse;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.path-checkout .view-commerce-checkout-order-summary .views-field-purchased-entity > div .field--name-field-product-image img {
  max-width: 70px;
}
.path-checkout .view-commerce-checkout-order-summary .views-field-purchased-entity .field--name-product-id {
  line-height: normal;
  padding-right: 15px;
}
.path-checkout .view-commerce-checkout-order-summary .views-field-purchased-entity .field--name-product-id a {
  color: black;
  font-weight: 400;
  font-size: 15px;
}
.path-checkout .view-commerce-checkout-order-summary .views-field-quantity,
.path-checkout .view-commerce-checkout-order-summary .views-field-total-price__number {
  font-weight: bold;
  font-size: 15px;
}
.path-checkout .view-commerce-checkout-order-summary .view-footer {
  margin-top: 10px;
  margin-top: 20px;
  border-top: solid 1px #ddd;
  padding-top: 15px;
}
@media screen and (min-width: 1025px) {
  .path-checkout .view-commerce-checkout-order-summary .view-footer {
    margin-top: 20px;
  }
}
.path-checkout .page-title {
  font-size: 3rem;
  margin-top: -62px !important;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  padding: 30px 35px 0 35px;
  margin: 0;
  background-color: #F1F1F1;
}
@media screen and (min-width: 1401px) {
  .path-checkout .page-title {
    font-size: 5rem;
  }
}
.path-checkout .page-title {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .path-checkout .page-title {
    padding: 38px 140px 0px 140px;
  }
}
.path-checkout .page-title {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-checkout .page-title {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-checkout .page-title {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
  padding: 10px 35px 40px 35px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
    padding: 30px 35px 50px 35px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow {
  background-color: #F1F1F1;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) {
  background-color: #FFFFFF;
  padding: 20px;
  border: unset;
  border-radius: 15px;
  margin-top: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) {
    padding: 30px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) legend {
  display: contents;
  font-weight: bold;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) legend span {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: capitalize;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) legend span {
    font-size: 25px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .address-book-edit-button {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .address-book-edit-button {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .address-book-edit-button:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .address-book-edit-button {
  margin: 0;
  position: absolute;
  top: 20px;
  right: 20px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .billing_info_completion > * {
  display: flex;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .billing_info_completion > * .billing_info_label {
  min-width: 100px;
  font-weight: bold;
  flex-shrink: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .mt-3 a {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .mt-3 a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .mt-3 a:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .checkout-complete .mt-3 a {
  color: #fff;
  margin-top: 10px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile .field {
  display: flex;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile .field__label {
  width: 150px;
  flex-shrink: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .fieldset-wrapper > *:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #ddd;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .fieldset-wrapper > *:not(:last-child) .js-form-item-shipping-information-shipping-profile-copy-fields-enable {
  color: #9A9A9A;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .fieldset-wrapper > *:not(:last-child) .js-form-item-shipping-information-shipping-profile-copy-fields-enable .form-checkbox {
  scale: 1.4;
  margin-right: 10px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .fieldset-wrapper > *:not(:last-child)#edit-shipping-information-shipping-profile {
  margin: 0;
  padding: 0;
  border: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .fieldset-wrapper .field--name-shipping-method .fieldset-wrapper {
  border: solid 1px #F0666F;
  border-radius: 10px;
  background: rgba(240, 102, 111, 0.1019607843);
  padding: 8px 15px;
  margin-top: 10px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review).checkout-pane-payment-information .js-form-wrapper legend {
  display: none;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review).checkout-pane-payment-information .js-form-wrapper .form-item-payment-information-payment-method {
  display: flex;
  align-items: start;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review).checkout-pane-payment-information .js-form-wrapper .form-item-payment-information-payment-method .form-radio {
  scale: 1.4;
  margin-right: 20px;
  margin-top: 6px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full {
    gap: 40px;
    margin-top: 10px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .owt-phone-email {
  position: relative;
  background-image: url(../assets/icons/location.svg);
  display: inline-block;
  padding-left: 35px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 0px 5px;
  color: #9A9A9A;
  font-weight: 300;
  width: 100%;
  font-size: 16px;
  line-height: 2.5rem;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .owt-phone-email {
    max-width: 50%;
    width: auto;
    font-weight: 400;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .owt-phone-email .field__label {
  display: none;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .owt-phone-email p {
  margin: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane:not(.checkout-pane-review) .profile--view-mode--full .owt-phone-email {
  background-image: url(../assets/icons/user-icon.svg);
  background-size: 20px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * {
  background-color: #FFFFFF;
  padding: 20px !important;
  border: 0 !important;
  border-radius: 15px;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * {
    padding: 30px !important;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * legend {
  display: contents;
  font-size: 25px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * legend a {
  font-weight: 100;
  font-size: 20px;
  vertical-align: middle;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * .field {
  display: flex;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .checkout-pane-review > * .field__label {
  margin-right: 5px;
}
@media screen and (min-height: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .address-container-inline {
    display: flex;
    gap: 20px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .address-container-inline .form-item {
  display: block;
  margin-right: 0;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .address-container-inline .form-item {
    width: calc(50% - 10px);
    display: inline-block;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item.js-form-item-shipping-information-shipping-profile-select-address label {
  font-weight: bold;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item select {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  width: 100%;
  background-image: url(../assets/icons/Arrow_down.svg);
  background-repeat: no-repeat;
  background-position: right 1.9rem center;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item select {
    border-radius: 10px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item .form-text,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item .form-email {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item .form-text,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main .js-form-item .form-email {
    border-radius: 10px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information {
  padding: 0;
  border: 0;
  font-size: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information {
    padding: 30px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information legend,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information legend,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information legend {
  display: contents;
  font-size: 25px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information legend a,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information legend a,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information legend a {
  font-weight: 100;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information legend + *,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information legend + *,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information legend + * {
  margin-top: 15px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-field-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-field-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-field-email {
  display: flex;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-field-email .field__item,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-field-email .field__item,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-field-email .field__item {
  padding-left: 5px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-field-phone-number,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-field-phone-number,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-field-phone-number {
  display: flex;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-field-phone-number .field__item,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-field-phone-number .field__item,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-field-phone-number .field__item {
  padding-left: 5px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default {
    gap: 40px;
    margin-top: 10px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .field--name-address,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .owt-phone-email {
  position: relative;
  background-image: url(../assets/icons/location.svg);
  display: inline-block;
  padding-left: 35px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 0px 8px;
  color: #9A9A9A;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  line-height: 2.5rem;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .owt-phone-email,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .owt-phone-email,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .owt-phone-email,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .owt-phone-email,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .owt-phone-email,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .field--name-address,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .owt-phone-email {
    max-width: 50%;
    width: auto;
    font-weight: 400;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .owt-phone-email .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .owt-phone-email .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .owt-phone-email .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .owt-phone-email .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .owt-phone-email .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .field--name-address .field__label,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .owt-phone-email .field__label {
  display: none;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .owt-phone-email p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .owt-phone-email p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .owt-phone-email p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .owt-phone-email p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .owt-phone-email p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .field--name-address p,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .owt-phone-email p {
  margin: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .profile--view-mode--default .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .profile--view-mode--default .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--full .owt-phone-email,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .profile--view-mode--default .owt-phone-email {
  background-image: url(../assets/icons/user-icon.svg);
  background-size: 20px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-shipping-method,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-shipping-method,
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-shipping-method {
  position: relative;
  background-image: url(../assets/icons/delivery.svg);
  display: inline-block;
  padding-left: 35px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 0px 8px;
  color: #9A9A9A;
  font-weight: 400;
  width: 100%;
  margin-top: 0px;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-payment-information .field--name-shipping-method,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-contact-information .field--name-shipping-method,
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-review-shipping-information .field--name-shipping-method {
    margin-top: 30px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next {
  /*@media screen and (min-width: 1025px) {
      padding: 10px 20px;
      font-size: 14px;
      border-radius: 6px;
  }*/
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next #edit-actions-next {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next + a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next + a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow #edit-actions-next + a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-main, .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-footer {
  padding-right: 1.5rem;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-footer {
  width: 100%;
  padding: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-footer .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-footer .form-actions > * {
  margin: 0;
  min-width: calc(50% - 5px);
  text-align: center;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary {
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 15px;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary {
    margin-top: 18px;
  }
}
@media screen and (min-width: 375px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary {
    margin-top: 14px;
  }
}
@media screen and (min-width: 425px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary {
    margin-top: 14px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary h3 {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  margin-top: 0;
  text-transform: capitalize;
}
@media screen and (min-width: 700px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary h3 {
    font-size: 25px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary .order-total-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
  padding: 0;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary .order-total-line .order-total-line-label {
  padding: 0;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary .order-total-line.order-total-line__adjustment--promotion {
  color: green;
  font-weight: 400;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary #edit-sidebar-coupon-redemption-form-code {
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  width: 100%;
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary #edit-sidebar-coupon-redemption-form-apply {
  width: 100%;
  margin: 0;
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary #edit-sidebar-coupon-redemption-form-apply {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region.layout-region-checkout-secondary #edit-sidebar-coupon-redemption-form-apply:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-checkout .path-checkout .page-title {
  font-size: 5rem;
  text-align: center;
  padding: 38px 0 40px 0px;
  display: block;
  background-color: #f1f1f1;
  margin: 0;
}
.path-checkout .path-cart .region.region-content, .path-checkout .path-cart .region.region-content-top, .path-checkout .path-cart .region.region-content-bottom {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 140px 145px 140px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-checkout .path-cart .region.region-content, .path-checkout .path-cart .region.region-content-top, .path-checkout .path-cart .region.region-content-bottom {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-checkout .path-cart .region.region-content, .path-checkout .path-cart .region.region-content-top, .path-checkout .path-cart .region.region-content-bottom {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-checkout .path-cart .region.region-content, .path-checkout .path-cart .region.region-content-top, .path-checkout .path-cart .region.region-content-bottom {
  background-color: #F1F1F1;
}
.path-checkout .path-cart .region.region-content .page-title, .path-checkout .path-cart .region.region-content-top .page-title, .path-checkout .path-cart .region.region-content-bottom .page-title {
  margin: 0;
  margin-bottom: 40px;
  font-size: 5rem;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
}
.path-checkout .link--previous {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-checkout .link--previous {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .link--previous:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-checkout .button.button--primary {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-checkout .button.button--primary {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-checkout .button.button--primary:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-checkout .button.button--primary {
  padding: 10px 23px;
}
.path-checkout .order-total-line__total .order-total-line-label,
.path-checkout .order-total-line__total .order-total-line-value {
  font-size: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-weight: bold;
}
.path-checkout .order_completion_summary_header {
  display: flex;
  gap: 15px;
  border-bottom: dashed 1px #999999;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .path-checkout .order_completion_summary_header {
    flex-wrap: wrap;
  }
}
.path-checkout .order_completion_summary_header > * {
  padding: 0;
  position: relative;
  width: 33.33%;
}
@media screen and (max-width: 500px) {
  .path-checkout .order_completion_summary_header > * {
    width: 100%;
  }
}
.path-checkout .order_completion_summary_header > *:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 80%;
  background: #cccccc;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  .path-checkout .order_completion_summary_header > *:not(:last-child):after {
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: inherit;
    right: 0;
    transform: none;
    bottom: -5px;
  }
}
.path-checkout .order_completion_summary_header .order_created_heading,
.path-checkout .order_completion_summary_header .order_number_heading,
.path-checkout .order_completion_summary_header .pg_heading {
  font-size: 13px;
  color: #999999;
  line-height: normal;
  margin-bottom: 0;
}
.path-checkout .order_completion_summary_header .order_created_value,
.path-checkout .order_completion_summary_header .order_number_value,
.path-checkout .order_completion_summary_header .pg_value {
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}

.path-customize-your-book .book_cover_title,
.path-customize-your-book .book_cover_format_message {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (min-width: 1401px) {
  .path-customize-your-book .book_cover_title,
  .path-customize-your-book .book_cover_format_message {
    margin-top: 5rem;
  }
}
.path-customize-your-book .book_cover_title {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .book_cover_title {
    margin-top: 40px;
  }
}
.path-customize-your-book .book_cover_title + .book_cover_format_message {
  font-size: 16px;
  font-weight: normal;
  max-width: 600px;
  margin: auto;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: "Sora", sans-serif;
}
.path-customize-your-book .cover_image_card_section {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 20px;
}
.path-customize-your-book .cover_image_card_section .book_cover_card {
  width: 100%;
  padding: 20px;
  border: 15px;
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: solid 2px rgb(241, 241, 241) !important;
  overflow: hidden;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 850px) {
  .path-customize-your-book .cover_image_card_section .book_cover_card {
    width: calc(50% - 10px);
  }
}
.path-customize-your-book .cover_image_card_section .book_cover_card:has(.btn-clicked) {
  border: solid 2px #F0666F !important;
}
.path-customize-your-book .cover_image_card_section .book_cover_image {
  margin: -20px -20px 15px;
}
.path-customize-your-book .cover_image_card_section .book_cover_name {
  font-size: 24px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
}
.path-customize-your-book .cover_image_card_section .book_cover_description {
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 25px;
}
.path-customize-your-book .cover_image_card_section .book_cover_price {
  font-size: 18px;
  font-weight: 500;
  color: #657BBC;
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .cover_image_card_section .book_cover_select_button_div a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a {
  width: 100% !important;
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a.btn-clicked {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .cover_image_card_section .book_cover_select_button_div a.btn-clicked {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a.btn-clicked:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-customize-your-book .cover_image_card_section .book_cover_select_button_div a.btn-clicked {
  background-color: #f0666f !important;
  color: #ffffff !important;
}
.path-customize-your-book .button.js-form-submit.form-submit {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .button.js-form-submit.form-submit {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-customize-your-book .button.js-form-submit.form-submit:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-customize-your-book .button.js-form-submit.form-submit {
  margin: 0;
  margin-right: 15px;
  min-width: auto;
  outline: 0;
}
.path-customize-your-book .button.js-form-submit.form-submit[value=Continue], .path-customize-your-book .button.js-form-submit.form-submit[value="Add to Cart"] {
  float: right;
  margin: 0;
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-customize-your-book .button.js-form-submit.form-submit[value=Continue], .path-customize-your-book .button.js-form-submit.form-submit[value="Add to Cart"] {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-customize-your-book .button.js-form-submit.form-submit[value=Continue]:hover, .path-customize-your-book .button.js-form-submit.form-submit[value="Add to Cart"]:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-customize-your-book .button.js-form-submit.form-submit[value=Continue], .path-customize-your-book .button.js-form-submit.form-submit[value="Add to Cart"] {
  background-color: #f0666f !important;
  color: #ffffff !important;
  z-index: 1;
}

.path-track-shipping .sidebar-exist,
.path-checkout .sidebar-exist {
  padding: 30px 35px 50px 35px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 700px) {
  .path-track-shipping .sidebar-exist,
  .path-checkout .sidebar-exist {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1401px) {
  .path-track-shipping .sidebar-exist,
  .path-checkout .sidebar-exist {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.path-track-shipping .sidebar-exist,
.path-checkout .sidebar-exist {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.path-track-shipping .sidebar-exist .commerce-checkout-flow,
.path-track-shipping .sidebar-exist .layout-content,
.path-track-shipping .sidebar-exist .page-title,
.path-track-shipping .sidebar-exist .layout-region-checkout-main,
.path-track-shipping .sidebar-exist .checkout-pane,
.path-checkout .sidebar-exist .commerce-checkout-flow,
.path-checkout .sidebar-exist .layout-content,
.path-checkout .sidebar-exist .page-title,
.path-checkout .sidebar-exist .layout-region-checkout-main,
.path-checkout .sidebar-exist .checkout-pane {
  background-color: #fff;
  padding: 0 !important;
  width: 100% !important;
}
.path-track-shipping .sidebar-exist #main-content,
.path-checkout .sidebar-exist #main-content {
  display: none;
}
.path-track-shipping .sidebar-exist > .main-content,
.path-checkout .sidebar-exist > .main-content {
  width: 100% !important;
}
@media screen and (min-width: 1025px) {
  .path-track-shipping .sidebar-exist > .main-content,
  .path-checkout .sidebar-exist > .main-content {
    /*width: 60% !important;*/
    padding-right: 2em !important;
  }
}
.path-track-shipping .sidebar-exist > .main-content .page-title,
.path-checkout .sidebar-exist > .main-content .page-title {
  margin-bottom: 20px;
  margin-left: 38px;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right,
.path-checkout .sidebar-exist .layout-sidebar-right {
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 1025px) {
  .path-track-shipping .sidebar-exist .layout-sidebar-right,
  .path-checkout .sidebar-exist .layout-sidebar-right {
    width: 40%;
    margin-top: 0;
  }
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 {
  background-color: #f5f5f5;
  padding: 30px 20px;
  position: relative;
  border-top: solid 15px #eaeaea;
  background-image: url(../assets/images/order-complete-strip.png);
  background-position: 0 bottom;
  background-repeat: repeat-x;
  background-size: 33px;
  padding-bottom: 50px;
}
@media screen and (min-width: 700px) {
  .path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2,
  .path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 {
    padding: 30px;
    padding-bottom: 70px;
  }
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 {
  /* @media screen and (min-width: 375px){
          width: 100%;
          margin-left: -70%;
          margin-top: 820px;
          position: relative;
     }*/
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:before, .path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:after,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:before,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:after {
  content: "";
  background: url(../assets/images/order-complete.png) no-repeat;
  display: block;
  width: 15px;
  height: 38px;
  position: absolute;
  top: -24px;
  left: -15px;
  background-size: 100%;
  transform: rotate(180deg);
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:after,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2:after {
  right: -14px;
  left: inherit;
  top: -15px;
  transform: rotate(0deg);
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 h2,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 h2 {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  margin-top: 0;
  border-bottom: solid 2px #e5e5e5;
  padding-bottom: 15px;
}
@media screen and (min-width: 700px) {
  .path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 h2,
  .path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 h2 {
    font-size: 25px;
  }
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer {
  border-top: solid 2px #e5e5e5;
  margin-top: 0px;
  padding-top: 50px;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line {
  padding: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line .order-total-line-label,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line .order-total-line-label {
  display: inline-block;
  font-weight: 500;
  color: #9a9a9a;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line.order-total-line__total .order-total-line-label,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .view-footer .order-total-line.order-total-line__total .order-total-line-label {
  color: #000000;
  font-weight: 700;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 {
  /*@media screen and (min-width: 375px){
          .main-section {
      display: block !important;
  }  
           }*/
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px 10px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header,
  .path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px 10px;
  }
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:before, .path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:after,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:before,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  left: -15px;
  bottom: -15px;
}
.path-track-shipping .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:after,
.path-checkout .sidebar-exist .layout-sidebar-right .block-views-blockcommerce-checkout-order-summary-block-2 .order_completion_summary_header:after {
  left: inherit;
  right: -15px;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  max-width: 800px;
  position: relative;
}
.progressbar::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f0f0f0;
  z-index: 0;
}
.progressbar::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 3px;
  width: 99%;
  height: 4px;
  background: linear-gradient(90deg, #f0666f 0%, #ff7b83 66%, #f6a6ab 70%, #f7c1c4 100%);
  z-index: 0;
}

.progress-step {
  text-align: center;
  /*  flex: 1;*/
  position: relative;
  z-index: 1;
}
.progress-step .circle {
  width: 53px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: linear-gradient(135deg, #f0666f, #ff7b83);
  color: #fff;
  border: none;
}
.progress-step.completed .circle {
  background: linear-gradient(135deg, #f0666f, #ff7b83);
  box-shadow: 0 0 10px rgba(240, 102, 111, 0.6);
  opacity: 1;
}
.progress-step.completed .step-label {
  color: #333;
  font-weight: 600;
}
.progress-step.pending .circle {
  background: linear-gradient(135deg, #f6a6ab, #f7c1c4);
  opacity: 12.6;
}
.progress-step.pending .step-label {
  color: #888;
  font-weight: 500;
}
.progress-step .fa {
  padding-left: 6px;
}

.step-label {
  margin-top: 10px;
  font-size: 14px;
}

.checkout-complete > p {
  max-width: 700px;
}
.checkout-complete .billing_heading h3 {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: capitalize;
}
@media screen and (min-width: 700px) {
  .checkout-complete .billing_heading h3 {
    font-size: 25px;
  }
}
.checkout-complete .billing_info_completion > * {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #000;
}
.checkout-complete .billing_info_completion > * .billing_info_label {
  min-width: 90px;
}
.checkout-complete .billing_info_completion > * .billing_info_value {
  color: #9A9A9A;
}

.path-checkout #block-one-world-donationblock .field--type-text-with-summary.field--label-hidden.field__item {
  background: #FFF0B9;
  padding: 20px;
  text-align: center;
  font-weight: 400;
  border-radius: 15px;
  max-width: 500px;
  margin-left: 35px;
  line-height: normal;
}

.layout-checkout-form {
  margin-left: 38px;
}

.order_created {
  margin-left: 65px;
}

@media screen and (max-width: 600px) {
  .main-section {
    display: block !important;
  }
  .layout-checkout-form {
    margin-left: 0px !important;
  }
}
/*   @media screen and (min-width:370px) {
  .form-actions {
        display: flex;
       /*flex-wrap: wrap; 
        gap: 10px;
        justify-content: space-between;
  }
}
  }*/
@media screen and (min-width: 1280px) {
  .path-checkout .commerce-checkout-flow-multistep-default.commerce-checkout-flow .layout-region-checkout-footer.form-actions {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 10px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  #edit-actions-next {
    padding: 10px 20px !important;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-product .testimonial,
.path-product .testimonial__testimonial_section--userdata,
.path-product .testimonial__testimonial_section--userdata:before {
  background-color: #FFFFFF;
}
.path-product .delivery {
  background-color: #CCE8D2;
}

.webform-submission-form {
  margin: 0 -10px;
}

.webform-submission-form,
.form__layout,
.add-product-review {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
}
.webform-submission-form [data-drupal-messages],
.form__layout [data-drupal-messages],
.add-product-review [data-drupal-messages] {
  width: 100%;
}
.webform-submission-form .contact__header,
.form__layout .contact__header,
.add-product-review .contact__header {
  text-align: center;
  margin-bottom: 50px;
}
.webform-submission-form .form-text,
.webform-submission-form .form-email,
.webform-submission-form .form-control,
.webform-submission-form .form-number,
.form__layout .form-text,
.form__layout .form-email,
.form__layout .form-control,
.form__layout .form-number,
.add-product-review .form-text,
.add-product-review .form-email,
.add-product-review .form-control,
.add-product-review .form-number {
  border: 1px solid #9A9A9A;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
}
.webform-submission-form textarea,
.form__layout textarea,
.add-product-review textarea {
  border: 1px solid #9A9A9A;
  border-radius: 8px;
  padding: 15px;
}
.webform-submission-form .form--inline,
.form__layout .form--inline,
.add-product-review .form--inline {
  margin: 0 -10px;
}
.webform-submission-form .js-form-item.form-item:not(.form-type-textarea),
.webform-submission-form .js-form-item.form-item:not(.form-type-processed-text),
.form__layout .js-form-item.form-item:not(.form-type-textarea),
.form__layout .js-form-item.form-item:not(.form-type-processed-text),
.add-product-review .js-form-item.form-item:not(.form-type-textarea),
.add-product-review .js-form-item.form-item:not(.form-type-processed-text) {
  width: 50%;
  padding: 0 10px;
  position: relative;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1025px) {
  .webform-submission-form .js-form-item.form-item:not(.form-type-textarea),
  .webform-submission-form .js-form-item.form-item:not(.form-type-processed-text),
  .form__layout .js-form-item.form-item:not(.form-type-textarea),
  .form__layout .js-form-item.form-item:not(.form-type-processed-text),
  .add-product-review .js-form-item.form-item:not(.form-type-textarea),
  .add-product-review .js-form-item.form-item:not(.form-type-processed-text) {
    width: 100%;
  }
}
.webform-submission-form .js-form-item.form-item.form-type-processed-text,
.webform-submission-form .js-form-item.form-item.form-type-textarea,
.webform-submission-form .view-header,
.webform-submission-form .form-actions,
.form__layout .js-form-item.form-item.form-type-processed-text,
.form__layout .js-form-item.form-item.form-type-textarea,
.form__layout .view-header,
.form__layout .form-actions,
.add-product-review .js-form-item.form-item.form-type-processed-text,
.add-product-review .js-form-item.form-item.form-type-textarea,
.add-product-review .view-header,
.add-product-review .form-actions {
  width: 100%;
  padding: 0 10px;
}
.webform-submission-form .form-actions,
.form__layout .form-actions,
.add-product-review .form-actions {
  margin: 0;
}
.webform-submission-form .js-form-item.form-item.form-type-processed-text,
.webform-submission-form .view-header,
.form__layout .js-form-item.form-item.form-type-processed-text,
.form__layout .view-header,
.add-product-review .js-form-item.form-item.form-type-processed-text,
.add-product-review .view-header {
  text-align: center;
}
.webform-submission-form .js-form-item.form-item.form-type-processed-text h2,
.webform-submission-form .view-header h2,
.form__layout .js-form-item.form-item.form-type-processed-text h2,
.form__layout .view-header h2,
.add-product-review .js-form-item.form-item.form-type-processed-text h2,
.add-product-review .view-header h2 {
  margin: 0;
}
.webform-submission-form .js-form-item.form-item.form-type-processed-text h4,
.webform-submission-form .view-header h4,
.form__layout .js-form-item.form-item.form-type-processed-text h4,
.form__layout .view-header h4,
.add-product-review .js-form-item.form-item.form-type-processed-text h4,
.add-product-review .view-header h4 {
  margin-top: 5px;
  font-size: 30px;
}
.webform-submission-form input[type=radio],
.webform-submission-form input[type=checkbox],
.form__layout input[type=radio],
.form__layout input[type=checkbox],
.add-product-review input[type=radio],
.add-product-review input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  appearance: none;
}
.webform-submission-form input[type=radio] + label,
.webform-submission-form input[type=checkbox] + label,
.form__layout input[type=radio] + label,
.form__layout input[type=checkbox] + label,
.add-product-review input[type=radio] + label,
.add-product-review input[type=checkbox] + label {
  padding-left: 3rem;
  position: relative;
  display: inline-block;
}
.webform-submission-form input[type=radio] + label:before,
.webform-submission-form input[type=checkbox] + label:before,
.form__layout input[type=radio] + label:before,
.form__layout input[type=checkbox] + label:before,
.add-product-review input[type=radio] + label:before,
.add-product-review input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  height: 2rem;
  width: 2rem;
  background: none;
  border: solid 0.1rem #F0666F;
  transition: all ease 0.3s;
}
.webform-submission-form input[type=radio]:checked + label:before,
.webform-submission-form input[type=checkbox]:checked + label:before,
.form__layout input[type=radio]:checked + label:before,
.form__layout input[type=checkbox]:checked + label:before,
.add-product-review input[type=radio]:checked + label:before,
.add-product-review input[type=checkbox]:checked + label:before {
  background-color: #F0666F;
  border-color: #F0666F;
}
.webform-submission-form input[type=radio]:checked + label:after,
.webform-submission-form input[type=checkbox]:checked + label:after,
.form__layout input[type=radio]:checked + label:after,
.form__layout input[type=checkbox]:checked + label:after,
.add-product-review input[type=radio]:checked + label:after,
.add-product-review input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.webform-submission-form input[type=radio] + label:after,
.form__layout input[type=radio] + label:after,
.add-product-review input[type=radio] + label:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: #fff;
  border-radius: 50%;
  left: 6px;
  top: 10px;
  opacity: 0;
  transition: all ease 0.3s;
}
.webform-submission-form input[type=radio] + label:before,
.form__layout input[type=radio] + label:before,
.add-product-review input[type=radio] + label:before {
  border-radius: 50%;
}
.webform-submission-form input[type=checkbox] + label:after,
.form__layout input[type=checkbox] + label:after,
.add-product-review input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1rem;
  background: url(../assets/icons/checkbox-check.svg) no-repeat;
  border-radius: 50%;
  left: 0.3rem;
  top: 0.9rem;
  opacity: 0;
  transition: all ease 0.3s;
}
.webform-submission-form .form-submit,
.form__layout .form-submit,
.add-product-review .form-submit {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .webform-submission-form .form-submit,
  .form__layout .form-submit,
  .add-product-review .form-submit {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.webform-submission-form .form-submit:hover,
.form__layout .form-submit:hover,
.add-product-review .form-submit:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.webform-submission-form .form-submit,
.form__layout .form-submit,
.add-product-review .form-submit {
  width: 100%;
  margin-top: 10px;
}

.add-product-review {
  padding: 0;
  margin: 0 -10px;
  display: block;
}
.add-product-review .form-item {
  width: 100% !important;
}
.add-product-review .form-item label {
  font-weight: bold;
}
.add-product-review .form-composite {
  width: 100% !important;
}
.add-product-review .form-composite legend {
  font-weight: bold;
}
.add-product-review .form-composite .form-item {
  margin-bottom: 6px !important;
  padding: 0 !important;
}
.add-product-review .form-composite .form-item:last-child {
  margin-bottom: 0 !important;
}
.add-product-review .form-composite .form-item label {
  font-weight: normal;
}
.add-product-review .captcha-type-challenge--image {
  width: calc(100% - 20px);
  border: solid 1px #9A9A9A;
  border-radius: 8px;
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-top: 30px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .add-product-review .captcha-type-challenge--image {
    margin-top: 40px;
  }
}
.add-product-review .captcha-type-challenge--image legend {
  display: contents;
  font-weight: bold;
}
.add-product-review .captcha-type-challenge--image .captcha__element {
  display: block;
}
.add-product-review .captcha-type-challenge--image .captcha__element .captcha__image-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px;
  align-items: center;
}
.add-product-review .form-submit {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .add-product-review .form-submit {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.add-product-review .form-submit:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.add-product-review .form-submit {
  width: auto !important;
  display: block !important;
}
.add-product-review .js-form-type-textarea {
  width: 100% !important;
}
.add-product-review .js-form-item-product-rating {
  display: flex;
}
.add-product-review .js-form-item-product-rating [data-star-rating] {
  align-items: start;
  width: auto;
  margin: unset;
}

.block-views-blockfrequently-asked-questions-block-1 {
  background: #F1F1F1;
  padding: 60px 0;
}

.view-frequently-asked-questions .view-header {
  max-width: 1000px;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.view-frequently-asked-questions .view-header .faq-short-text {
  margin-top: 2rem;
}
.view-frequently-asked-questions .view-content .views-row .views-row {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 10px;
}
.view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header {
  color: #000000;
  border: 0;
  padding: 15px 20px;
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  position: relative;
  padding-right: 50px;
}
@media screen and (min-width: 700px) {
  .view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header {
    padding: 25px 20px;
    font-size: 1.8rem;
  }
}
.view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header * {
  color: #000000;
  font-weight: 500;
}
.view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header .ui-accordion-header-icon {
  display: none;
}
.view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header::after {
  content: "";
  background: url(../assets/icons/plus_icon_black.svg) no-repeat;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  right: 20px;
  top: 18px;
  background-size: 100%;
}
@media screen and (min-width: 700px) {
  .view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header::after {
    width: 20px;
    height: 20px;
    top: 26px;
  }
}
.view-frequently-asked-questions .view-content .views-row .views-row .views-accordion-header.ui-state-active:after {
  background-image: url(../assets/icons/minus_icon_black.svg);
  top: 35px;
}
.view-frequently-asked-questions .view-content .views-row .views-row .ui-accordion-content {
  color: #000000;
  border: 0;
  padding: 0 20px 25px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .view-frequently-asked-questions .view-content .views-row .views-row .ui-accordion-content {
    font-size: 1.6rem;
  }
}
.view-frequently-asked-questions .view-content .views-row .views-row:first-child .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:first-child .ui-accordion-content, .view-frequently-asked-questions .view-content .views-row .views-row:nth-child(5n) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(5n) .ui-accordion-content {
  background-color: #FFF0B9;
}
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(2) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(2) .ui-accordion-content, .view-frequently-asked-questions .view-content .views-row .views-row:nth-child(6n) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(6n) .ui-accordion-content {
  background-color: #f7b2b7;
}
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(3) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(3) .ui-accordion-content, .view-frequently-asked-questions .view-content .views-row .views-row:nth-child(7n) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(7n) .ui-accordion-content {
  background-color: #cce8d2;
}
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(4) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(4) .ui-accordion-content, .view-frequently-asked-questions .view-content .views-row .views-row:nth-child(8n) .views-accordion-header,
.view-frequently-asked-questions .view-content .views-row .views-row:nth-child(8n) .ui-accordion-content {
  background-color: #b2bdde;
}

@media (min-width: 1024px) {
  form#add-product-review {
    padding: 0px 157px;
  }
}
.path-user-profile .orders-link {
  margin-top: 20px;
}
.path-user-profile .orders-link a,
.path-user-profile .address-book__add-link {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-user-profile .orders-link a,
  .path-user-profile .address-book__add-link {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-user-profile .orders-link a:hover,
.path-user-profile .address-book__add-link:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-user-profile .orders-link a,
.path-user-profile .address-book__add-link {
  margin: 0;
}
.path-user-profile .order-text {
  margin-bottom: 20px;
}
.path-user-profile .address-book__profiles {
  margin-top: 20px;
}
.path-user-profile .address-book__profiles .address-book__profile {
  width: 100%;
  margin: 0;
  flex: auto;
}
.path-user-profile .address-book__profiles .address-book__profile:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: solid 1px #DCDCDC;
  margin-bottom: 30px;
}
.path-user-profile .address-book__profiles .address-book__profile .field {
  display: flex;
}
.path-user-profile .address-book__profiles .address-book__profile .field .field__label {
  min-width: 150px;
  flex-shrink: 0;
}
.path-user-profile .address-book__profiles .address-book__profile .address-book__operations a {
  display: inline-block;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  border: 1px solid #F0666F;
  line-height: 22px;
  text-decoration: none;
  color: #F0666F;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  transition: all ease 0.3s;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .path-user-profile .address-book__profiles .address-book__profile .address-book__operations a {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-user-profile .address-book__profiles .address-book__profile .address-book__operations a:hover {
  background-color: #F0666F;
  border-color: #F0666F;
  color: #FFFFFF;
}
.path-user-profile .address-book__profiles .address-book__profile .address-book__operations a.address-book__delete-link {
  display: inline-block;
  position: relative;
  color: #F1F1F1;
  font-size: 14px;
  font-family: "Sora", sans-serif;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 400;
  line-height: 22px;
  background-color: #F0666F;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #F0666F;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .path-user-profile .address-book__profiles .address-book__profile .address-book__operations a.address-book__delete-link {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.path-user-profile .address-book__profiles .address-book__profile .address-book__operations a.address-book__delete-link:hover {
  background-color: transparent;
  border-color: #F0666F;
  color: #F0666F;
}
.path-user-profile .address-container-inline {
  display: flex;
  gap: 20px;
}
.path-user-profile .field--type-text-with-summary.field--label-hidden.field__item {
  padding: 30px !important;
  border-radius: 8px;
  margin-top: 50px !important;
  background: #F1F1F1;
  max-width: 500px;
  margin-left: 0;
}
.path-user-profile .field--type-text-with-summary.field--label-hidden.field__item p {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 2.5rem;
}
.path-user-profile .field--type-text-with-summary.field--label-hidden.field__item p a {
  width: 100% !important;
  text-align: center !important;
}
.path-user-profile .field--type-text-with-summary.field--label-hidden.field__item p + p {
  margin-top: 10px;
}
.path-user-profile .field--type-text-with-summary.field--label-hidden.field__item h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.path-user-profile .address-container-inline > .form-item {
  width: 50%;
  margin-right: 0;
}
.path-user-profile .orders-heading h3 {
  font-size: 20px;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  color: #000000;
  text-transform: capitalize;
}
@media screen and (min-width: 700px) {
  .path-user-profile .orders-heading h3 {
    font-size: 25px;
  }
}
.path-user-profile .order-text {
  text-align: center;
  background-color: #f1f1f1;
  padding: 50px 20px;
  border-radius: 8px;
}
.path-user-profile .order-text .order-text-heading {
  font-weight: 600;
  font-size: 18px;
}
.path-user-profile .order-text .order-text-subheading {
  max-width: 650px;
  margin: auto;
  margin-top: 10px;
  line-height: normal;
}
.path-user-profile .main__site--content {
  display: flex;
  flex-wrap: wrap;
}
.path-user-profile .main__site--content main {
  padding: 0 0 40px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .path-user-profile .main__site--content main {
    padding: 50px;
    padding-right: 0;
    width: calc(100% - 250px);
  }
}
.path-user-profile .hello-message {
  background: url(../assets/icons/user-welcome.svg) no-repeat;
  font-family: "Rowdies", sans-serif;
  font-size: 22px;
  line-height: normal;
  padding: 30px 20px;
  background-size: 100%;
  background-position: bottom;
  text-align: center;
  max-width: 700px;
  margin: auto;
}
@media screen and (min-width: 700px) {
  .path-user-profile .hello-message {
    padding: 80px 20px;
    font-size: 30px;
    margin-top: -70px;
  }
}
@media screen and (max-width: 699px) {
  .path-user-profile .hello-message {
    background-size: 520px;
    margin-top: -40px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 40px;
    font-size: 28px;
    padding: 60px 20px 50px;
  }
}
.path-user-profile .hello-message::before {
  content: "";
  background: url(../assets/images/logo-black.svg) no-repeat;
  width: 90px;
  height: 60px;
  display: inline-block;
  background-size: 100%;
  margin-bottom: -10px;
}
@media screen and (min-width: 700px) {
  .path-user-profile .hello-message::before {
    width: 140px;
    height: 90px;
    margin-bottom: 0;
  }
}
.path-user-profile .hello-message .hello-message-user {
  color: #F0666F;
  text-transform: capitalize;
}
.path-user-profile .user__profile--menus {
  max-width: 100%;
  padding: 20px 0;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 700px) {
  .path-user-profile .user__profile--menus {
    max-width: 250px;
    padding: 50px 0;
    border-right: solid 1px #ddd;
  }
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus {
    max-width: unset;
    padding: 20px 20px 0;
    width: calc(100% + 40px);
    background: #fff;
    margin: 0 -20px;
    position: relative;
    z-index: 1;
  }
}
.path-user-profile .user__profile--menus ul.tabs {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus ul.tabs {
    overflow: auto;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 0;
  }
}
.path-user-profile .user__profile--menus ul.tabs li {
  display: block;
  margin: 10px 0;
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus ul.tabs li {
    flex-shrink: 0;
  }
}
.path-user-profile .user__profile--menus ul.tabs li a {
  color: #9A9A9A;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 5px 0;
  background-color: inherit !important;
  border-right: solid 4px transparent;
  transition: all ease 0.3s;
  padding-left: 30px;
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus ul.tabs li a {
    border: 0;
    border-bottom: solid 4px transparent;
  }
}
.path-user-profile .user__profile--menus ul.tabs li a:hover,
.path-user-profile .user__profile--menus ul.tabs li a .is-active {
  border-right: solid 4px #f0666f;
  color: #000;
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus ul.tabs li a:hover,
  .path-user-profile .user__profile--menus ul.tabs li a .is-active {
    border: 0;
    border-bottom: solid 4px #f0666f;
  }
}
.path-user-profile .user__profile--menus ul.tabs li.is-active a {
  border-right: solid 4px #f0666f;
  color: #000;
}
@media screen and (max-width: 699px) {
  .path-user-profile .user__profile--menus ul.tabs li.is-active a {
    border: 0;
    border-bottom: solid 4px #f0666f;
  }
}
.path-user-profile .user__profile--menus ul.tabs li.home a {
  background-image: url(../assets/icons/home.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.home.is-active a,
.path-user-profile .user__profile--menus ul.tabs li.home a:hover {
  background-image: url(../assets/icons/home-black.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.accounts a {
  background-image: url(../assets/icons/user-account.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.accounts.is-active a,
.path-user-profile .user__profile--menus ul.tabs li.accounts a:hover {
  background-image: url(../assets/icons/user-account-black.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.orders a {
  background-image: url(../assets/icons/orders.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.orders.is-active a,
.path-user-profile .user__profile--menus ul.tabs li.orders a:hover {
  background-image: url(../assets/icons/orders-black.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.logout a {
  background-image: url(../assets/icons/logout.svg);
}
.path-user-profile .user__profile--menus ul.tabs li.logout.is-active a,
.path-user-profile .user__profile--menus ul.tabs li.logout a:hover {
  background-image: url(../assets/icons/logout-black.svg);
}
.path-user-profile .view-id-user_orders {
  background: #F1F1F1;
  padding: 30px;
  border-radius: 8px;
}
.path-user-profile .view-id-user_orders .view-content {
  overflow: auto;
}
.path-user-profile .view-id-user_orders table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  min-width: 700px;
}
.path-user-profile .view-id-user_orders table td, .path-user-profile .view-id-user_orders table th {
  padding: 5px 10px;
  background: #fff;
  border-radius: 0;
  border-bottom: solid 10px #f1f1f1;
  font-size: 14px;
  color: black;
}

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