<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8"; /*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #5c068c;
  --secondary: #bcabcd;
  --success: #85c645;
  --info: #ded5e6;
  --warning: #fedd00;
  --danger: #b33735;
  --light: #ededee;
  --dark: #333;
  --accent: #fedd00;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1500px;
  --font-family-sans-serif: "Gilroy", "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.animate__animated {
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  20%,
  53%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  20%,
  53%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
@keyframes pulse {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
}
@keyframes rubberBand {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
@keyframes tada {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}
@keyframes wobble {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  11.1%,
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  11.1%,
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0%,
  28%,
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14%,
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes heartBeat {
  0%,
  28%,
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14%,
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
.animate__bounceOut,
.animate__flipOutX {
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
}
@-webkit-keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
.animate__flipInY,
.animate__flipOutX {
  -webkit-backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.flatpickr-calendar {
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.88px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.inline,
.flatpickr-calendar.open {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 1)
  .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 2)
  .flatpickr-day.inRange:nth-child(7n + 1) {
  -webkit-box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
  box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasTime .dayContainer,
.flatpickr-calendar .hasWeeks .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:after,
.flatpickr-calendar:before {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.clearfix::after,
.embed-responsive::before,
.flatpickr-time:after,
.numInputWrapper span:after,
.stretched-link::after,
.typography .oembed::before {
  content: "";
}
.flatpickr-calendar.arrowRight:after,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.rightMost:before {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:after,
.flatpickr-calendar.arrowCenter:before {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:after,
.flatpickr-calendar.arrowBottom:before {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months,
.flatpickr-weekdays {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}
.flatpickr-months {
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: 0 0;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-next-month.flatpickr-disabled,
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-next-month i,
.flatpickr-months .flatpickr-prev-month i {
  position: relative;
}
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-next-month.flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-next-month:hover,
.flatpickr-months .flatpickr-prev-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-next-month svg,
.flatpickr-months .flatpickr-prev-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-next-month svg path,
.flatpickr-months .flatpickr-prev-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-inner-spin-button,
.numInputWrapper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.flatpickr-current-month span.cur-month:hover,
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper span:after {
  display: block;
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\9;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year,
.flatpickr-time input {
  border: 0;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
.flatpickr-current-month input.cur-year {
  background: 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border-radius: 0;
  vertical-align: initial;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: 0 0;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: 0 0;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0;
  outline: 0;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:active,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
  outline: 0;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: 0;
  padding: 0;
}
.flatpickr-weekdays {
  background: 0 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: 0 0;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.align-left,
.dayContainer,
.dropdown-menu,
body,
caption {
  text-align: left;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.88px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  width: 307.88px;
  min-width: 307.88px;
  max-width: 307.88px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: 0 0;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.today.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:focus,
.flatpickr-day.today:hover {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.endRange.startRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.endRange.endRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.endRange.startRange.endRange,
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
  box-shadow:
    -5px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.nextMonthDay,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.prevMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: 0 0;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 #569ff7,
    5px 0 0 #569ff7;
  box-shadow:
    -5px 0 0 #569ff7,
    5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: 0 0;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.fa,
.fa-stack,
.flatpickr-rContainer {
  display: inline-block;
}
.flatpickr-rContainer {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  appearance: textfield;
}
.fa.fa-pull-left,
.fa.pull-left {
  margin-right: 0.3em;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: 700;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time .flatpickr-time-separator {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: 700;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time .flatpickr-am-pm:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time input:hover {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
} /*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: FontAwesome;
  src: url(../../fonts/font-awesome/fontawesome-webfont.eot?v=4.7.0);
  src:
    url(../../fonts/font-awesome/fontawesome-webfont.eot?#iefix&amp;v=4.7.0)
      format("embedded-opentype"),
    url(../../fonts/font-awesome/fontawesome-webfont.woff2?v=4.7.0)
      format("woff2"),
    url(../../fonts/font-awesome/fontawesome-webfont.woff?v=4.7.0)
      format("woff"),
    url(../../fonts/font-awesome/fontawesome-webfont.ttf?v=4.7.0)
      format("truetype"),
    url(../../fonts/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular)
      format("svg");
  font-weight: 400;
  font-style: normal;
}
.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.btn,
.fa-stack,
.navbar-toggler-icon,
.typography a.button,
img,
svg {
  vertical-align: middle;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa.fa-pull-right,
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-ul &gt; li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: 0.08em solid #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.close,
.fa-pull-right,
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  position: relative;
  width: 2em;
  height: 2em;
  line-height: 2em;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-close:before,
.fa-remove:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-cog:before,
.fa-gear:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-repeat:before,
.fa-rotate-right:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-exclamation-triangle:before,
.fa-warning:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-cogs:before,
.fa-gears:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-floppy-o:before,
.fa-save:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-sort:before,
.fa-unsorted:before {
  content: "\f0dc";
}
.fa-sort-desc:before,
.fa-sort-down:before {
  content: "\f0dd";
}
.fa-sort-asc:before,
.fa-sort-up:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-gavel:before,
.fa-legal:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-bolt:before,
.fa-flash:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-clipboard:before,
.fa-paste:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-chain-broken:before,
.fa-unlink:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-caret-square-o-down:before,
.fa-toggle-down:before {
  content: "\f150";
}
.fa-caret-square-o-up:before,
.fa-toggle-up:before {
  content: "\f151";
}
.fa-caret-square-o-right:before,
.fa-toggle-right:before {
  content: "\f152";
}
.fa-eur:before,
.fa-euro:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-inr:before,
.fa-rupee:before {
  content: "\f156";
}
.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
  content: "\f157";
}
.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
  content: "\f158";
}
.fa-krw:before,
.fa-won:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-caret-square-o-left:before,
.fa-toggle-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-try:before,
.fa-turkish-lira:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-bank:before,
.fa-institution:before,
.fa-university:before {
  content: "\f19c";
}
.fa-graduation-cap:before,
.fa-mortar-board:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
  content: "\f1c5";
}
.fa-file-archive-o:before,
.fa-file-zip-o:before {
  content: "\f1c6";
}
.fa-file-audio-o:before,
.fa-file-sound-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
  content: "\f1d0";
}
.fa-empire:before,
.fa-ge:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-paper-plane:before,
.fa-send:before {
  content: "\f1d8";
}
.fa-paper-plane-o:before,
.fa-send-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-futbol-o:before,
.fa-soccer-ball-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-bed:before,
.fa-hotel:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-y-combinator:before,
.fa-yc:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-television:before,
.fa-tv:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
  content: "\f2a3";
}
.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-sign-language:before,
.fa-signing:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-address-card:before,
.fa-vcard:before {
  content: "\f2bb";
}
.fa-address-card-o:before,
.fa-vcard-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  margin: 0;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
body.product-template-default .woocommerce-breadcrumb {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
} /*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@media (min-width: 576px) {
  .container,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .container,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .container,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .container,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 1440px;
  }
}
@media (min-width: 576px) {
  .container,
  .container-sm,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl,
  body.product-template-default .woocommerce-breadcrumb {
    max-width: 1440px;
  }
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper,
.row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters &gt; .col,
.no-gutters &gt; [class*="col-"],
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  &gt; .col,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  &gt; [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto,
.col-xxl,
.col-xxl-1,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-auto,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}
.row-cols-1 &gt; * {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 &gt; * {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 &gt; * {
  -webkit-flex: 0 0 33.3333333333%;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.row-cols-4 &gt; * {
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 &gt; * {
  -webkit-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 &gt; * {
  -webkit-flex: 0 0 16.6666666667%;
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-auto {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  -webkit-flex: 0 0 8.3333333333%;
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.col-2 {
  -webkit-flex: 0 0 16.6666666667%;
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-3 {
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -webkit-flex: 0 0 33.3333333333%;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.col-5 {
  -webkit-flex: 0 0 41.6666666667%;
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.col-6,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -webkit-flex: 0 0 58.3333333333%;
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.col-8 {
  -webkit-flex: 0 0 66.6666666667%;
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.col-9 {
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -webkit-flex: 0 0 83.3333333333%;
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.col-11 {
  -webkit-flex: 0 0 91.6666666667%;
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.col-12 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12;
}
.offset-1 {
  margin-left: 8.3333333333%;
}
.offset-2 {
  margin-left: 16.6666666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.3333333333%;
}
.offset-5 {
  margin-left: 41.6666666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.3333333333%;
}
.offset-8 {
  margin-left: 66.6666666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.3333333333%;
}
.offset-11 {
  margin-left: 91.6666666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-sm-1 &gt; * {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 &gt; * {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 &gt; * {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 &gt; * {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 &gt; * {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 &gt; * {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-md-1 &gt; * {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 &gt; * {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 &gt; * {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 &gt; * {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 &gt; * {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 &gt; * {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4,
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-lg-1 &gt; * {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 &gt; * {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 &gt; * {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 &gt; * {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 &gt; * {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 &gt; * {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2,
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-xl-1 &gt; * {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 &gt; * {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 &gt; * {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 &gt; * {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 &gt; * {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 &gt; * {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2,
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }
  .row-cols-xxl-1 &gt; * {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 &gt; * {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 &gt; * {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxl-4 &gt; * {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 &gt; * {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 &gt; * {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.mw-100,
body.product-template-default .content-area {
  max-width: 100% !important;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
progress,
sub,
sup {
  vertical-align: baseline;
}
.bg-primary {
  background-color: #5c068c !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #3c045b !important;
}
.bg-secondary {
  background-color: #bcabcd !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #a38bba !important;
}
.bg-success {
  background-color: #85c645 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #6ca533 !important;
}
.bg-info {
  background-color: #ded5e6 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #c5b5d3 !important;
}
.bg-warning {
  background-color: #fedd00 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #cbb100 !important;
}
.bg-danger {
  background-color: #b33735 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #8c2b29 !important;
}
.bg-light {
  background-color: #ededee !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #d3d3d5 !important;
}
.bg-dark {
  background-color: #333 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1a1a1a !important;
}
.bg-accent,
.woocommerce .btn-accent {
  background-color: #fedd00 !important;
}
a.bg-accent:focus,
a.bg-accent:hover,
button.bg-accent:focus,
button.bg-accent:hover {
  background-color: #cbb100 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #5c068c !important;
}
.border-secondary {
  border-color: #bcabcd !important;
}
.border-success {
  border-color: #85c645 !important;
}
.border-info {
  border-color: #ded5e6 !important;
}
.border-warning {
  border-color: #fedd00 !important;
}
.border-danger {
  border-color: #b33735 !important;
}
.border-light {
  border-color: #ededee !important;
}
.border-dark {
  border-color: #333 !important;
}
.border-accent {
  border-color: #fedd00 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded-sm {
  border-radius: 0.2rem !important;
}
.rounded-right,
.rounded-top {
  border-top-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-right {
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-left,
.rounded-top {
  border-top-left-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-left {
  border-bottom-left-radius: 0.25rem !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-lg {
  border-radius: 0.3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
}
.block_product-categories__wrapper_desktop,
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.block_product-categories__wrapper_mobile,
.d-block,
footer.checkout-footer {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !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: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !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: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1024px) {
  .block_product-categories__wrapper_mobile,
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .block_product-categories__wrapper_desktop,
  .d-lg-flex {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !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: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1500px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !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: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !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: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive,
.typography .oembed {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before,
.typography .oembed::before {
  display: block;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video,
.typography .oembed .embed-responsive-item,
.typography .oembed embed,
.typography .oembed iframe,
.typography .oembed object,
.typography .oembed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
.embed-responsive-16by9::before,
.typography .oembed::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.flex-row {
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  -webkit-flex: 1 1 auto !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  -webkit-flex-grow: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-grow-1 {
  -webkit-flex-grow: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.justify-content-start {
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-start {
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -webkit-align-items: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -webkit-align-content: space-between !important;
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -webkit-align-content: space-around !important;
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -webkit-align-content: stretch !important;
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -webkit-align-self: auto !important;
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -webkit-align-self: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -webkit-align-self: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -webkit-align-self: baseline !important;
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -webkit-align-self: stretch !important;
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1024px) {
  .flex-lg-row {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1024px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1280px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}
.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bundle_form.bundle_sells_form,
.pt-0,
.py-0,
.section-checkout .woocommerce {
  padding-top: 0 !important;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.vw-100 {
  width: 100vw !important;
}
.vh-100 {
  height: 100vh !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  h3,
.mb-2,
.my-2,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  h3 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3,
.woocommerce-tabs .product--accordion-features p,
.woocommerce-tabs p {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5,
footer.checkout-footer {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5,
footer.checkout-footer {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pr-0,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2,
.tooltip {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.module__text-slider-block .module__text-slider--wrapper--slide-copy,
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3,
.sitehq-image-content-block
  .image-content__image-overlay
  .image-content__image-overlay__small,
.woocommerce-address-summary td,
.woocommerce-address-summary th {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.checkout-header,
.pt-4,
.py-4,
footer.checkout-footer {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.checkout-header,
.pb-4,
.py-4,
footer.checkout-footer {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5,
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-inner
  .sitehq-full-width-image-content-block-row {
  padding-top: 3rem !important;
}
.pr-5,
.px-5,
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-image-content {
  padding-right: 3rem !important;
}
.pb-5,
.py-5,
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-inner
  .sitehq-full-width-image-content-block-row {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5,
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-image-content {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.account-popup-content a.account-popup-link,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  h3,
.mr-auto,
.mx-auto,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  h3 {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.account-popup-content a.account-popup-link,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  h3,
.ml-auto,
.mx-auto,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  h3 {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0,
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .sitehq-image-content-block-image-content {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0,
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .sitehq-image-content-block-image-content {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4,
  div.woocommerce-thankyou-order-received {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5,
  div.woocommerce-thankyou-order-received {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1500px) {
  .flex-xxl-row {
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
dd,
h1,
h2,
h3,
h4,
h5,
h6,
label {
  margin-bottom: 0.5rem;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0);
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace !important;
}
.text-justify {
  text-align: justify !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.sitehq-image-content-block .image-content__content_title,
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-copy-content
  .image-content__content,
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .sitehq-image-content-block .image-content__content_title,
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .sitehq-image-content-block-copy-content
    .image-content__content,
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 800 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #5c068c !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: #2c0343 !important;
}
.text-secondary {
  color: #bcabcd !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
  color: #967bb0 !important;
}
.text-success {
  color: #85c645 !important;
}
a.text-success:focus,
a.text-success:hover {
  color: #5f922d !important;
}
.text-info {
  color: #ded5e6 !important;
}
a.text-info:focus,
a.text-info:hover {
  color: #b8a5c9 !important;
}
.text-warning {
  color: #fedd00 !important;
}
a.text-warning:focus,
a.text-warning:hover {
  color: #b29a00 !important;
}
.text-danger {
  color: #b33735 !important;
}
a.text-danger:focus,
a.text-danger:hover {
  color: #782524 !important;
}
.text-light {
  color: #ededee !important;
}
a.text-light:focus,
a.text-light:hover {
  color: #c6c6c9 !important;
}
.text-dark {
  color: #333 !important;
}
a.text-dark:focus,
a.text-dark:hover {
  color: #0d0d0d !important;
}
.text-accent {
  color: #fedd00 !important;
}
a.text-accent:focus,
a.text-accent:hover {
  color: #b29a00 !important;
}
.text-body {
  color: #000 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-break {
  word-wrap: break-word !important;
}
.card,
code {
  word-wrap: break-word;
}
.text-reset {
  color: inherit !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  blockquote,
  img,
  pre,
  tr {
    page-break-inside: avoid;
  }
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  blockquote,
  pre {
    border: 1px solid #adb5bd;
  }
  thead {
    display: table-header-group;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  .container,
  body,
  body.product-template-default .woocommerce-breadcrumb {
    min-width: 1024px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark tbody + tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
legend,
main,
nav,
section {
  display: block;
}
label,
output {
  display: inline-block;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
.section-temp-fence-calculator .content_sec h5,
.section-temp-fence-calculator .needHelp,
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  input[type="password"],
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  input[type="text"],
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  label,
.woocommerce-checkout-returning-login__wrapper h3,
body {
  font-family: Gilroy, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body {
  --wp--preset--font-size--large: 26px !important;
  --wp--preset--color--primary: #5c068c;
  --wp--preset--color--accent: #fedd00;
  --wp--preset--color--purple: #5c068c;
  --wp--preset--color--yellow: #fedd00;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.16;
  color: #000;
  background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 800;
}
dd {
  margin-left: 0;
}
blockquote,
figure {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #5c068c;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #2c0343;
  text-decoration: underline;
}
a:not([href]),
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
img {
  border-style: none;
}
svg {
  overflow: hidden;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
button {
  border-radius: 0;
}
button:focus {
  outline: dotted 1px;
  outline: -webkit-focus-ring-color auto 5px;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
.badge,
.dropdown-header,
.dropdown-item,
.dropdown-toggle,
.navbar-brand,
.valign {
  white-space: nowrap;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
}
.blockquote,
hr {
  margin-bottom: 1rem;
}
.display-1,
.display-2,
.display-3,
.display-4,
.lead {
  font-weight: 300;
}
.h1,
h1 {
  font-size: 2.5rem;
}
.h2,
h2 {
  font-size: 2rem;
}
.h3,
h3 {
  font-size: 1.25rem;
}
.close,
.h4,
h4 {
  font-size: 1.5rem;
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
}
.display-1 {
  font-size: 6rem;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  line-height: 1.2;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin-top: 1rem;
}
.img-fluid,
.img-thumbnail {
  height: auto;
  max-width: 100%;
}
.small,
small {
  font-size: 80%;
  font-weight: 400;
}
.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "—&nbsp;";
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}
code,
kbd {
  font-size: 87.5%;
}
a &gt; code,
pre code {
  color: inherit;
}
code {
  color: #e83e8c;
}
kbd {
  padding: 0.2rem 0.4rem;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 800;
}
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  background-color: transparent;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table-sm td,
.table-sm th {
  padding: 0.3rem;
}
.table-bordered,
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary &gt; td,
.table-primary &gt; th {
  background-color: #d1b9df;
}
.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
  border-color: #aa7ec3;
}
.table-hover .table-primary:hover,
.table-hover .table-primary:hover &gt; td,
.table-hover .table-primary:hover &gt; th {
  background-color: #c6a8d7;
}
.table-secondary,
.table-secondary &gt; td,
.table-secondary &gt; th {
  background-color: #ece7f1;
}
.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
  border-color: #dcd3e5;
}
.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover &gt; td,
.table-hover .table-secondary:hover &gt; th {
  background-color: #dfd7e8;
}
.table-success,
.table-success &gt; td,
.table-success &gt; th {
  background-color: #ddefcb;
}
.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
  border-color: #c0e19e;
}
.table-hover .table-success:hover,
.table-hover .table-success:hover &gt; td,
.table-hover .table-success:hover &gt; th {
  background-color: #d0e9b8;
}
.table-info,
.table-info &gt; td,
.table-info &gt; th {
  background-color: #f6f3f8;
}
.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
  border-color: #eee9f2;
}
.table-hover .table-info:hover,
.table-hover .table-info:hover &gt; td,
.table-hover .table-info:hover &gt; th {
  background-color: #eae3ef;
}
.table-warning,
.table-warning &gt; td,
.table-warning &gt; th {
  background-color: #fff5b8;
}
.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
  border-color: #feed7a;
}
.table-hover .table-warning:hover,
.table-hover .table-warning:hover &gt; td,
.table-hover .table-warning:hover &gt; th {
  background-color: #fff19f;
}
.table-danger,
.table-danger &gt; td,
.table-danger &gt; th {
  background-color: #eac7c6;
}
.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
  border-color: #d79796;
}
.table-hover .table-danger:hover,
.table-hover .table-danger:hover &gt; td,
.table-hover .table-danger:hover &gt; th {
  background-color: #e3b5b3;
}
.table-light,
.table-light &gt; td,
.table-light &gt; th {
  background-color: #fafafa;
}
.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
  border-color: #f6f6f6;
}
.table-hover .table-light:hover,
.table-hover .table-light:hover &gt; td,
.table-hover .table-light:hover &gt; th {
  background-color: #ededed;
}
.table-dark,
.table-dark &gt; td,
.table-dark &gt; th {
  background-color: #c6c6c6;
}
.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #959595;
}
.table-hover .table-dark:hover,
.table-hover .table-dark:hover &gt; td,
.table-hover .table-dark:hover &gt; th {
  background-color: #b9b9b9;
}
.table-accent,
.table-accent &gt; td,
.table-accent &gt; th {
  background-color: #fff5b8;
}
.table-accent tbody + tbody,
.table-accent td,
.table-accent th,
.table-accent thead th {
  border-color: #feed7a;
}
.table-hover .table-accent:hover,
.table-hover .table-accent:hover &gt; td,
.table-hover .table-accent:hover &gt; th {
  background-color: #fff19f;
}
.table-active,
.table-active &gt; td,
.table-active &gt; th,
.table-hover .table-active:hover,
.table-hover .table-active:hover &gt; td,
.table-hover .table-active:hover &gt; th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #fff;
  background-color: #333;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered,
.table-responsive &gt; .table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm &gt; .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md &gt; .table-bordered {
    border: 0;
  }
}
@media (max-width: 1023.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg &gt; .table-bordered {
    border: 0;
  }
}
@media (max-width: 1279.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl &gt; .table-bordered {
    border: 0;
  }
}
@media (max-width: 1499.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl &gt; .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.accordion &gt; .card,
.collapsing,
.dropdown-divider,
.modal-open {
  overflow: hidden;
}
.form-control,
.nf-form-cont .city-container .nf-field-element input,
.nf-form-cont .email-container .nf-field-element input,
.nf-form-cont .firstname-container .nf-field-element input,
.nf-form-cont .lastname-container .nf-field-element input,
.nf-form-cont .listselect-container .nf-field-element select,
.nf-form-cont .phone-container .nf-field-element input,
.nf-form-cont .textarea-container .nf-field-element textarea,
.nf-form-cont .textbox-container .nf-field-element input {
  display: block;
  width: 100%;
  height: calc(1.91rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.16;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.form-control::-ms-expand,
.nf-form-cont .city-container .nf-field-element input::-ms-expand,
.nf-form-cont .email-container .nf-field-element input::-ms-expand,
.nf-form-cont .firstname-container .nf-field-element input::-ms-expand,
.nf-form-cont .lastname-container .nf-field-element input::-ms-expand,
.nf-form-cont .listselect-container .nf-field-element select::-ms-expand,
.nf-form-cont .phone-container .nf-field-element input::-ms-expand,
.nf-form-cont .textarea-container .nf-field-element textarea::-ms-expand,
.nf-form-cont .textbox-container .nf-field-element input::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring,
.nf-form-cont .city-container .nf-field-element input:-moz-focusring,
.nf-form-cont .email-container .nf-field-element input:-moz-focusring,
.nf-form-cont .firstname-container .nf-field-element input:-moz-focusring,
.nf-form-cont .lastname-container .nf-field-element input:-moz-focusring,
.nf-form-cont .listselect-container .nf-field-element select:-moz-focusring,
.nf-form-cont .phone-container .nf-field-element input:-moz-focusring,
.nf-form-cont .textarea-container .nf-field-element textarea:-moz-focusring,
.nf-form-cont .textbox-container .nf-field-element input:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus,
.nf-form-cont .city-container .nf-field-element input:focus,
.nf-form-cont .email-container .nf-field-element input:focus,
.nf-form-cont .firstname-container .nf-field-element input:focus,
.nf-form-cont .lastname-container .nf-field-element input:focus,
.nf-form-cont .listselect-container .nf-field-element select:focus,
.nf-form-cont .phone-container .nf-field-element input:focus,
.nf-form-cont .textarea-container .nf-field-element textarea:focus,
.nf-form-cont .textbox-container .nf-field-element input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #a81cf5;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 6, 140, 0.25);
}
.form-control::-webkit-input-placeholder,
.nf-form-cont
  .city-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .email-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .firstname-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .lastname-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .listselect-container
  .nf-field-element
  select::-webkit-input-placeholder,
.nf-form-cont
  .phone-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .textarea-container
  .nf-field-element
  textarea::-webkit-input-placeholder,
.nf-form-cont
  .textbox-container
  .nf-field-element
  input::-webkit-input-placeholder {
  color: #6c757d;
}
.form-control:-ms-input-placeholder,
.nf-form-cont .city-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont .email-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .firstname-container
  .nf-field-element
  input:-ms-input-placeholder,
.nf-form-cont .lastname-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .listselect-container
  .nf-field-element
  select:-ms-input-placeholder,
.nf-form-cont .phone-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:-ms-input-placeholder,
.nf-form-cont .textbox-container .nf-field-element input:-ms-input-placeholder {
  color: #6c757d;
}
.form-control::placeholder,
.nf-form-cont .city-container .nf-field-element input::placeholder,
.nf-form-cont .email-container .nf-field-element input::placeholder,
.nf-form-cont .firstname-container .nf-field-element input::placeholder,
.nf-form-cont .lastname-container .nf-field-element input::placeholder,
.nf-form-cont .listselect-container .nf-field-element select::placeholder,
.nf-form-cont .phone-container .nf-field-element input::placeholder,
.nf-form-cont .textarea-container .nf-field-element textarea::placeholder,
.nf-form-cont .textbox-container .nf-field-element input::placeholder {
  color: #6c757d;
}
.form-control:disabled,
.form-control[readonly],
.nf-form-cont .city-container .nf-field-element input:disabled,
.nf-form-cont .city-container .nf-field-element input[readonly],
.nf-form-cont .email-container .nf-field-element input:disabled,
.nf-form-cont .email-container .nf-field-element input[readonly],
.nf-form-cont .firstname-container .nf-field-element input:disabled,
.nf-form-cont .firstname-container .nf-field-element input[readonly],
.nf-form-cont .lastname-container .nf-field-element input:disabled,
.nf-form-cont .lastname-container .nf-field-element input[readonly],
.nf-form-cont .listselect-container .nf-field-element select:disabled,
.nf-form-cont .listselect-container .nf-field-element select[readonly],
.nf-form-cont .phone-container .nf-field-element input:disabled,
.nf-form-cont .phone-container .nf-field-element input[readonly],
.nf-form-cont .textarea-container .nf-field-element textarea:disabled,
.nf-form-cont .textarea-container .nf-field-element textarea[readonly],
.nf-form-cont .textbox-container .nf-field-element input:disabled,
.nf-form-cont .textbox-container .nf-field-element input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.nf-form-cont .city-container .nf-field-element input[type="date"],
.nf-form-cont .city-container .nf-field-element input[type="datetime-local"],
.nf-form-cont .city-container .nf-field-element input[type="month"],
.nf-form-cont .city-container .nf-field-element input[type="time"],
.nf-form-cont .email-container .nf-field-element input[type="date"],
.nf-form-cont .email-container .nf-field-element input[type="datetime-local"],
.nf-form-cont .email-container .nf-field-element input[type="month"],
.nf-form-cont .email-container .nf-field-element input[type="time"],
.nf-form-cont .firstname-container .nf-field-element input[type="date"],
.nf-form-cont
  .firstname-container
  .nf-field-element
  input[type="datetime-local"],
.nf-form-cont .firstname-container .nf-field-element input[type="month"],
.nf-form-cont .firstname-container .nf-field-element input[type="time"],
.nf-form-cont .lastname-container .nf-field-element input[type="date"],
.nf-form-cont
  .lastname-container
  .nf-field-element
  input[type="datetime-local"],
.nf-form-cont .lastname-container .nf-field-element input[type="month"],
.nf-form-cont .lastname-container .nf-field-element input[type="time"],
.nf-form-cont .phone-container .nf-field-element input[type="date"],
.nf-form-cont .phone-container .nf-field-element input[type="datetime-local"],
.nf-form-cont .phone-container .nf-field-element input[type="month"],
.nf-form-cont .phone-container .nf-field-element input[type="time"],
.nf-form-cont .textbox-container .nf-field-element input[type="date"],
.nf-form-cont .textbox-container .nf-field-element input[type="datetime-local"],
.nf-form-cont .textbox-container .nf-field-element input[type="month"],
.nf-form-cont .textbox-container .nf-field-element input[type="time"],
input[type="date"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control,
input[type="time"].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.nf-form-cont .listselect-container .nf-field-element select:focus::-ms-value,
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.16;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.16;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.alert,
.form-group,
.nf-form-cont .nf-field-container {
  margin-bottom: 1rem;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.nf-form-cont .listselect-container .nf-field-element select[multiple],
.nf-form-cont .listselect-container .nf-field-element select[size],
.nf-form-cont .textarea-container .nf-field-element textarea,
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
  height: auto;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row &gt; .col,
.form-row &gt; [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  color: #6c757d;
}
.custom-control-input.is-valid ~ .custom-control-label,
.form-check-input.is-valid ~ .form-check-label,
.valid-feedback,
.was-validated .custom-control-input:valid ~ .custom-control-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.dropdown-menu,
.invalid-tooltip,
.navbar-expand .navbar-nav .dropdown-menu,
.valid-tooltip {
  position: absolute;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
}
.valid-tooltip {
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}
.form-control.is-valid,
.nf-form-cont .city-container .nf-field-element .was-validated input:valid,
.nf-form-cont .city-container .nf-field-element input.is-valid,
.nf-form-cont .email-container .nf-field-element .was-validated input:valid,
.nf-form-cont .email-container .nf-field-element input.is-valid,
.nf-form-cont .firstname-container .nf-field-element .was-validated input:valid,
.nf-form-cont .firstname-container .nf-field-element input.is-valid,
.nf-form-cont .lastname-container .nf-field-element .was-validated input:valid,
.nf-form-cont .lastname-container .nf-field-element input.is-valid,
.nf-form-cont
  .listselect-container
  .nf-field-element
  .was-validated
  select:valid,
.nf-form-cont .listselect-container .nf-field-element select.is-valid,
.nf-form-cont .phone-container .nf-field-element .was-validated input:valid,
.nf-form-cont .phone-container .nf-field-element input.is-valid,
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:valid,
.nf-form-cont .textarea-container .nf-field-element textarea.is-valid,
.nf-form-cont .textbox-container .nf-field-element .was-validated input:valid,
.nf-form-cont .textbox-container .nf-field-element input.is-valid,
.was-validated .form-control:valid,
.was-validated .nf-form-cont .city-container .nf-field-element input:valid,
.was-validated .nf-form-cont .email-container .nf-field-element input:valid,
.was-validated .nf-form-cont .firstname-container .nf-field-element input:valid,
.was-validated .nf-form-cont .lastname-container .nf-field-element input:valid,
.was-validated
  .nf-form-cont
  .listselect-container
  .nf-field-element
  select:valid,
.was-validated .nf-form-cont .phone-container .nf-field-element input:valid,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:valid,
.was-validated .nf-form-cont .textbox-container .nf-field-element input:valid {
  border-color: #28a745;
  padding-right: 1.91rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus,
.nf-form-cont
  .city-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .city-container .nf-field-element input.is-valid:focus,
.nf-form-cont
  .email-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .email-container .nf-field-element input.is-valid:focus,
.nf-form-cont
  .firstname-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .firstname-container .nf-field-element input.is-valid:focus,
.nf-form-cont
  .lastname-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .lastname-container .nf-field-element input.is-valid:focus,
.nf-form-cont
  .listselect-container
  .nf-field-element
  .was-validated
  select:valid:focus,
.nf-form-cont .listselect-container .nf-field-element select.is-valid:focus,
.nf-form-cont
  .phone-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .phone-container .nf-field-element input.is-valid:focus,
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:valid:focus,
.nf-form-cont .textarea-container .nf-field-element textarea.is-valid:focus,
.nf-form-cont
  .textbox-container
  .nf-field-element
  .was-validated
  input:valid:focus,
.nf-form-cont .textbox-container .nf-field-element input.is-valid:focus,
.was-validated .form-control:valid:focus,
.was-validated
  .nf-form-cont
  .city-container
  .nf-field-element
  input:valid:focus,
.was-validated
  .nf-form-cont
  .email-container
  .nf-field-element
  input:valid:focus,
.was-validated
  .nf-form-cont
  .firstname-container
  .nf-field-element
  input:valid:focus,
.was-validated
  .nf-form-cont
  .lastname-container
  .nf-field-element
  input:valid:focus,
.was-validated
  .nf-form-cont
  .listselect-container
  .nf-field-element
  select:valid:focus,
.was-validated
  .nf-form-cont
  .phone-container
  .nf-field-element
  input:valid:focus,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:valid:focus,
.was-validated
  .nf-form-cont
  .textbox-container
  .nf-field-element
  input:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:valid,
.nf-form-cont .textarea-container .nf-field-element textarea.is-valid,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:valid,
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: 1.91rem;
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}
.custom-select.is-valid,
.was-validated .custom-select:valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
      right 0.75rem center/8px 10px no-repeat,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")
      center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
      no-repeat #fff;
}
.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated
  .custom-control-input:valid:checked
  ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.custom-control-input.is-valid:focus ~ .custom-control-label::before,
.was-validated
  .custom-control-input:valid:focus
  ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-control-input.is-valid:focus:not(:checked)
  ~ .custom-control-label::before,
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated
  .custom-control-input:valid:focus:not(:checked)
  ~ .custom-control-label::before,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745;
}
.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.btn-sm,
.invalid-tooltip {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.invalid-tooltip {
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  margin-top: 0.1rem;
  color: #212529;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.collapsing,
.dropdown,
.dropleft,
.dropright,
.dropup,
.navbar {
  position: relative;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}
.form-control.is-invalid,
.nf-form-cont .city-container .nf-field-element .was-validated input:invalid,
.nf-form-cont .city-container .nf-field-element input.is-invalid,
.nf-form-cont .email-container .nf-field-element .was-validated input:invalid,
.nf-form-cont .email-container .nf-field-element input.is-invalid,
.nf-form-cont
  .firstname-container
  .nf-field-element
  .was-validated
  input:invalid,
.nf-form-cont .firstname-container .nf-field-element input.is-invalid,
.nf-form-cont
  .lastname-container
  .nf-field-element
  .was-validated
  input:invalid,
.nf-form-cont .lastname-container .nf-field-element input.is-invalid,
.nf-form-cont
  .listselect-container
  .nf-field-element
  .was-validated
  select:invalid,
.nf-form-cont .listselect-container .nf-field-element select.is-invalid,
.nf-form-cont .phone-container .nf-field-element .was-validated input:invalid,
.nf-form-cont .phone-container .nf-field-element input.is-invalid,
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:invalid,
.nf-form-cont .textarea-container .nf-field-element textarea.is-invalid,
.nf-form-cont .textbox-container .nf-field-element .was-validated input:invalid,
.nf-form-cont .textbox-container .nf-field-element input.is-invalid,
.was-validated .form-control:invalid,
.was-validated .nf-form-cont .city-container .nf-field-element input:invalid,
.was-validated .nf-form-cont .email-container .nf-field-element input:invalid,
.was-validated
  .nf-form-cont
  .firstname-container
  .nf-field-element
  input:invalid,
.was-validated
  .nf-form-cont
  .lastname-container
  .nf-field-element
  input:invalid,
.was-validated
  .nf-form-cont
  .listselect-container
  .nf-field-element
  select:invalid,
.was-validated .nf-form-cont .phone-container .nf-field-element input:invalid,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:invalid,
.was-validated
  .nf-form-cont
  .textbox-container
  .nf-field-element
  input:invalid {
  border-color: #dc3545;
  padding-right: 1.91rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus,
.nf-form-cont
  .city-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .city-container .nf-field-element input.is-invalid:focus,
.nf-form-cont
  .email-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .email-container .nf-field-element input.is-invalid:focus,
.nf-form-cont
  .firstname-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .firstname-container .nf-field-element input.is-invalid:focus,
.nf-form-cont
  .lastname-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .lastname-container .nf-field-element input.is-invalid:focus,
.nf-form-cont
  .listselect-container
  .nf-field-element
  .was-validated
  select:invalid:focus,
.nf-form-cont .listselect-container .nf-field-element select.is-invalid:focus,
.nf-form-cont
  .phone-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .phone-container .nf-field-element input.is-invalid:focus,
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:invalid:focus,
.nf-form-cont .textarea-container .nf-field-element textarea.is-invalid:focus,
.nf-form-cont
  .textbox-container
  .nf-field-element
  .was-validated
  input:invalid:focus,
.nf-form-cont .textbox-container .nf-field-element input.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.was-validated
  .nf-form-cont
  .city-container
  .nf-field-element
  input:invalid:focus,
.was-validated
  .nf-form-cont
  .email-container
  .nf-field-element
  input:invalid:focus,
.was-validated
  .nf-form-cont
  .firstname-container
  .nf-field-element
  input:invalid:focus,
.was-validated
  .nf-form-cont
  .lastname-container
  .nf-field-element
  input:invalid:focus,
.was-validated
  .nf-form-cont
  .listselect-container
  .nf-field-element
  select:invalid:focus,
.was-validated
  .nf-form-cont
  .phone-container
  .nf-field-element
  input:invalid:focus,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:invalid:focus,
.was-validated
  .nf-form-cont
  .textbox-container
  .nf-field-element
  input:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.nf-form-cont
  .textarea-container
  .nf-field-element
  .was-validated
  textarea:invalid,
.nf-form-cont .textarea-container .nf-field-element textarea.is-invalid,
.was-validated
  .nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:invalid,
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: 1.91rem;
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}
.custom-select.is-invalid,
.was-validated .custom-select:invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
      right 0.75rem center/8px 10px no-repeat,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e")
      center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
      no-repeat #fff;
}
.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.was-validated
  .custom-control-input:invalid:checked
  ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label::before,
.was-validated
  .custom-control-input:invalid:focus
  ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-control-input.is-invalid:focus:not(:checked)
  ~ .custom-control-label::before,
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated
  .custom-control-input:invalid:focus:not(:checked)
  ~ .custom-control-label::before,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.btn.focus,
.btn:focus,
.page-link:focus,
.typography a.button:focus,
.typography a.focus.button {
  box-shadow: 0 0 0 0.2rem rgba(92, 6, 140, 0.25);
  outline: 0;
}
.form-inline {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group,
  .form-inline .nf-form-cont .nf-field-container,
  .nf-form-cont .form-inline .nf-field-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control,
  .form-inline .nf-form-cont .city-container .nf-field-element input,
  .form-inline .nf-form-cont .email-container .nf-field-element input,
  .form-inline .nf-form-cont .firstname-container .nf-field-element input,
  .form-inline .nf-form-cont .lastname-container .nf-field-element input,
  .form-inline .nf-form-cont .listselect-container .nf-field-element select,
  .form-inline .nf-form-cont .phone-container .nf-field-element input,
  .form-inline .nf-form-cont .textarea-container .nf-field-element textarea,
  .form-inline .nf-form-cont .textbox-container .nf-field-element input,
  .nf-form-cont .city-container .nf-field-element .form-inline input,
  .nf-form-cont .email-container .nf-field-element .form-inline input,
  .nf-form-cont .firstname-container .nf-field-element .form-inline input,
  .nf-form-cont .lastname-container .nf-field-element .form-inline input,
  .nf-form-cont .listselect-container .nf-field-element .form-inline select,
  .nf-form-cont .phone-container .nf-field-element .form-inline input,
  .nf-form-cont .textarea-container .nf-field-element .form-inline textarea,
  .nf-form-cont .textbox-container .nf-field-element .form-inline input {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .custom-select,
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn,
.typography a.button {
  display: inline-block;
  color: #000;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  font-size: 1rem;
  line-height: 1.16;
  border-radius: 0.25rem;
}
.dropdown-toggle::after,
.dropup .dropdown-toggle::after {
  vertical-align: 0.255em;
  content: "";
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .form-control,
  .nf-form-cont .city-container .nf-field-element input,
  .nf-form-cont .email-container .nf-field-element input,
  .nf-form-cont .firstname-container .nf-field-element input,
  .nf-form-cont .lastname-container .nf-field-element input,
  .nf-form-cont .listselect-container .nf-field-element select,
  .nf-form-cont .phone-container .nf-field-element input,
  .nf-form-cont .textarea-container .nf-field-element textarea,
  .nf-form-cont .textbox-container .nf-field-element input,
  .typography a.button {
    transition: none;
  }
}
.btn:hover,
.typography a.button:hover {
  color: #000;
  text-decoration: none;
}
.btn.disabled,
.btn:disabled,
.typography a.button:disabled,
.typography a.disabled.button {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled),
.typography a.button:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.typography a.disabled.button,
.typography fieldset:disabled a.button,
a.btn.disabled,
fieldset:disabled .typography a.button,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary,
.typography a.button {
  color: #fff;
  background-color: #5c068c;
  border-color: #5c068c;
}
.btn-primary:hover,
.typography a.button:hover {
  background-color: #440467;
  border-color: #3c045b;
}
.btn-primary.focus,
.btn-primary:focus,
.typography a.button:focus,
.typography a.focus.button {
  color: #fff;
  background-color: #440467;
  border-color: #3c045b;
  box-shadow: 0 0 0 0.2rem rgba(116, 43, 157, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled,
.typography a.button:disabled,
.typography a.disabled.button {
  color: #fff;
  background-color: #5c068c;
  border-color: #5c068c;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show &gt; .btn-primary.dropdown-toggle,
.typography .show &gt; a.dropdown-toggle.button,
.typography a.button:not(:disabled):not(.disabled).active,
.typography a.button:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #3c045b;
  border-color: #34034f;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-primary.dropdown-toggle:focus,
.typography .show &gt; a.dropdown-toggle.button:focus,
.typography a.button:not(:disabled):not(.disabled).active:focus,
.typography a.button:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 43, 157, 0.5);
}
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(165, 151, 180, 0.5);
}
.btn-secondary {
  color: #212529;
  background-color: #bcabcd;
  border-color: #bcabcd;
}
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover {
  background-color: #a993bf;
  border-color: #a38bba;
  color: #212529;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #212529;
  background-color: #bcabcd;
  border-color: #bcabcd;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show &gt; .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #a38bba;
  border-color: #9c83b5;
}
.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(118, 174, 65, 0.5);
}
.btn-success {
  color: #212529;
  background-color: #85c645;
  border-color: #85c645;
}
.btn-success.focus,
.btn-success:focus,
.btn-success:hover {
  background-color: #72af36;
  border-color: #6ca533;
  color: #212529;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #212529;
  background-color: #85c645;
  border-color: #85c645;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show &gt; .btn-success.dropdown-toggle {
  color: #212529;
  background-color: #6ca533;
  border-color: #659c30;
}
.btn-info.focus,
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(194, 187, 202, 0.5);
}
.btn-info {
  color: #212529;
  background-color: #ded5e6;
  border-color: #ded5e6;
}
.btn-info.focus,
.btn-info:focus,
.btn-info:hover {
  background-color: #cbbdd8;
  border-color: #c5b5d3;
  color: #212529;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #ded5e6;
  border-color: #ded5e6;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show &gt; .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #c5b5d3;
  border-color: #bfadce;
}
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 193, 6, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
  background-color: #d8bc00;
  border-color: #cbb100;
  color: #212529;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show &gt; .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #cbb100;
  border-color: #bea600;
}
.btn-danger.focus,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(190, 85, 83, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #b33735;
  border-color: #b33735;
}
.btn-danger.focus,
.btn-danger:focus,
.btn-danger:hover {
  background-color: #952e2c;
  border-color: #8c2b29;
  color: #fff;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #b33735;
  border-color: #b33735;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show &gt; .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #8c2b29;
  border-color: #822826;
}
.btn-light.focus,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(206, 207, 208, 0.5);
}
.btn-light {
  background-color: #ededee;
  border-color: #ededee;
}
.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
  background-color: #d9d9db;
  border-color: #d3d3d5;
  color: #212529;
}
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #ededee;
  border-color: #ededee;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show &gt; .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #d3d3d5;
  border-color: #cccccf;
}
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
  background-color: #202020;
  border-color: #1a1a1a;
  color: #fff;
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show &gt; .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #131313;
}
.btn-accent.focus,
.btn-accent:focus,
.btn-accent:not(:disabled):not(.disabled).active:focus,
.btn-accent:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-accent.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 193, 6, 0.5);
}
.btn-accent {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-accent.focus,
.btn-accent:focus,
.btn-accent:hover {
  background-color: #d8bc00;
  border-color: #cbb100;
}
.btn-accent.focus,
.btn-accent:focus {
  color: #212529;
}
.btn-accent.disabled,
.btn-accent:disabled {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-accent:not(:disabled):not(.disabled).active,
.btn-accent:not(:disabled):not(.disabled):active,
.show &gt; .btn-accent.dropdown-toggle {
  color: #212529;
  background-color: #cbb100;
  border-color: #bea600;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 6, 140, 0.5);
}
.btn-outline-primary {
  color: #5c068c;
  border-color: #5c068c;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #5c068c;
  border-color: #5c068c;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #5c068c;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #5c068c;
  border-color: #5c068c;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(188, 171, 205, 0.5);
}
.btn-outline-secondary {
  color: #bcabcd;
  border-color: #bcabcd;
}
.btn-outline-secondary:hover {
  color: #212529;
  background-color: #bcabcd;
  border-color: #bcabcd;
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #bcabcd;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #bcabcd;
  border-color: #bcabcd;
}
.btn-outline-success.focus,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(133, 198, 69, 0.5);
}
.btn-outline-success {
  color: #85c645;
  border-color: #85c645;
}
.btn-outline-success:hover {
  color: #212529;
  background-color: #85c645;
  border-color: #85c645;
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #85c645;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #85c645;
  border-color: #85c645;
}
.btn-outline-info.focus,
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 213, 230, 0.5);
}
.btn-outline-info {
  color: #ded5e6;
  border-color: #ded5e6;
}
.btn-outline-info:hover {
  color: #212529;
  background-color: #ded5e6;
  border-color: #ded5e6;
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #ded5e6;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #ded5e6;
  border-color: #ded5e6;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 221, 0, 0.5);
}
.btn-outline-warning {
  color: #fedd00;
  border-color: #fedd00;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #fedd00;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(179, 55, 53, 0.5);
}
.btn-outline-danger {
  color: #b33735;
  border-color: #b33735;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #b33735;
  border-color: #b33735;
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #b33735;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #b33735;
  border-color: #b33735;
}
.btn-outline-light.focus,
.btn-outline-light:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 237, 238, 0.5);
}
.btn-outline-light {
  color: #ededee;
  border-color: #ededee;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #ededee;
  border-color: #ededee;
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #ededee;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #ededee;
  border-color: #ededee;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-outline-dark {
  color: #333;
  border-color: #333;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #333;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-outline-accent.focus,
.btn-outline-accent:focus,
.btn-outline-accent:not(:disabled):not(.disabled).active:focus,
.btn-outline-accent:not(:disabled):not(.disabled):active:focus,
.show &gt; .btn-outline-accent.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 221, 0, 0.5);
}
.btn-outline-accent {
  color: #fedd00;
  border-color: #fedd00;
}
.btn-outline-accent:hover {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-outline-accent.disabled,
.btn-outline-accent:disabled {
  color: #fedd00;
  background-color: transparent;
}
.btn-outline-accent:not(:disabled):not(.disabled).active,
.btn-outline-accent:not(:disabled):not(.disabled):active,
.show &gt; .btn-outline-accent.dropdown-toggle {
  color: #212529;
  background-color: #fedd00;
  border-color: #fedd00;
}
.btn-link {
  font-weight: 400;
  color: #5c068c;
  text-decoration: none;
}
.btn-link:hover {
  color: #2c0343;
  text-decoration: underline;
}
.btn-link.focus,
.btn-link:focus {
  text-decoration: underline;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}
.btn-lg {
  line-height: 1.5;
}
.btn-sm {
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
  width: 100%;
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1280px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1500px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
  border-top: 0.3em solid transparent;
  content: "";
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  vertical-align: 0;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}
.card &gt; hr,
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
  vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
  right: auto;
  bottom: auto;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #5c068c;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}
.nav,
.navbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-flex-wrap: wrap;
}
.nav {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link,
.navbar {
  padding: 0.5rem 1rem;
}
.nav-link {
  display: block;
}
.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.alert,
.navbar-toggler {
  border: 1px solid transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show &gt; .nav-link {
  color: #fff;
  background-color: #5c068c;
}
.nav-fill .nav-item {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.tab-content &gt; .tab-pane {
  display: none;
}
.page-link,
.tab-content &gt; .active {
  display: block;
}
.navbar {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl,
.navbar .container-xxl,
.navbar body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .navbar .woocommerce-breadcrumb {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.355rem;
  padding-bottom: 0.355rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  content: "";
  background: center center no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 575.98px) {
  .navbar-expand-sm &gt; .container,
  .navbar-expand-sm &gt; .container-fluid,
  .navbar-expand-sm &gt; .container-lg,
  .navbar-expand-sm &gt; .container-md,
  .navbar-expand-sm &gt; .container-sm,
  .navbar-expand-sm &gt; .container-xl,
  .navbar-expand-sm &gt; .container-xxl,
  body.product-template-default .navbar-expand-sm &gt; .woocommerce-breadcrumb {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm &gt; .container,
  .navbar-expand-sm &gt; .container-fluid,
  .navbar-expand-sm &gt; .container-lg,
  .navbar-expand-sm &gt; .container-md,
  .navbar-expand-sm &gt; .container-sm,
  .navbar-expand-sm &gt; .container-xl,
  .navbar-expand-sm &gt; .container-xxl,
  body.product-template-default .navbar-expand-sm &gt; .woocommerce-breadcrumb {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md &gt; .container,
  .navbar-expand-md &gt; .container-fluid,
  .navbar-expand-md &gt; .container-lg,
  .navbar-expand-md &gt; .container-md,
  .navbar-expand-md &gt; .container-sm,
  .navbar-expand-md &gt; .container-xl,
  .navbar-expand-md &gt; .container-xxl,
  body.product-template-default .navbar-expand-md &gt; .woocommerce-breadcrumb {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md &gt; .container,
  .navbar-expand-md &gt; .container-fluid,
  .navbar-expand-md &gt; .container-lg,
  .navbar-expand-md &gt; .container-md,
  .navbar-expand-md &gt; .container-sm,
  .navbar-expand-md &gt; .container-xl,
  .navbar-expand-md &gt; .container-xxl,
  body.product-template-default .navbar-expand-md &gt; .woocommerce-breadcrumb {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .navbar-expand-lg &gt; .container,
  .navbar-expand-lg &gt; .container-fluid,
  .navbar-expand-lg &gt; .container-lg,
  .navbar-expand-lg &gt; .container-md,
  .navbar-expand-lg &gt; .container-sm,
  .navbar-expand-lg &gt; .container-xl,
  .navbar-expand-lg &gt; .container-xxl,
  body.product-template-default .navbar-expand-lg &gt; .woocommerce-breadcrumb {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .navbar-expand-lg {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg &gt; .container,
  .navbar-expand-lg &gt; .container-fluid,
  .navbar-expand-lg &gt; .container-lg,
  .navbar-expand-lg &gt; .container-md,
  .navbar-expand-lg &gt; .container-sm,
  .navbar-expand-lg &gt; .container-xl,
  .navbar-expand-lg &gt; .container-xxl,
  body.product-template-default .navbar-expand-lg &gt; .woocommerce-breadcrumb {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1279.98px) {
  .navbar-expand-xl &gt; .container,
  .navbar-expand-xl &gt; .container-fluid,
  .navbar-expand-xl &gt; .container-lg,
  .navbar-expand-xl &gt; .container-md,
  .navbar-expand-xl &gt; .container-sm,
  .navbar-expand-xl &gt; .container-xl,
  .navbar-expand-xl &gt; .container-xxl,
  body.product-template-default .navbar-expand-xl &gt; .woocommerce-breadcrumb {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1280px) {
  .navbar-expand-xl {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl &gt; .container,
  .navbar-expand-xl &gt; .container-fluid,
  .navbar-expand-xl &gt; .container-lg,
  .navbar-expand-xl &gt; .container-md,
  .navbar-expand-xl &gt; .container-sm,
  .navbar-expand-xl &gt; .container-xl,
  .navbar-expand-xl &gt; .container-xxl,
  body.product-template-default .navbar-expand-xl &gt; .woocommerce-breadcrumb {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1499.98px) {
  .navbar-expand-xxl &gt; .container,
  .navbar-expand-xxl &gt; .container-fluid,
  .navbar-expand-xxl &gt; .container-lg,
  .navbar-expand-xxl &gt; .container-md,
  .navbar-expand-xxl &gt; .container-sm,
  .navbar-expand-xxl &gt; .container-xl,
  .navbar-expand-xxl &gt; .container-xxl,
  body.product-template-default .navbar-expand-xxl &gt; .woocommerce-breadcrumb {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1500px) {
  .navbar-expand-xxl {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl &gt; .container,
  .navbar-expand-xxl &gt; .container-fluid,
  .navbar-expand-xxl &gt; .container-lg,
  .navbar-expand-xxl &gt; .container-md,
  .navbar-expand-xxl &gt; .container-sm,
  .navbar-expand-xxl &gt; .container-xl,
  .navbar-expand-xxl &gt; .container-xxl,
  body.product-template-default .navbar-expand-xxl &gt; .woocommerce-breadcrumb {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.navbar-expand &gt; .container,
.navbar-expand &gt; .container-fluid,
.navbar-expand &gt; .container-lg,
.navbar-expand &gt; .container-md,
.navbar-expand &gt; .container-sm,
.navbar-expand &gt; .container-xl,
.navbar-expand &gt; .container-xxl,
body.product-template-default .navbar-expand &gt; .woocommerce-breadcrumb {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand &gt; .container,
.navbar-expand &gt; .container-fluid,
.navbar-expand &gt; .container-lg,
.navbar-expand &gt; .container-md,
.navbar-expand &gt; .container-sm,
.navbar-expand &gt; .container-xl,
.navbar-expand &gt; .container-xxl,
body.product-template-default .navbar-expand &gt; .woocommerce-breadcrumb {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .active &gt; .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show &gt; .nav-link {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .active &gt; .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show &gt; .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card-footer,
.card-header {
  background-color: rgba(0, 0, 0, 0.03);
}
.card &gt; hr {
  margin-right: 0;
}
.card &gt; .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card &gt; .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card &gt; .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-body {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.alert,
.card-footer,
.card-header {
  padding: 0.75rem 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-header,
.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}
.card-subtitle {
  margin-top: -0.375rem;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header-pills,
.card-header-tabs {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-bottom: -0.75rem;
  border-bottom: 0;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.card-img,
.card-img-bottom,
.card-img-top {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group &gt; .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group &gt; .card {
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group &gt; .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group &gt; .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group &gt; .card:not(:last-child) .card-header,
  .card-group &gt; .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group &gt; .card:not(:last-child) .card-footer,
  .card-group &gt; .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group &gt; .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group &gt; .card:not(:first-child) .card-header,
  .card-group &gt; .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group &gt; .card:not(:first-child) .card-footer,
  .card-group &gt; .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-columns {
    -webkit-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
.accordion &gt; .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion &gt; .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion &gt; .card &gt; .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}
.pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #5c068c;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #2c0343;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #5c068c;
  border-color: #5c068c;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.badge,
.close {
  line-height: 1;
  font-weight: 800;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  text-align: center;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.badge:empty,
.modal {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:focus,
a.badge:hover {
  text-decoration: none;
}
.btn .badge,
.typography a.button .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #5c068c;
}
a.badge-primary:focus,
a.badge-primary:hover {
  color: #fff;
  background-color: #3c045b;
}
a.badge-primary.focus,
a.badge-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 6, 140, 0.5);
}
.badge-secondary {
  color: #212529;
  background-color: #bcabcd;
}
a.badge-secondary:focus,
a.badge-secondary:hover {
  color: #212529;
  background-color: #a38bba;
}
a.badge-secondary.focus,
a.badge-secondary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(188, 171, 205, 0.5);
}
.badge-success {
  color: #212529;
  background-color: #85c645;
}
a.badge-success:focus,
a.badge-success:hover {
  color: #212529;
  background-color: #6ca533;
}
a.badge-success.focus,
a.badge-success:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(133, 198, 69, 0.5);
}
.badge-info {
  color: #212529;
  background-color: #ded5e6;
}
a.badge-info:focus,
a.badge-info:hover {
  color: #212529;
  background-color: #c5b5d3;
}
a.badge-info.focus,
a.badge-info:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(222, 213, 230, 0.5);
}
.badge-warning {
  color: #212529;
  background-color: #fedd00;
}
a.badge-warning:focus,
a.badge-warning:hover {
  color: #212529;
  background-color: #cbb100;
}
a.badge-warning.focus,
a.badge-warning:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(254, 221, 0, 0.5);
}
.badge-danger {
  color: #fff;
  background-color: #b33735;
}
a.badge-danger:focus,
a.badge-danger:hover {
  color: #fff;
  background-color: #8c2b29;
}
a.badge-danger.focus,
a.badge-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(179, 55, 53, 0.5);
}
.badge-light {
  color: #212529;
  background-color: #ededee;
}
a.badge-light:focus,
a.badge-light:hover {
  color: #212529;
  background-color: #d3d3d5;
}
a.badge-light.focus,
a.badge-light:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 237, 238, 0.5);
}
.badge-dark {
  color: #fff;
  background-color: #333;
}
a.badge-dark:focus,
a.badge-dark:hover {
  color: #fff;
  background-color: #1a1a1a;
}
a.badge-dark.focus,
a.badge-dark:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.badge-accent {
  color: #212529;
  background-color: #fedd00;
}
a.badge-accent:focus,
a.badge-accent:hover {
  color: #212529;
  background-color: #cbb100;
}
a.badge-accent.focus,
a.badge-accent:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(254, 221, 0, 0.5);
}
.alert {
  position: relative;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 800;
}
.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #300349;
  background-color: #decde8;
  border-color: #d1b9df;
}
.alert-primary hr {
  border-top-color: #c6a8d7;
}
.alert-primary .alert-link {
  color: #100118;
}
.alert-secondary {
  color: #62596b;
  background-color: #f2eef5;
  border-color: #ece7f1;
}
.alert-secondary hr {
  border-top-color: #dfd7e8;
}
.alert-secondary .alert-link {
  color: #49424f;
}
.alert-success {
  color: #456724;
  background-color: #e7f4da;
  border-color: #ddefcb;
}
.alert-success hr {
  border-top-color: #d0e9b8;
}
.alert-success .alert-link {
  color: #2c4117;
}
.alert-info {
  color: #736f78;
  background-color: #f8f7fa;
  border-color: #f6f3f8;
}
.alert-info hr {
  border-top-color: #eae3ef;
}
.alert-info .alert-link {
  color: #5a565e;
}
.alert-warning {
  color: #847300;
  background-color: #fff8cc;
  border-color: #fff5b8;
}
.alert-warning hr {
  border-top-color: #fff19f;
}
.alert-warning .alert-link {
  color: #514700;
}
.alert-danger {
  color: #5d1d1c;
  background-color: #f0d7d7;
  border-color: #eac7c6;
}
.alert-danger hr {
  border-top-color: #e3b5b3;
}
.alert-danger .alert-link {
  color: #361110;
}
.alert-light {
  color: #7b7b7c;
  background-color: #fbfbfc;
  border-color: #fafafa;
}
.alert-light hr {
  border-top-color: #ededed;
}
.alert-light .alert-link {
  color: #626262;
}
.alert-dark {
  color: #1b1b1b;
  background-color: #d6d6d6;
  border-color: #c6c6c6;
}
.alert-dark hr {
  border-top-color: #b9b9b9;
}
.alert-dark .alert-link {
  color: #020202;
}
.alert-accent {
  color: #847300;
  background-color: #fff8cc;
  border-color: #fff5b8;
}
.alert-accent hr {
  border-top-color: #fff19f;
}
.alert-accent .alert-link {
  color: #514700;
}
.close {
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}
a.close.disabled {
  pointer-events: none;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition:
    transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}
.modal-content {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.no-click,
.sidecart-wrapper__title-close .close &gt; *,
.swatch-tooltip,
.valign:after {
  pointer-events: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.flex-valign,
.modal-footer {
  display: -webkit-flex;
  display: -ms-flexbox;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.16;
}
.modal-body {
  position: relative;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer &gt; * {
  margin: 0.25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
.loading,
.nf-form-cont .checkbox-container .nf-field,
body {
  position: relative;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
.nf-form-cont {
  margin: 0 auto;
}
.nf-form-cont .nf-form-title {
  display: block;
  margin: 0 0 1rem;
}
.nf-form-cont .nf-form-fields-required {
  display: none;
}
.nf-form-cont .nf-error-msg {
  font-size: 0.8em;
}
.nf-form-cont .nf-field-container .field-wrap.nf-error input {
  border-color: #b33735;
}
.nf-form-cont .nf-field-container .field-wrap button {
  width: unset;
}
.nf-form-cont .nf-field-container .nf-field + .nf-after-field {
  display: none !important;
}
.nf-form-cont .checkbox-container .nf-field-label {
  padding-left: 6px;
}
.nf-form-cont .checkbox-container .nf-field-label label {
  padding-left: 10px;
}
.nf-form-cont .listcheckbox-container .nf-field-element ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nf-form-cont .listcheckbox-container .nf-field-element li {
  display: block;
  margin: 0 !important;
}
.nf-form-cont .listcheckbox-container .nf-field-element li + li {
  margin-top: 10px !important;
}
.nf-form-cont
  .listcheckbox-container
  .nf-field-element
  li
  &gt; [type="checkbox"]
  + label {
  margin: 0;
}
.nf-form-cont .listradio-container .nf-field-element ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nf-form-cont .listradio-container .nf-field-element li {
  display: block;
  margin: 0 !important;
}
.nf-form-cont .listradio-container .nf-field-element li + li {
  margin-top: 5px !important;
}
.nf-form-cont
  .listradio-container
  .nf-field-element
  li
  &gt; [type="radio"]
  + label {
  margin: 0;
}
.nf-form-cont .html-container {
  margin: 16px 0;
}
@font-face {
  font-family: Gilroy;
  font-weight: 600;
  font-style: normal;
  src:
    url(../../fonts/GilroySemiBold/font.woff2) format("woff2"),
    url(../../fonts/GilroySemiBold/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 600;
  font-style: italic;
  src:
    url(../../fonts/GilroySemiBoldItalic/font.woff2) format("woff2"),
    url(../../fonts/GilroySemiBoldItalic/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 700;
  font-style: normal;
  src:
    url(../../fonts/GilroyBold/font.woff2) format("woff2"),
    url(../../fonts/GilroyBold/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 700;
  font-style: italic;
  src:
    url(../../fonts/GilroyBoldItalic/font.woff2) format("woff2"),
    url(../../fonts/GilroyBoldItalic/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 800;
  font-style: normal;
  src:
    url(../../fonts/GilroyExtraBold/font.woff2) format("woff2"),
    url(../../fonts/GilroyExtraBold/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 800;
  font-style: italic;
  src:
    url(../../fonts/GilroyExtraBoldItalic/font.woff2) format("woff2"),
    url(../../fonts/GilroyExtraBoldItalic/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 900;
  font-style: normal;
  src:
    url(../../fonts/GilroyBlack/font.woff2) format("woff2"),
    url(../../fonts/GilroyBlack/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 900;
  font-style: italic;
  src:
    url(../../fonts/GilroyBlackItalic/font.woff2) format("woff2"),
    url(../../fonts/GilroyBlackItalic/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 950;
  font-style: normal;
  src:
    url(../../fonts/GilroyHeavy/font.woff2) format("woff2"),
    url(../../fonts/GilroyHeavy/font.woff) format("woff");
}
@font-face {
  font-family: Gilroy;
  font-weight: 950;
  font-style: italic;
  src:
    url(../../fonts/GilroyHeavyItalic/font.woff2) format("woff2"),
    url(../../fonts/GilroyHeavyItalic/font.woff) format("woff");
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body,
img {
  height: auto;
}
body {
  min-height: 100%;
}
body.admin-bar .wrapper {
  padding-top: 32px;
}
@media (max-width: 767.98px) {
  body.admin-bar .wrapper {
    padding-top: 46px;
  }
}
.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}
.col-xs-grow {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: initial;
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
  width: auto;
}
.col-xs-shrink {
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  width: auto;
}
@media (min-width: 576px) {
  .col-sm-grow {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    width: auto;
  }
  .col-sm-shrink {
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
  }
}
@media (min-width: 768px) {
  .col-md-grow {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    width: auto;
  }
  .col-md-shrink {
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
  .col-lg-grow {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    width: auto;
  }
  .col-lg-shrink {
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
  }
}
@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1140px;
  }
  .col-xl-grow {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    width: auto;
  }
  .col-xl-shrink {
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
  }
}
@media (min-width: 1500px) {
  .col-xxl-grow {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    width: auto;
  }
  .col-xxl-shrink {
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
  }
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
:active,
:focus,
:hover {
  outline: 0 !important;
}
input,
label,
select,
textarea {
  font-family: inherit;
}
a,
button,
input {
  outline: 0;
}
img {
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
table td,
table th {
  vertical-align: top;
}
hr {
  margin: 15px auto;
  border: none;
  text-align: center;
}
hr:after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
}
p {
  margin: 0;
}
ol,
ul {
  margin: 0;
  padding: 0 0 0 15px;
}
ol li,
ul li {
  margin: 0;
  padding: 0 0 0 10px;
}
.module.module__copy.inner_page_heading_outer,
.module.module__copy.inner_page_highlight_text_outer {
  padding-bottom: 0;
}
a {
  transition: all 0.3s ease;
}
a :after,
a :before,
a div,
a img {
  text-decoration: none;
}
img.alignleft {
  float: left;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  float: right;
}
@media screen and (max-width: 575px) {
  img.aligncenter,
  img.alignleft,
  img.alignright {
    display: block;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.valign {
  display: block;
  vertical-align: middle;
}
.valign:after,
.valign &gt; * {
  display: inline-block;
  vertical-align: middle;
}
.valign &gt; * {
  white-space: normal;
}
.valign:after {
  content: "";
  height: 100%;
}
.flex-valign {
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-stretch {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.align-right {
  text-align: right;
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}
[data-toggle="class"].classed .classed__hidden,
[data-toggle="class"]:not(.classed) .classed__visible,
[data-toggle="collapse"].collapsed .collapsed__hidden,
[data-toggle="collapse"]:not(.collapsed) .collapsed__visible {
  display: none;
}
.module.module__copy.inner_page_heading_outer .inner_page_heading {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.225;
  color: #5c068c;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.module.module__copy.inner_page_highlight_text_outer
  .inner_page_highlight_text {
  margin-bottom: 2.6875rem;
}
.module.module__copy.inner_page_highlight_text_outer
  .inner_page_highlight_text
  p {
  font-size: 1.875rem;
  line-height: 1.1666666667;
  color: #000;
  text-align: center;
}
@media (max-width: 1279.98px) {
  .module.module__copy.inner_page_highlight_text_outer
    .inner_page_highlight_text
    p
    br {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .module.module__copy p {
    text-align: left;
  }
  .hide-mobile {
    display: none !important;
  }
}
body.section-privacy-policy .wrapper-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}
.single-product .module__copy p,
.tax-product_cat .module__copy p {
  margin-bottom: 1em;
}
body.single-post .history.case_study_outer + .module__copy,
body.single-product .history.case_study_outer + .module__copy,
body.tax-product_cat .history.case_study_outer + .module__copy {
  padding-top: 0;
  padding-bottom: 0;
}
body.single-case_study .module__posts h2,
body.single-post .module__posts .post-tile__inner__copy,
body.single-product .module__posts .post-tile__inner__copy,
body.tax-product_cat .module__posts .post-tile__inner__copy {
  padding-top: 1.375rem;
}
body.single-post .module__copy p,
body.single-product .module__copy p,
body.tax-product_cat .module__copy p {
  text-align: left;
}
@media (min-width: 768px) {
  body.single-post .module__featured__product,
  body.single-product .module__featured__product,
  body.tax-product_cat .module__featured__product {
    padding-bottom: 1.25rem;
  }
  body.single-post .module__posts h2,
  body.single-product .module__posts h2,
  body.tax-product_cat .module__posts h2 {
    font-size: 1.875rem;
  }
  body.single-post .module__posts .post-tile__inner__copy h2,
  body.single-product .module__posts .post-tile__inner__copy h2,
  body.tax-product_cat .module__posts .post-tile__inner__copy h2 {
    font-size: 1.25rem;
  }
  body.single-case_study .module__posts h2 {
    font-size: 1.875rem;
  }
  body.single-case_study .module__posts .post-tile__inner__copy h2 {
    font-size: 1.25rem;
  }
}
.branded-button-purple,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .block_linked_images_row__item--shop-now,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .block_product-categories__item--shop-now,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button {
  background-color: transparent;
  color: #fff !important;
  border: none;
  position: relative;
  z-index: 2;
  overflow: visible !important;
  font-weight: 700;
}
.branded-button-purple span,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .block_linked_images_row__item--shop-now
  span,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .block_product-categories__item--shop-now
  span,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button
  span {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.branded-button-purple:before,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .block_linked_images_row__item--shop-now:before,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .block_product-categories__item--shop-now:before,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button:before {
  content: " ";
  position: absolute;
  top: 0;
  left: calc(100% - 15px);
  bottom: 0;
  height: 100%;
  aspect-ratio: 1.3/1;
  background-image: url(../../images/purple-blade.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
}
.branded-button-purple:after,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .block_linked_images_row__item--shop-now:after,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .block_product-categories__item--shop-now:after,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button:after {
  content: " ";
  position: absolute;
  background-color: #5c068c;
  top: 0;
  width: calc(100% - 15px);
  left: 0;
  bottom: 0;
  z-index: 0;
}
.branded-button-purple.branded-button-purple--medium,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .branded-button-purple--medium.block_linked_images_row__item--shop-now,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .branded-button-purple--medium.block_product-categories__item--shop-now,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .branded-button-purple--medium.slide_block__button {
  padding: 6px 5px 6px 12px !important;
  font-size: 12px;
}
@media (min-width: 768px) {
  .branded-button-purple.branded-button-purple--medium,
  .custom_block.block__linked_images_row
    .block_linked_images_row__wrapper
    a.block_linked_images_row__item
    .block_linked_images_row__item--title
    .branded-button-purple--medium.block_linked_images_row__item--shop-now,
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item
    .block_product-categories__item--title
    .branded-button-purple--medium.block_product-categories__item--shop-now,
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slider-container
    .branded-button-purple--medium.slide_block__button {
    padding: 6px 0 6px 18px !important;
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .branded-button-purple.branded-button-purple--medium,
  .custom_block.block__linked_images_row
    .block_linked_images_row__wrapper
    a.block_linked_images_row__item
    .block_linked_images_row__item--title
    .branded-button-purple--medium.block_linked_images_row__item--shop-now,
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item
    .block_product-categories__item--title
    .branded-button-purple--medium.block_product-categories__item--shop-now,
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slider-container
    .branded-button-purple--medium.slide_block__button {
    padding: 6px 0 6px 18px !important;
    font-size: 26px;
  }
  .hide-desktop {
    display: none !important;
  }
}
.branded-button-purple.branded-button-purple--medium:hover,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .branded-button-purple--medium.block_linked_images_row__item--shop-now:hover,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .branded-button-purple--medium.block_product-categories__item--shop-now:hover,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .branded-button-purple--medium.slide_block__button:hover {
  text-decoration: none;
  color: #fff !important;
}
.page-section__title,
.sitehq-image-content-block .image-content__content_title {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .page-section__title,
  .sitehq-image-content-block .image-content__content_title {
    font-size: 32px;
  }
}
.page-section__title h2,
.page-section__title h3,
.page-section__title h4,
.sitehq-image-content-block .image-content__content_title h2,
.sitehq-image-content-block .image-content__content_title h3,
.sitehq-image-content-block .image-content__content_title h4 {
  font-size: 24px;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  text-align: center;
  color: #5e5d61 !important;
  font-weight: 700 !important;
}
@media (min-width: 768px) {
  .page-section__title h2,
  .page-section__title h3,
  .page-section__title h4,
  .sitehq-image-content-block .image-content__content_title h2,
  .sitehq-image-content-block .image-content__content_title h3,
  .sitehq-image-content-block .image-content__content_title h4 {
    font-size: 36px;
    margin-bottom: 36px !important;
  }
}
.brand-shadow,
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:hover,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:hover,
.site-footer-links,
.site-review-row,
.sitehq-fifty-fifty-responsive-content.add-shadow img,
.sitehq-post-carousel .custom_block .post-carousel .post-carousel__item {
  box-shadow: 0 17px 11px -10px rgba(0, 0, 0, 0.61);
  -webkit-box-shadow: 0 17px 11px -10px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 0 17px 11px -10px rgba(0, 0, 0, 0.61);
}
.force-wide-width {
  max-width: var(--wp--style--global--wide-size) !important;
}
.branded-image-radius,
.sitehq-image-content-block
  .image-content__image-overlay
  .image-content__image-overlay__large
  img,
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-img-single {
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.tooltip {
  margin-left: 10px;
  background-color: #5c068c;
  color: #fff;
  border-radius: 4px;
  z-index: 9999;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .hide-tablet {
    display: none !important;
  }
}
.typography h1,
.typography h2 {
  color: #5c068c;
}
.typography h2 {
  text-transform: uppercase;
  font-weight: 400;
}
.typography ol,
.typography p,
.typography ul {
  margin: 1.5rem 0;
  font-size: 1.125rem;
}
.typography .wp-caption,
.typography .wp-gallery,
.typography img {
  margin: 30px 0;
}
.typography .wp-caption.alignleft,
.typography .wp-gallery.alignleft,
.typography img.alignleft {
  margin-top: 0;
  margin-right: 30px;
}
.typography .wp-caption.alignright,
.typography .wp-gallery.alignright,
.typography img.alignright {
  margin-top: 0;
  margin-left: 30px;
}
.typography .wp-caption.aligncenter,
.typography .wp-gallery.aligncenter,
.typography img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.typography .wp-caption img,
.typography .wp-gallery img {
  margin: 0;
}
.typography .table-wrap {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: visible;
}
.typography &gt; :first-child {
  margin-top: 0;
}
.typography &gt; :last-child {
  margin-bottom: 0;
}
.typography--white * {
  color: #fff;
}
.typography-small h2 {
  font-size: 1.25rem;
  color: #333;
}
.typography-small p {
  font-size: 1rem;
}
.text-no-break {
  white-space: nowrap;
}
.form-control,
.nf-form-cont .city-container .nf-field-element input,
.nf-form-cont .email-container .nf-field-element input,
.nf-form-cont .firstname-container .nf-field-element input,
.nf-form-cont .lastname-container .nf-field-element input,
.nf-form-cont .listselect-container .nf-field-element select,
.nf-form-cont .phone-container .nf-field-element input,
.nf-form-cont .textarea-container .nf-field-element textarea,
.nf-form-cont .textbox-container .nf-field-element input {
  min-height: 2.5rem;
}
.form-control::-webkit-input-placeholder,
.nf-form-cont
  .city-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .email-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .firstname-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .lastname-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .listselect-container
  .nf-field-element
  select::-webkit-input-placeholder,
.nf-form-cont
  .phone-container
  .nf-field-element
  input::-webkit-input-placeholder,
.nf-form-cont
  .textarea-container
  .nf-field-element
  textarea::-webkit-input-placeholder,
.nf-form-cont
  .textbox-container
  .nf-field-element
  input::-webkit-input-placeholder {
  opacity: 1 !important;
}
.form-control:-ms-input-placeholder,
.nf-form-cont .city-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont .email-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .firstname-container
  .nf-field-element
  input:-ms-input-placeholder,
.nf-form-cont .lastname-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .listselect-container
  .nf-field-element
  select:-ms-input-placeholder,
.nf-form-cont .phone-container .nf-field-element input:-ms-input-placeholder,
.nf-form-cont
  .textarea-container
  .nf-field-element
  textarea:-ms-input-placeholder,
.nf-form-cont .textbox-container .nf-field-element input:-ms-input-placeholder {
  opacity: 1 !important;
}
.form-control::placeholder,
.nf-form-cont .city-container .nf-field-element input::placeholder,
.nf-form-cont .email-container .nf-field-element input::placeholder,
.nf-form-cont .firstname-container .nf-field-element input::placeholder,
.nf-form-cont .lastname-container .nf-field-element input::placeholder,
.nf-form-cont .listselect-container .nf-field-element select::placeholder,
.nf-form-cont .phone-container .nf-field-element input::placeholder,
.nf-form-cont .textarea-container .nf-field-element textarea::placeholder,
.nf-form-cont .textbox-container .nf-field-element input::placeholder {
  opacity: 1 !important;
}
.nf-form-cont .listselect-container .nf-field-element select,
select.form-control {
  padding: 0.75rem;
  min-height: 3.25rem;
  font-size: 0.875rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../images/icons/select.svg) center right 0.8125rem
    no-repeat #fff;
  background-size: 1.1875rem 0.875rem;
}
.nf-form-cont .listselect-container .nf-field-element select.form-control-md,
select.form-control.form-control-md {
  font-size: 0.875rem;
  min-height: 2.5rem;
  background-size: 0.9375rem;
}
.nf-form-cont .listselect-container .nf-field-element select.form-control-sm,
select.form-control.form-control-sm {
  padding: 0.3125rem 0.75rem;
  font-size: 0.75rem;
  background-size: 0.625rem 0.375rem;
  background-position: center right 0.5rem;
  min-height: 1.5rem;
}
.nf-form-cont .listradio-container .nf-field-element li {
  position: relative;
  padding: 0 0 0 35px !important;
}
.nf-form-cont .listradio-container .nf-field-element li &gt; [type="radio"] {
  position: absolute;
  opacity: 0;
}
.nf-form-cont
  .listradio-container
  .nf-field-element
  li
  &gt; [type="radio"]
  + label:before {
  content: "";
  display: block;
  position: relative;
  float: left;
  top: 4px;
  width: 20px;
  height: 20px;
  margin: 0 0 0 -35px;
  background: #fff;
  border: 5px solid #fff;
  border-radius: 20px;
  line-height: 1;
}
.nf-form-cont
  .listradio-container
  .nf-field-element
  li
  &gt; [type="radio"]:checked
  + label:before {
  background: #000;
}
.nf-form-cont .listcheckbox-container .nf-field-element li {
  position: relative;
  padding: 0 0 0 35px !important;
}
.nf-form-cont .checkbox-container .nf-field-element input,
.nf-form-cont .listcheckbox-container .nf-field-element li &gt; [type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.nf-form-cont .checkbox-container .nf-field-label label:before,
.nf-form-cont
  .listcheckbox-container
  .nf-field-element
  li
  &gt; [type="checkbox"]
  + label:before {
  content: "";
  display: block;
  position: relative;
  float: left;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0 0 0 -35px;
  background: #fff;
  border: 5px solid #fff;
  line-height: 1;
}
.nf-form-cont .checkbox-container .nf-field-label label.nf-checked-label:before,
.nf-form-cont
  .listcheckbox-container
  .nf-field-element
  li
  &gt; [type="checkbox"]:checked
  + label:before {
  background: #000;
}
.accordion__panel-heading {
  font-size: 1.125rem;
}
.accordion__panel-heading__link {
  display: block;
  padding: 0.625rem;
  border: 1px solid #b9b9bc;
  transition: all 0.3s ease;
}
.accordion__panel-heading__link:active,
.accordion__panel-heading__link:focus,
.accordion__panel-heading__link:hover {
  background: #fedd00;
  text-decoration: none;
  color: #fff;
}
.accordion__panel__inner {
  padding-top: 0.9375rem;
  padding-bottom: 1.875rem;
}
.alert {
  margin: 1.875rem 0;
  border-radius: 0;
}
.alert :first-child {
  margin-top: 0;
}
.alert :last-child {
  margin-bottom: 0;
}
.alert.alert-primary {
  background: #5c068c;
  color: #fff;
}
.alert.alert-secondary {
  background: #bcabcd;
  color: #212529;
}
.alert.alert-success {
  background: #85c645;
  color: #212529;
}
.alert.alert-info {
  background: #ded5e6;
  color: #212529;
}
.alert.alert-warning {
  background: #fedd00;
  color: #212529;
}
.alert.alert-danger {
  background: #b33735;
  color: #fff;
}
.alert.alert-light {
  background: #ededee;
  color: #212529;
}
.alert.alert-dark {
  background: #333;
  color: #fff;
}
.alert.alert-accent {
  background: #fedd00;
  color: #212529;
}
.wp-container-id {
  width: 100%;
}
.wp-container-id .entry-content {
  padding-left: 12px;
  padding-right: 12px;
}
.wp-container-id .entry-content .alignfull {
  max-width: none;
}
@media screen and (max-width: 988px) {
  .wp-container-id .entry-content .alignfull {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.wp-block-post-title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.225;
  color: #5c068c;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .wp-block-post-title {
    font-size: 4.2rem;
    max-width: 950px;
  }
}
.post-template .page-section__title,
.post-template .page-section__title h1,
.post-template .page-section__title h2,
.post-template .page-section__title h3,
.post-template .page-section__title h4,
.post-template .page-section__title h5,
.post-template .sitehq-image-content-block .image-content__content_title,
.post-template .sitehq-image-content-block .image-content__content_title h1,
.post-template .sitehq-image-content-block .image-content__content_title h2,
.post-template .sitehq-image-content-block .image-content__content_title h3,
.post-template .sitehq-image-content-block .image-content__content_title h4,
.post-template .sitehq-image-content-block .image-content__content_title h5,
.sitehq-image-content-block .post-template .image-content__content_title,
.sitehq-image-content-block .post-template .image-content__content_title h1,
.sitehq-image-content-block .post-template .image-content__content_title h2,
.sitehq-image-content-block .post-template .image-content__content_title h3,
.sitehq-image-content-block .post-template .image-content__content_title h4,
.sitehq-image-content-block .post-template .image-content__content_title h5 {
  color: #5c068c !important;
}
.blog-nav__dropdown {
  padding: 1.5625rem 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog-nav__dropdown__label {
  font-size: 0.875rem;
  font-weight: 800;
  margin: 0;
}
.breadcrumbs_outer {
  margin: 2.1875rem 0 2.1875rem 2.75rem;
}
@media (min-width: 768px) {
  .breadcrumbs_outer .container,
  .breadcrumbs_outer body.product-template-default .woocommerce-breadcrumb,
  body.product-template-default .breadcrumbs_outer .woocommerce-breadcrumb {
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .breadcrumbs_outer {
    margin: 0;
  }
}
.breadcrumbs_outer .breadcrumbs-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}
.breadcrumbs_outer .breadcrumbs-list__item {
  display: inline-block;
  padding-left: 0;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.breadcrumbs_outer .breadcrumbs-list__item:after {
  content: "/";
  padding: 0 0.3125rem;
}
.breadcrumbs_outer .breadcrumbs-list__item:last-of-type:after {
  content: none;
}
.breadcrumbs_outer .breadcrumbs-list__item .link {
  color: #000;
}
.breadcrumbs_outer .breadcrumbs {
  padding: 2.0625rem 0;
}
@media (max-width: 1499.98px) {
  #breadcrumbs {
    margin-top: 1.5rem;
  }
}
.inner_page_banner {
  position: relative;
}
.inner_page_banner .inner_banner {
  display: block;
  margin: 0 auto;
  height: 10.625rem;
  font-family: "object-fit:cover";
  object-fit: cover;
}
.inner_page_banner .banner_content {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.5625rem;
  max-width: 90rem;
  padding-left: 1.5625rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .inner_page_banner .inner_banner {
    height: 5.375rem;
  }
  .inner_page_banner .banner_content {
    position: static;
    padding: 1.625rem 0.9375rem 0;
  }
}
.inner_page_banner .banner_content .container,
.inner_page_banner
  .banner_content
  body.product-template-default
  .woocommerce-breadcrumb,
body.product-template-default
  .inner_page_banner
  .banner_content
  .woocommerce-breadcrumb {
  padding: 0;
}
.inner_page_banner .banner_content .breadcrumbs_outer {
  margin: 0 0 1.4375rem;
}
.inner_page_banner .banner_content h1.banner_heading {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 3.0625rem;
  color: #5c068c;
}
.btn,
.typography a.button {
  transition:
    border 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  font-weight: 800;
  padding: 0.625rem 1.5625rem;
  margin: 0.875rem 0;
  border: 0;
}
.btn.btn-primary,
.typography a.button {
  background: #5c068c;
  color: #fff;
}
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover,
.typography a.button:active,
.typography a.button:focus,
.typography a.button:hover {
  background: #7c08bd;
}
.btn.btn-secondary,
.typography a.btn-secondary.button {
  background: #bcabcd;
  color: #5c068c;
}
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:hover,
.typography a.btn-secondary.button:active,
.typography a.btn-secondary.button:focus,
.typography a.btn-secondary.button:hover {
  background: #d6cbe0;
}
.btn.btn-success,
.typography a.btn-success.button {
  background: #85c645;
  color: #5c068c;
}
.btn.btn-success:active,
.btn.btn-success:focus,
.btn.btn-success:hover,
.typography a.btn-success.button:active,
.typography a.btn-success.button:focus,
.typography a.btn-success.button:hover {
  background: #9fd26c;
}
.btn.btn-info,
.typography a.btn-info.button {
  background: #ded5e6;
  color: #5c068c;
}
.btn.btn-info:active,
.btn.btn-info:focus,
.btn.btn-info:hover,
.typography a.btn-info.button:active,
.typography a.btn-info.button:focus,
.typography a.btn-info.button:hover {
  background: #f7f5f9;
}
.btn.btn-warning,
.typography a.btn-warning.button {
  background: #fedd00;
  color: #5c068c;
}
.btn.btn-warning:active,
.btn.btn-warning:focus,
.btn.btn-warning:hover,
.typography a.btn-warning.button:active,
.typography a.btn-warning.button:focus,
.typography a.btn-warning.button:hover {
  background: #ffe432;
}
.btn.btn-danger,
.typography a.btn-danger.button {
  background: #b33735;
  color: #fff;
}
.btn.btn-danger:active,
.btn.btn-danger:focus,
.btn.btn-danger:hover,
.typography a.btn-danger.button:active,
.typography a.btn-danger.button:focus,
.typography a.btn-danger.button:hover {
  background: #cb5250;
}
.btn.btn-light,
.typography a.btn-light.button {
  background: #ededee;
  color: #5c068c;
}
.btn.btn-light:active,
.btn.btn-light:focus,
.btn.btn-light:hover,
.typography a.btn-light.button:active,
.typography a.btn-light.button:focus,
.typography a.btn-light.button:hover {
  background: #fff;
}
.btn.btn-dark,
.typography a.btn-dark.button {
  background: #333;
  color: #fff;
}
.btn.btn-dark:active,
.btn.btn-dark:focus,
.btn.btn-dark:hover,
.typography a.btn-dark.button:active,
.typography a.btn-dark.button:focus,
.typography a.btn-dark.button:hover {
  background: #4d4d4d;
}
.btn.btn-accent,
.typography a.btn-accent.button {
  background: #fedd00;
  color: #5c068c;
}
.btn.btn-accent:active,
.btn.btn-accent:focus,
.btn.btn-accent:hover,
.typography a.btn-accent.button:active,
.typography a.btn-accent.button:focus,
.typography a.btn-accent.button:hover {
  background: #ffe432;
}
.btn-lg {
  font-size: 1.25rem;
  padding: 0.625rem 3.75rem;
  border-radius: 0;
  transition: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  -webkit-mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  -webkit-mask-position:
    bottom right,
    top left;
  mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.btn-fullwidth {
  display: block;
  width: 100% !important;
}
.btn-light {
  background: #ededee;
  color: #666;
}
.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
.btn-white:active,
.btn-white:focus,
.btn-white:hover {
  background: #5c068c;
  color: #fff;
}
.btn-accent:active,
.btn-accent:focus,
.btn-accent:hover {
  background: #5c068c !important;
  color: #fff;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.typography a.button:active,
.typography a.button:focus,
.typography a.button:hover {
  background: #9b80b5 !important;
  color: #fff !important;
}
.choices__inner,
.choices__input {
  display: block;
  width: 100%;
  height: 40px;
  min-height: auto;
  padding: 0.375rem 0.75rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.16;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  border: 1px solid #e1e1e1;
  border-radius: 0.25rem;
}
.cookie-bar {
  position: fixed;
  left: auto;
  left: 0;
  bottom: 0;
  z-index: 1900000010;
  padding: 2.5rem 1.875rem;
  max-width: 30.3125rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-radius: 4px 4px 0 0;
  background: #fff;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  display: none;
}
.cookie-bar.show {
  display: block;
}
.cookie-bar--inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cookie-bar--inner p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.1571428571;
}
.cookie-bar--inner h3 {
  color: #5c068c;
  margin-bottom: 0.875rem;
}
.cookie-bar--wrapper {
  -webkit-flex: 0 0 65%;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  padding-right: 1.25rem;
}
@media (max-width: 767.98px) {
  .cookie-bar--wrapper {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cookie-bar .cookie-close-trigger {
  padding: 0 1.875rem;
  height: 46px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.125rem;
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  margin: 0;
}
@media (max-width: 767.98px) {
  .cookie-bar .cookie-close-trigger {
    margin-top: 1.875rem;
    min-width: 9.375rem;
    max-width: 9.375rem;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.site-footer-links {
  margin-bottom: 20px;
  background-color: #6c6e71;
  color: #6d6e71;
  font-weight: 700;
  padding: 16px 0;
}
.site-footer-links .site-footer-links__container {
  margin: 0 auto;
  gap: 16px;
  max-width: var(--wp--style--global--wide-size);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-footer-links .site-footer-links__container div.site-footer-links__item {
  display: block;
}
.site-footer-links
  .site-footer-links__container
  div.site-footer-links__item
  img {
  display: block;
  height: 52px !important;
  width: auto;
}
@media (max-width: 1023.98px) {
  .site-footer-links .site-footer-links__container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-footer-links
    .site-footer-links__container
    div.site-footer-links__item.hide_on_mobile {
    display: none;
  }
}
.site-review-row {
  position: relative;
  background-color: #eee;
  color: #6d6e71;
  font-weight: 700;
  z-index: 2;
  padding: 12px 0;
}
.mega-menu-backup,
.mega-menu-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}
.site-review-row .site-review-row__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.site-review-row .site-review-row__container .site-review-row__item {
  width: 33.3333333333%;
  display: block;
  text-align: center;
}
.site-review-row .site-review-row__container .site-review-row__item img {
  display: block;
  height: auto;
  max-height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.site-review-row
  .site-review-row__container
  .site-review-row__item.hide_on_mobile {
  display: none;
}
@media (min-width: 768px) {
  .site-review-row .site-review-row__container {
    gap: 0;
  }
  .site-review-row .site-review-row__container .site-review-row__item {
    width: 20%;
    border-right: 2px solid #6d6e71;
  }
  .site-review-row
    .site-review-row__container
    .site-review-row__item:last-child {
    border-right: none;
  }
  .site-review-row
    .site-review-row__container
    .site-review-row__item.hide_on_mobile {
    display: block;
  }
}
body.show_mega-menu-mobile {
  overflow-y: hidden;
}
body.show_mega-menu-mobile .mega-menu-wrapper {
  display: block;
}
body.show_mega-menu-mobile .mega-menu-mobile {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body.show_mega-menu .mega-menu-backup,
body.show_mega-menu-mobile .mega-menu {
  display: none;
}
body.show_mega-menu {
  overflow-y: hidden;
}
body.show_mega-menu .mega-menu-wrapper {
  display: block;
}
body.show_mega-menu .mega-menu-mobile {
  display: none !important;
}
body .mega-menu-mobile {
  display: none;
}
@media (max-width: 1023.98px) {
  body .mega-menu-mobile {
    display: block;
  }
}
body .mega-menu-trigger .fa-close,
body.show_mega-menu .mega-menu-trigger .fa-bars,
body.show_mega-menu-mobile .mega-menu-trigger .fa-bars {
  display: none;
}
body .mega-menu-trigger {
  outline: 0;
  text-decoration: none;
}
body .mega-menu-trigger:focus {
  outline: 0;
}
body.show_mega-menu,
body.show_mega-menu-mobile {
  max-height: 100vh;
  overflow: hidden;
}
body.show_mega-menu .mega-menu-trigger,
body.show_mega-menu .mega-menu-trigger:focus,
body.show_mega-menu-mobile .mega-menu-trigger,
body.show_mega-menu-mobile .mega-menu-trigger:focus {
  outline: 0;
}
body.show_mega-menu .mega-menu-trigger .fa-close,
body.show_mega-menu-mobile .mega-menu-trigger .fa-close {
  display: block;
}
.mega-menu-backup {
  z-index: 120;
  background-color: #fff;
  border-right: 2px solid #000;
}
@media (max-width: 1637px) {
  .mega-menu-backup {
    display: none;
  }
}
.mega-menu-backup ul {
  width: 94px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
  padding-left: 0 !important;
}
.mega-menu-backup ul li {
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
}
.mega-menu-backup ul li a {
  display: block;
  padding: 8px 24px;
}
.mega-menu-backup ul li a img {
  width: 40px;
  height: 40px;
}
@media (min-width: 1024px) {
  .mega-menu-backup ul li a img {
    width: 46px;
    height: 46px;
  }
}
.mega-menu-backup .mega-menu-heading {
  font-size: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 47px;
  border-bottom: 0 solid #000;
  background-color: #5c068c;
  color: #fff;
}
.mega-menu-wrapper {
  display: none;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1900000009;
}
.mega-menu-wrapper .mega-menu-first-col {
  overflow-x: hidden;
  overflow-y: auto;
  width: 320px;
  background-color: #fff;
}
@media (max-width: 1023.98px) {
  .mega-menu-wrapper .mega-menu-first-col .mega-menu-heading {
    display: none;
  }
}
.mega-menu-wrapper .mega-menu-first-col .mega-menu-item-button {
  transition: all 0.1s ease-in-out;
}
.mega-menu-wrapper .mega-menu-first-col .mega-menu-item-button .mega-menu-img {
  width: 40px;
  height: 40px;
  height: auto;
  transition: all 0.1s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper
    .mega-menu-first-col
    .mega-menu-item-button
    .mega-menu-img {
    width: 46px;
    height: 46px;
  }
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button
  .mega-menu-img.is-active {
  opacity: 0;
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button
  .mega-menu-img.not-active,
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button:hover
  .is-active {
  opacity: 1;
}
.mega-menu-wrapper .mega-menu-first-col .mega-menu-item-button:hover {
  color: #5c068c;
  background-color: #f5f5f5;
  text-decoration: none;
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button:hover
  .not-active {
  opacity: 0;
}
.mega-menu-wrapper .mega-menu-first-col .mega-menu-item-button.active {
  background-color: #f5f5f5;
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button.active
  .is-active {
  opacity: 1;
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button.active
  .not-active {
  opacity: 0;
}
.mega-menu-wrapper .desktop-back-button:hover,
.site-header-wrapper .header-top .header-top__link:hover,
.variations_form .swatch-colour:hover {
  opacity: 0.8;
}
.mega-menu-wrapper
  .mega-menu-first-col
  .mega-menu-item-button
  .mega-menu-item-button-img-wrapper {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper
    .mega-menu-first-col
    .mega-menu-item-button
    .mega-menu-item-button-img-wrapper {
    width: 46px;
    height: 46px;
    min-width: 46px !important;
    min-height: 46px !important;
  }
  .mega-menu-wrapper .mega-menu-col {
    width: 320px;
  }
}
.mega-menu-wrapper .mega-menu-col {
  width: 320px;
  max-width: 90vw;
}
.mega-menu-wrapper .desktop-back-button {
  display: none;
  background-color: transparent;
  border: 0;
  font-size: 24px;
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.mega-menu-wrapper .visible-when-engaged,
.mega-menu-wrapper.menu-engaged .menu-item-title {
  display: none;
}
.mega-menu-wrapper.menu-engaged .mega-menu-first-col {
  width: 94px;
}
@media (max-width: 1023.98px) {
  .mega-menu-wrapper.menu-engaged .mega-menu-first-col {
    width: 0;
  }
}
.mega-menu-wrapper.menu-engaged .visible-when-engaged {
  display: inline;
  color: #fff;
}
.mega-menu-wrapper.menu-engaged .desktop-back-button {
  display: inline;
}
.mega-menu-wrapper.menu-engaged .mega-menu-heading.mega-menu-heading-first {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mega-menu-wrapper .mega-menu,
.mega-menu-wrapper .mega-menu-mobile {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
}
.mega-menu-wrapper .mega-menu-mobile .mega-menu-second-col {
  display: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mega-menu-wrapper .mega-menu-mobile.second_engaged .mega-menu-second-col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.mega-menu-wrapper .mega-menu-mobile.second_engaged .mega-menu-first-col {
  display: none;
}
.mega-menu-wrapper .mega-menu-mobile .mega-menu-item-button-mobile {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 18px 24px;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #78787a;
  border: 0;
  background-color: transparent;
  max-height: 61px;
  cursor: pointer;
  text-align: left;
}
.mega-menu-wrapper .mega-menu-mobile .mega-menu-item-button-mobile:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}
.mega-menu-wrapper .mega-menu-mobile .mega-menu-item-button-mobile.active {
  background-color: #f5f5f5;
}
.mega-menu-wrapper .mega-menu-mobile .mega-menu-first-col {
  border-top: 5px solid #78787a;
}
.mega-menu-wrapper .mega-menu-heading-mobile {
  min-height: 50px;
  padding: 0 24px;
  background-color: #f5f5f5;
  color: #5c068c;
  font-size: 15.6px;
  font-weight: 700;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid #78787a;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper .mega-menu-heading-mobile {
    display: none;
  }
}
.mega-menu-wrapper .mega-menu-heading-mobile button {
  border: 0 solid transparent;
  color: #5c068c;
  padding: 0;
  background-color: transparent;
  font-weight: 700;
}
.mega-menu-wrapper .mega-menu-heading-mobile .mega-menu-heading {
  font-weight: 400;
}
.mega-menu-wrapper .mega-menu-heading {
  min-height: 50px;
  padding: 0 24px;
  background-color: #fff;
  color: #495057;
  font-size: 1.2em;
  font-weight: 700;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.mega-menu-wrapper .mega-menu-heading img {
  display: none;
}
@media (max-width: 1023.98px) {
  .mega-menu-wrapper .mega-menu-heading .d-only {
    display: none;
  }
}
.mega-menu-wrapper .mega-menu-heading .m-only {
  display: inline;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper .mega-menu-heading .m-only {
    display: none;
  }
  .mega-menu-wrapper .mega-menu-heading {
    min-height: 47px;
    padding: 0 24px;
    background-color: #5c068c;
    border-bottom: 0 solid #000;
    color: #fff;
    font-weight: 700;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .mega-menu-wrapper .mega-menu-heading .mega-menu-header-img {
    display: block;
    width: 66px;
    height: auto;
  }
}
.mega-menu-wrapper .megu-menu-items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
  padding-left: 0 !important;
}
.mega-menu-wrapper .megu-menu-items li {
  padding: 0;
  margin: 0;
}
.mega-menu-wrapper .mega-menu-item.trade-logo-wrapper {
  display: none;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  border-top: 1px solid #dee2e6;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper .mega-menu-item.trade-logo-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.mega-menu-wrapper .mega-menu-item.trade-logo-wrapper a {
  display: block;
  width: 100%;
  padding: 18px 24px;
}
.mega-menu-wrapper .mega-menu-item.trade-logo-wrapper img {
  width: 60%;
  height: auto;
}
.mega-menu-wrapper .mega-menu-item.trade-logo-wrapper-mobile a {
  display: block;
  width: 100%;
  padding: 18px 24px;
}
.mega-menu-wrapper .mega-menu-item.trade-logo-wrapper-mobile img {
  width: 60%;
  height: auto;
}
.mega-menu-wrapper .mega-menu-item a,
.mega-menu-wrapper .mega-menu-item button {
  color: #78787a;
  font-weight: 600;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 24px;
  gap: 8px;
  text-transform: uppercase;
  text-align: left;
  margin: 0 !important;
}
.mega-menu-wrapper .mega-menu-first-col-option {
  display: none;
}
.mega-menu-wrapper .mega-menu-second-col .mega-menu-wrapper-two {
  transition: width 0.3s;
  background-color: #fff;
  min-height: 100vh;
}
@media (max-width: 1023.98px) {
  .mega-menu-wrapper
    .mega-menu-second-col
    .mega-menu-wrapper-two.second_tier_enganged
    .mega-menu-col-second {
    width: 0;
    display: none;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .mega-menu-wrapper .mega-menu-second-col .mega-menu-wrapper-two {
    border-left: 2px solid #000;
    background-color: #f8f9fa;
  }
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul {
  border: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none;
  padding-left: none;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li {
  padding-left: 0;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button {
  text-align: left !important;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
  background-color: transparent;
  position: relative;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt:hover,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button:hover {
  background-color: #fff;
  text-decoration: none;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt:hover::after,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button:hover::after {
  display: none;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt::after,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button::after {
  content: "";
  position: absolute;
  right: 24px;
  left: 24px;
  bottom: 1px;
  height: 1px;
  background-color: #78787a;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt.active,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button.active {
  background-color: #fff;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a.button-link-alt.active::after,
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  button.active::after {
  display: none !important;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  gap: 8px;
  text-transform: uppercase;
}
.mega-menu-wrapper
  .mega-menu-second-col
  .mega-menu-wrapper-two
  .mega-menu_second_iter_ul
  li
  a:hover {
  background-color: #f5f5f5;
}
.mega-menu-wrapper .mega-menu-wrapper-three {
  background-color: #fff;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .mega-menu-wrapper .mega-menu-wrapper-three {
    border-left: 2px solid #000;
  }
}
.mega-menu-wrapper .mega-menu-wrapper-three .mega-menu_third_iter_ul {
  border: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none;
  padding-left: none;
}
.mega-menu-wrapper .mega-menu-wrapper-three .mega-menu_third_iter_ul li a {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
  text-transform: uppercase;
  color: #78787a;
  position: relative;
}
.mega-menu-wrapper
  .mega-menu-wrapper-three
  .mega-menu_third_iter_ul
  li
  a:hover {
  background-color: #f5f5f5;
}
.mega-menu-wrapper
  .mega-menu-wrapper-three
  .mega-menu_third_iter_ul
  li
  a:hover:after {
  display: none;
}
.mega-menu-wrapper
  .mega-menu-wrapper-three
  .mega-menu_third_iter_ul
  li
  a:after {
  content: "";
  position: absolute;
  right: 24px;
  left: 24px;
  bottom: 1px;
  height: 1px;
  background-color: #78787a;
}
.mega-menu-wrapper
  .mega-menu-wrapper-three
  .mega-menu_third_iter_ul
  li
  a
  .active::after {
  display: none !important;
}
.mega-menu-wrapper .mega-menu-wrapper-three,
.mega-menu-wrapper .mega-menu-wrapper-two {
  font-size: 13px;
  text-transform: uppercase;
  min-width: 320px;
}
.mega-menu-wrapper .mega-menu-wrapper-three li,
.mega-menu-wrapper .mega-menu-wrapper-two li {
  padding-left: 0;
}
.mega-menu-wrapper .mega-menu-wrapper-three li a,
.mega-menu-wrapper .mega-menu-wrapper-three li button,
.mega-menu-wrapper .mega-menu-wrapper-two li a,
.mega-menu-wrapper .mega-menu-wrapper-two li button {
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 0;
  background-color: transparent;
  color: #78787a;
  font-weight: 600;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.mega-menu-wrapper .mega-menu-wrapper-three li a.brand-color,
.mega-menu-wrapper .mega-menu-wrapper-three li button.brand-color,
.mega-menu-wrapper .mega-menu-wrapper-two li a.brand-color,
.mega-menu-wrapper .mega-menu-wrapper-two li button.brand-color {
  color: #5c068c;
  padding: 12px 24px !important;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.mega-menu-wrapper .mega-menu-wrapper-three li a.brand-color:hover,
.mega-menu-wrapper .mega-menu-wrapper-three li button.brand-color:hover,
.mega-menu-wrapper .mega-menu-wrapper-two li a.brand-color:hover,
.mega-menu-wrapper .mega-menu-wrapper-two li button.brand-color:hover {
  text-decoration: underline;
  background-color: transparent !important;
}
.mega-menu-wrapper .mega-menu-wrapper-three li a.brand-color:after,
.mega-menu-wrapper .mega-menu-wrapper-three li button.brand-color:after,
.mega-menu-wrapper .mega-menu-wrapper-two li a.brand-color:after,
.mega-menu-wrapper .mega-menu-wrapper-two li button.brand-color:after {
  display: none !important;
}
.mega-menu-wrapper .mega-menu-wrapper-three li:nth-last-child(2) a:after,
.mega-menu-wrapper .mega-menu-wrapper-three li:nth-last-child(2) button:after,
.mega-menu-wrapper .mega-menu-wrapper-two li:nth-last-child(2) a:after,
.mega-menu-wrapper .mega-menu-wrapper-two li:nth-last-child(2) button:after,
.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar-attribute-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.modal {
  padding: 3rem 3.25rem;
}
.modal-body,
.modal-footer,
.modal-header {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 0;
}
.modal--branch-selector {
  text-align: center;
  overflow: hidden;
}
.modal--branch-selector:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modal--branch-selector .modal-dialog {
  max-width: 21.875rem;
  margin: 1.75rem auto;
}
.modal--branch-selector h2,
.page-template-block-editor .entry-content ol,
.page-template-block-editor .entry-content p,
.page-template-block-editor .entry-content ul,
.wp-block-post-content ol,
.wp-block-post-content p,
.wp-block-post-content ul {
  margin-bottom: 1.5rem;
}
@media (max-width: 575.98px) {
  .modal {
    padding: 0;
  }
  .modal--branch-selector .modal-dialog {
    max-width: 90%;
  }
}
.modal--branch-selector h2,
.modal--branch-selector p {
  width: 100%;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.modal--branch-selector h2 {
  font-size: 1.25rem;
  color: #5c068c;
}
.modal--branch-selector p {
  font-size: 1.125rem;
}
.modal--branch-selector select {
  max-width: 15.25rem;
  margin: 0 auto;
  height: auto;
  padding-right: 2.5rem;
}
.modal--branch-selector select :focus-within,
.modal--branch-selector select:active,
.modal--branch-selector select:focus {
  box-shadow: none;
  outline: 0;
}
.modal--branch-selector .btn,
.modal--branch-selector .typography a.button,
.typography .modal--branch-selector a.button {
  max-width: 10.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1.125rem;
  width: 100%;
}
.pagination ul {
  border-top: 1px solid #ccc;
  padding: 2.1875rem 0;
  list-style: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .pagination ul {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.pagination ul li {
  display: block;
  margin: 0.3125rem;
  padding: 0;
}
.pagination ul li a,
.pagination ul li span.current {
  color: #000;
  height: 2.5rem;
  width: 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
  font-size: 0.875rem;
}
.pagination ul li span.current {
  background: #ded5e6;
  font-weight: 800;
}
.pagination ul li a:active,
.pagination ul li a:focus,
.pagination ul li a:hover {
  text-decoration: none;
  background: #ded5e6;
}
.pagination ul li a i {
  font-size: 1.25rem;
}
.pagination ul .fa-angle-left,
.pagination ul .fa-angle-right {
  width: 10px;
  height: 16px;
}
.nav-pills {
  padding: 1.875rem 0 2.8125rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.nav-pills .nav-item {
  display: block;
  min-width: 5.3125rem;
  text-align: center;
  padding: 0;
  margin-right: 0.625rem;
}
.nav-pills .nav-item:first-of-type {
  min-width: 5.9375rem;
}
.nav-pills .nav-item .nav-link {
  display: block;
  min-height: 2.5rem;
  line-height: 1;
  background: #ededee;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  color: #666;
  font-weight: 800;
}
.nav-pills .nav-item .nav-link.active,
.nav-pills .nav-item .nav-link:active,
.nav-pills .nav-item .nav-link:focus,
.nav-pills .nav-item .nav-link:hover {
  background: #5c068c;
  color: #fedd00;
}
.post-tile {
  margin-bottom: 1.875rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-tile__inner {
  display: block;
  width: 100%;
  background: #ededee;
  text-decoration: none;
}
.post-tile__inner__image {
  overflow: hidden;
}
@media (min-width: 1280px) {
  .post-tile__inner__image {
    height: 18.75rem;
  }
}
.post-tile__inner__image img {
  width: 100%;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  height: 300px;
  font-family: "object-fit:cover";
  object-fit: cover;
}
@media (min-width: 1280px) {
  .post-tile__inner__image img {
    height: 100%;
    font-family: "object-fit:cover;object-position:center center";
    object-fit: cover;
    object-position: center center;
  }
}
.post-tile__inner__image .no-image {
  display: block;
  height: 18.75rem;
  background: url(../../images/logo.svg) center center no-repeat #fff;
  background-size: 100% auto;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .post-tile__inner__image .no-image {
    height: 14.0625rem;
  }
}
@media (min-width: 1024px) {
  .post-tile__inner__image .no-image {
    height: 12.5rem;
  }
}
@media (min-width: 1280px) {
  .post-tile__inner__image .no-image {
    height: 18.75rem;
  }
}
.post-tile__inner__copy {
  padding: 1.875rem;
  color: #333;
  transition: background 0.3s ease;
}
.post-tile__inner__copy .post-date {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.post-tile__inner:active,
.post-tile__inner:focus,
.post-tile__inner:hover {
  background: #e2dbea;
  text-decoration: none;
}
.post-tile__inner:active .post-tile__inner__image img,
.post-tile__inner:focus .post-tile__inner__image img,
.post-tile__inner:hover .post-tile__inner__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.shq-shipping .shipping-container {
  margin: 30px 0;
}
.shq-shipping .shipping-btn-group .shipping-btn--icon,
.shq-shipping .shipping-card--header svg {
  margin-right: 15px;
}
.shq-shipping .shipping-container:first-child {
  margin-top: 0;
}
.shq-shipping .shipping-card {
  border-radius: 4px;
  overflow: hidden;
}
.shq-shipping .shipping-card--header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background: #5c068c;
  padding: 20px 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.shq-shipping .shipping-card--body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.shq-shipping .shipping-card--footer {
  color: #fff;
  background: #5c068c;
  padding: 20px 0;
}
.shq-shipping button {
  border: none;
  background: 0 0;
  -webkit-appearance: button;
}
.shq-shipping .shipping-btn {
  cursor: pointer;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  background: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid #e1e1e1;
  transition:
    color 0.1s ease,
    background-color 0.1s ease,
    border-color 0.1s ease;
}
.shq-shipping .shipping-btn path {
  fill: #aeadad;
}
.shq-shipping .shipping-btn:hover {
  border-color: #9c0aee;
  color: #5c068c;
}
.shq-shipping .shipping-btn:hover path {
  fill: #5c068c;
}
.shq-shipping .shipping-btn--active,
.shq-shipping .shipping-btn--active:hover {
  color: #fff;
  background-color: #5c068c;
  opacity: 1;
  border-color: #ded5e6;
}
.shq-shipping .shipping-btn--active path,
.shq-shipping .shipping-btn--active:hover path {
  fill: #fff;
}
.shq-shipping .shipping-btn-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.shq-shipping .shipping-btn-group .shipping-btn {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 18px;
  border-radius: 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.shq-shipping .shipping-btn-group .shipping-btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.shq-shipping .shipping-btn-group .shipping-btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.shq-shipping .shipping-btn-group .shipping-btn:not(:first-child) {
  border-left-width: 0;
}
.shq-shipping .shipping-btn-group .shipping-btn:not(:first-child):hover {
  border-left-width: 2px;
  margin-left: -2px;
}
.shq-shipping .custom-shipping-method,
.shq-shipping .shipping-method {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  padding: 0;
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition:
    color 0.1s ease,
    background-color 0.1s ease,
    border-color 0.1s ease;
}
.shq-shipping .custom-shipping-method:last-child,
.shq-shipping .shipping-method:last-child {
  margin-bottom: 0;
}
.shq-shipping .custom-shipping-method:hover,
.shq-shipping .shipping-method:hover {
  color: #5c068c;
  border-color: #9c0aee;
}
.shq-shipping
  .shipping-method--active.custom-shipping-method
  .shipping-method-checkbox,
.shq-shipping
  .shipping-method--active.shipping-method
  .shipping-method-checkbox {
  border: 0 !important;
}
.shq-shipping
  .shipping-method--active.custom-shipping-method
  .shipping-method-checkbox
  svg,
.shq-shipping
  .shipping-method--active.shipping-method
  .shipping-method-checkbox
  svg {
  opacity: 1;
}
.shq-shipping .custom-shipping-method .got-questions,
.shq-shipping .shipping-method .got-questions {
  padding: 20px 10px;
  text-align: center;
  background-color: #f8f8f8;
}
.shq-shipping .shipping-method--disabled.custom-shipping-method,
.shq-shipping .shipping-method--disabled.shipping-method,
.shq-shipping .shipping-method--disabled.shipping-method:hover {
  color: #aeadad;
  background: #fff;
  border-color: #ccc;
  cursor: default;
}
.shq-shipping
  .shipping-method--disabled.custom-shipping-method
  .shipping-method-checkbox,
.shq-shipping
  .shipping-method--disabled.shipping-method
  .shipping-method-checkbox,
.shq-shipping
  .shipping-method--disabled.shipping-method:hover
  .shipping-method-checkbox {
  border-color: #ccc;
}
.shq-shipping
  .shipping-method--disabled.custom-shipping-method
  .shipping-method-note,
.shq-shipping .shipping-method--disabled.shipping-method .shipping-method-note,
.shq-shipping
  .shipping-method--disabled.shipping-method:hover
  .shipping-method-note {
  font-style: italic;
}
.shq-shipping .shipping-method--header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 18px 12px;
}
.shq-shipping .custom-shipping-method .shipping-method-checkbox,
.shq-shipping .shipping-method .shipping-method-checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18px;
  height: 19px;
  min-width: 18px;
  min-height: 19px;
  border: 2px solid #5c068c;
  border-radius: 50%;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 12px;
  transition:
    background-color 0.1s ease,
    border-color 0.1s ease;
}
.products .slick-list,
.shq-shipping .custom-shipping-method .shipping-center-section,
.shq-shipping .shipping-method .shipping-center-section {
  width: 100%;
}
.shq-shipping .custom-shipping-method .shipping-method-checkbox svg,
.shq-shipping .shipping-method .shipping-method-checkbox svg {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.shq-shipping .custom-shipping-method .shipping-method-title,
.shq-shipping .shipping-method .shipping-method-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 10px;
  transition: color 0.1s ease;
}
.shq-shipping .custom-shipping-method .shipping-method-price,
.shq-shipping .shipping-method .shipping-method-price {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: auto;
  transition: color 0.1s ease;
}
.shq-shipping .shipping-method--camera-message .shipping-method--details {
  padding-left: 0;
}
.shq-shipping .shipping-method-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.shq-shipping .shipping-method-list--item .shipping-method-list-body,
.shq-shipping .shipping-method-list--item .shipping-method-list-title {
  font-size: 16px;
  color: #666;
  display: inline;
  margin-top: 12px;
}
.shq-shipping .shipping-method-list--item {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 10px;
}
.shq-shipping .shipping-method-list--item:last-child {
  margin-right: 0;
}
.shq-shipping .shipping-method-branch {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.shq-shipping .shipping-method-branch--address {
  margin-right: 20px;
}
.shq-shipping .shipping-method-branch--address .shipping-pickup-branch-name {
  font-weight: 700;
}
.shq-shipping .shipping-method-branch--phone {
  color: #5c068c;
  font-weight: 700;
}
.shq-shipping .shipping-method-branch--camera {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.shq-shipping .shipping-method-branch--camera-icon {
  margin-right: 10px;
}
.table {
  border: 1px solid #333;
}
.table thead th {
  background: #333;
  color: #fff;
}
.module__accordion__intro :last-child {
  padding-bottom: 1.875rem;
}
.module__copy {
  padding-top: 0.25rem;
}
.module__back-social__icon__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 0.0625rem solid #ccc;
  padding-top: 1.625rem;
}
@media (max-width: 1023.98px) {
  .module__back-social__icon__inner {
    padding-top: 2.0625rem;
  }
}
.module.featured_products .fea_product__list .fea___view_btn a,
.module__back-social__icon__inner--left a {
  display: block;
  padding: 12px 30px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  -webkit-mask-position:
    bottom right,
    top left;
  text-transform: capitalize;
  -webkit-mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
}
.module__back-social__icon__inner--left a {
  background: #5c068c;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  min-width: 133.73px;
  text-align: left;
}
.module__back-social__icon__inner--right {
  justify-self: flex-end;
}
.module__back-social__icon__inner--right a {
  display: inline-block;
  margin-right: 1.38875rem;
}
@media (min-width: 768px) {
  .module__branches-form.module {
    padding-top: 4.875rem;
  }
}
@media (max-width: 767.98px) {
  .module__branches-form--left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 1.75rem;
  }
  .module__branches-form--right {
    padding: 0;
  }
}
.module__branches-form--branches h3 {
  color: #5c068c;
  font-size: 1.875rem;
  line-height: 1.2066666667;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  font-weight: 700;
}
.module__branches-form--branches .content-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.module__branches-form--branches .content-box p {
  color: #333;
}
.module__branches-form--branches .content-box img {
  margin-right: 0.9375rem;
  max-width: 1.5rem;
}
.module__branches-form--branches .content-box.map-box img {
  margin-left: 0.625rem;
  max-width: 1.125rem;
}
.module__branches-form--branches .content-box.map-box a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.module__branches-form--branches--lists {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0-1.25rem;
}
.module__branches-form--branches--lists__list {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1.25rem;
}
@media (max-width: 767.98px) {
  .module__branches-form--branches--lists {
    margin: 0;
  }
  .module__branches-form--branches--lists__list {
    padding: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.module__branches-form--branches--lists__list--wrapper {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.375rem;
  margin-bottom: 1.375rem;
  min-height: 12.5625rem;
}
.module__branches-form--branches--lists__list--wrapper h3 {
  font-weight: 800;
}
.module__branches-form--head-office {
  margin-bottom: 3.375rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #ccc;
  width: 46.5%;
}
@media (max-width: 1023.98px) {
  .module__branches-form--head-office {
    width: 100%;
    padding-bottom: 0.625rem;
    margin-bottom: 1.375rem;
  }
}
.module__branches-form--wrapper {
  background: #f8f8f8;
  padding: 0 1.875rem 2.5rem;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .module__branches-form--branches--lists__list--wrapper {
    min-height: auto;
  }
  .module__branches-form--wrapper {
    padding-bottom: 0 1.25rem 1.75rem;
  }
}
.module__branches-form--wrapper h3 {
  background: #5c068c;
  color: #fedd00;
  font-size: 1.875rem;
  line-height: 1.2066666667;
  padding: 1.25rem 0 1.0625rem;
  border-radius: 4px 4px 0 0;
  margin: 0-1.875rem 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
.module__branches-form--wrapper .copy {
  text-align: center;
  max-width: 34.0625rem;
  margin: 1.375rem auto 1.5625rem;
}
.module__branches-form--wrapper .copy p {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .module__branches-form--wrapper .copy p {
    font-size: 1.125rem;
  }
}
.module__branches-form--wrapper .nf-row {
  margin: 0-0.625rem;
}
.module__branches-form--wrapper .nf-row .nf-cell {
  padding: 0 0.625rem;
}
.module__branches-form--wrapper .nf-row .nf-cell .nf-field-container {
  margin-bottom: 1.875rem;
}
@media (max-width: 767.98px) {
  .module__branches-form--wrapper .nf-row .nf-cell .nf-field-container {
    margin-bottom: 1.0625rem;
  }
}
.module__branches-form--wrapper
  .nf-row
  .nf-cell
  .nf-field-container
  .checkbox-wrap
  .nf-field-element {
  border: 1px solid #ccc;
}
.module__branches-form--wrapper
  .nf-row
  .nf-cell
  .nf-field-container
  .nf-field-label
  label {
  font-size: 0.875rem;
  font-weight: 400;
}
.module__branches-form--wrapper .nf-row .nf-cell .nf-field-container textarea {
  min-height: 11.5625rem;
}
.module__branches-form--wrapper
  .nf-row
  .nf-cell
  .nf-field-container
  .submit-wrap {
  text-align: center;
}
.module__branches-form--wrapper .nf-row .nf-cell .nf-field-container .btn,
.module__branches-form--wrapper
  .nf-row
  .nf-cell
  .nf-field-container
  .typography
  a.button,
.typography
  .module__branches-form--wrapper
  .nf-row
  .nf-cell
  .nf-field-container
  a.button {
  max-width: 13.9375rem;
  width: 100%;
  border-bottom-right-radius: 40px 40px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  height: 2.9375rem;
  font-size: 1.125rem;
}
.module__cta {
  margin: -0.3125rem 0 2.75rem;
}
.module__cta--wrapper {
  max-width: 56.25rem;
  background: url(../../images/subscribe-form.svg) center bottom 0 no-repeat
    #5c068c;
  background-size: cover;
  padding: 1.125rem 1.625rem 0.75rem;
  text-align: center;
  margin: 0 auto;
}
.module__copy .container,
.module__copy body.product-template-default .woocommerce-breadcrumb,
.module__copy-image .container,
.module__copy-image body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .module__copy .woocommerce-breadcrumb,
body.product-template-default .module__copy-image .woocommerce-breadcrumb {
  max-width: 58.125rem;
}
.module__cta--wrapper h2 {
  color: #fff;
  font-size: 1.5625rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  .module__cta--wrapper {
    padding: 1.125rem 1rem 1.875rem;
  }
  .module__cta--wrapper h2 {
    margin-bottom: 1.375rem;
  }
}
.module__cta--wrapper h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.module__cta--wrapper a {
  font-size: 2.5625rem;
  line-height: 1.2251219512;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.15625rem;
}
@media (min-width: 576px) {
  .module__cta--wrapper {
    background-size: auto 304%;
    background-position: top 46% left;
  }
}
.module.module__copy.case_study_outer {
  padding-bottom: 0;
}
.module.module__copy.case_study_outer h3 {
  margin-bottom: 2.625rem;
}
.module.module__copy.case_study_outer .image {
  margin-bottom: 1.4375rem;
}
.module {
  padding: 1.875rem 0;
}
.privacy-policy .wrapper &gt; .container,
.privacy-policy
  body.product-template-default
  .wrapper
  &gt; .woocommerce-breadcrumb,
body.product-template-default
  .privacy-policy
  .wrapper
  &gt; .woocommerce-breadcrumb {
  margin: 60px auto;
}
.privacy-policy .wrapper &gt; .container h2,
.privacy-policy
  body.product-template-default
  .wrapper
  &gt; .woocommerce-breadcrumb
  h2,
body.product-template-default
  .privacy-policy
  .wrapper
  &gt; .woocommerce-breadcrumb
  h2 {
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.privacy-policy .wrapper &gt; .container p,
.privacy-policy
  body.product-template-default
  .wrapper
  &gt; .woocommerce-breadcrumb
  p,
body.product-template-default
  .privacy-policy
  .wrapper
  &gt; .woocommerce-breadcrumb
  p {
  margin-bottom: 0.9375rem;
  line-height: 1.5;
}
.woocommerce-account .woocommerce .woocommerce-form-wrapper {
  margin: 3.75rem auto;
}
.woocommerce-account .woocommerce .container .woocommerce-MyAccount-content,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-content,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-content {
  padding-bottom: 2.1875rem;
}
.typography .woocommerce-edit-account .woocommerce-EditAccountForm a.button,
.woocommerce-edit-account .woocommerce-EditAccountForm .btn-primary,
.woocommerce-edit-account .woocommerce-EditAccountForm .typography a.button {
  padding: 0.96875rem;
}
.typography .woocommerce-page.woocommerce-cart .wc-proceed-to-checkout a.button,
.woocommerce-page.woocommerce-cart .wc-proceed-to-checkout .typography a.button,
.woocommerce-page.woocommerce-cart .wc-proceed-to-checkout a.btn {
  transition: all 0.3s ease-in-out;
}
.typography
  .woocommerce-page.woocommerce-cart
  .wc-proceed-to-checkout
  a.button:hover,
.woocommerce-page.woocommerce-cart
  .wc-proceed-to-checkout
  .typography
  a.button:hover,
.woocommerce-page.woocommerce-cart .wc-proceed-to-checkout a.btn:hover {
  background: #5c068c !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  body.section-about-us .module__copy-image {
    padding-top: 2.75rem;
  }
  body.section-about-us .module__copy-image .module__copy-image__image {
    margin-bottom: 4.625rem;
  }
}
.module__copy-image__image {
  margin: 0 0 1.25rem;
}
.module__copy-image__copy {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.module__copy-image__copy__inner {
  width: 100%;
}
@media (min-width: 768px) {
  .module__copy-image__image {
    margin-bottom: 0;
  }
  .module__copy-image__image img {
    height: 100%;
    font-family: "object-fit:cover;object-position:center center";
    object-fit: cover;
    object-position: center center;
  }
  .module__copy-image__copy__inner {
    padding: 1.25rem 0.625rem;
  }
}
.module__copy {
  background: #fff;
  text-align: center;
}
.history p,
body.single-case_study .module__copy p {
  text-align: left;
}
.module__copy h1 {
  margin-bottom: 1.6875rem;
}
.module__copy p {
  font-size: 1.125rem;
  line-height: 1.1666666667;
  margin: 0;
}
.module__copy .intro {
  font-size: 1.875rem;
  line-height: 1.16;
  margin-bottom: 1.875rem;
}
body.single-case_study .history.case_study_outer + .module__copy {
  padding: 0;
}
.module__form {
  background: #ededee;
}
.module__form.module {
  padding-top: 5.25rem;
  padding-bottom: 6.75rem;
}
.module__form h2 {
  color: #5c068c;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .module__form.module {
    padding-top: 3rem;
    padding-bottom: 6.5625rem;
  }
  .module__form h2 {
    margin-bottom: 3.75rem;
  }
}
.module__form--wrapper {
  max-width: 41.875rem;
  margin: 0 auto;
}
.module__form .form-wrapper {
  margin-top: 3.75rem;
}
@media (max-width: 767.98px) {
  .module__form .form-wrapper {
    margin-bottom: 1.25rem;
  }
}
.module__form .form-wrapper .nf-field-container {
  margin-bottom: 1.6875rem;
}
.module__form .form-wrapper .nf-field-container label {
  font-weight: 400;
  font-size: 14px;
}
.module__form .form-wrapper .nf-field-container label .ninja-forms-req-symbol {
  color: #000;
}
.module__form .form-wrapper .nf-field-container input,
.module__form .form-wrapper .nf-field-container textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.module__form
  .form-wrapper
  .nf-field-container
  input::-webkit-input-placeholder,
.module__form
  .form-wrapper
  .nf-field-container
  textarea::-webkit-input-placeholder {
  color: #000 !important;
  opacity: 1;
}
.module__form .form-wrapper .nf-field-container input:-ms-input-placeholder,
.module__form .form-wrapper .nf-field-container textarea:-ms-input-placeholder {
  color: #000 !important;
  opacity: 1;
}
.module__form .form-wrapper .nf-field-container input::placeholder,
.module__form .form-wrapper .nf-field-container textarea::placeholder {
  color: #000 !important;
  opacity: 1;
}
.module__form .form-wrapper .nf-field-container .textarea-wrap {
  padding-top: 0.4375rem;
}
@media (max-width: 767.98px) {
  .module__form .form-wrapper .nf-field-container {
    margin-bottom: 1.375rem;
  }
  .module__form .form-wrapper .nf-field-container .textarea-wrap {
    padding-top: 0;
  }
}
.module__form .form-wrapper .nf-field-container textarea {
  min-height: 10.3125rem !important;
}
.module__form .form-wrapper .nf-field-container .field-wrap.submit-wrap {
  text-align: center;
}
.module__form .form-wrapper .nf-field-container .field-wrap.submit-wrap button {
  min-width: 15.3125rem;
  font-size: 1.25rem;
  padding: 0.75rem 3.75rem;
  border-radius: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  -webkit-mask-size:
    60px 100%,
    calc(100% - 57px) 100%;
  mask-size:
    60px 100%,
    calc(100% - 57px) 100%;
  -webkit-mask-position:
    bottom right,
    top left;
  mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #5c068c;
  color: #fff;
  border: none;
}
.module__form
  .form-wrapper
  .nf-field-container
  .field-wrap.submit-wrap
  button:hover {
  background: #9b80b5 !important;
}
.heroSlider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.heroSlider .slide_block {
  position: relative;
}
.heroSlider .slide_block__image {
  padding-top: 37.6388888889%;
  height: 0;
  position: relative;
}
.heroSlider .slide_block__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  font-family: "object-fit:cover", "object-fit:cover";
  object-fit: cover;
  margin: 0;
}
.heroSlider .slide_block img.visible-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .heroSlider .slide_block__image {
    padding-top: 116.5333333333%;
  }
  .heroSlider .slide_block img.hidden-mobile {
    display: none;
  }
  .heroSlider .slide_block img.visible-mobile {
    display: block;
  }
}
.heroSlider .slide_block .container,
.heroSlider .slide_block body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .heroSlider .slide_block .woocommerce-breadcrumb {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #5c068c;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 38.6875rem;
  padding-left: 8.4375rem;
  width: 38.6875rem;
  height: 40.375rem;
  z-index: 1;
}
.heroSlider .slide_block .container:before,
.heroSlider
  .slide_block
  body.product-template-default
  .woocommerce-breadcrumb:before,
body.product-template-default
  .heroSlider
  .slide_block
  .woocommerce-breadcrumb:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: auto;
  background: url(../../images/yellow_star.png) 3.625rem 0 no-repeat;
  background-size: 91% 100%;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  z-index: -1;
}
.heroSlider .slide_block .container h1,
.heroSlider
  .slide_block
  body.product-template-default
  .woocommerce-breadcrumb
  h1,
body.product-template-default
  .heroSlider
  .slide_block
  .woocommerce-breadcrumb
  h1 {
  text-transform: uppercase;
  font-size: 4.5625rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .heroSlider .slide_block .container,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb {
    padding-left: 10.3125rem;
  }
  .heroSlider .slide_block .container:before,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb:before,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb:before {
    background-size: 82%;
    background-position: -10rem 0.5rem;
  }
  .heroSlider .slide_block .container h1,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb
    h1,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb
    h1 {
    font-size: 3.1875rem;
  }
}
@media (max-width: 767.98px) {
  .heroSlider .slide_block .container,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb {
    padding: 0 0.9375rem;
  }
  .heroSlider .slide_block .container:before,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb:before,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb:before {
    background-size: 394px 410px;
    background-position: -9.3125rem -0.75rem;
    top: 0;
    height: 100%;
    max-width: 100%;
    width: 100%;
  }
  .heroSlider .slide_block .container h1,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb
    h1,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb
    h1 {
    margin-top: -15.75rem;
  }
}
@media (max-width: 575.98px) {
  .heroSlider .slide_block .container h1 img,
  .heroSlider
    .slide_block
    body.product-template-default
    .woocommerce-breadcrumb
    h1
    img,
  body.product-template-default
    .heroSlider
    .slide_block
    .woocommerce-breadcrumb
    h1
    img {
    width: 50%;
  }
}
.heroSlider .slide_block .container .typography a.button,
.heroSlider .slide_block .container a.btn,
.heroSlider
  .slide_block
  body.product-template-default
  .woocommerce-breadcrumb
  .typography
  a.button,
.heroSlider
  .slide_block
  body.product-template-default
  .woocommerce-breadcrumb
  a.btn,
.typography .heroSlider .slide_block .container a.button,
.typography
  .heroSlider
  .slide_block
  body.product-template-default
  .woocommerce-breadcrumb
  a.button,
body.product-template-default
  .heroSlider
  .slide_block
  .woocommerce-breadcrumb
  .typography
  a.button,
body.product-template-default
  .heroSlider
  .slide_block
  .woocommerce-breadcrumb
  a.btn,
body.product-template-default
  .typography
  .heroSlider
  .slide_block
  .woocommerce-breadcrumb
  a.button {
  max-width: 15.326875rem;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  background: url(../../images/button_bg.svg) left top no-repeat;
  background-size: cover;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.51875rem;
  margin-bottom: 0;
  padding: 0.75rem 0;
}
.heroSlider .slick-dots {
  bottom: 23px;
  margin: 0;
}
.heroSlider .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.875rem 0 0;
}
.heroSlider .slick-dots li button {
  width: 100%;
  height: 100%;
}
.heroSlider .slick-dots li button::before {
  color: #fff;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}
.heroSlider .slick-dots li.slick-active button::before {
  color: #fedd00;
  background: #fedd00;
}
.heroSlider .slick-arrow {
  width: 2.1875rem;
  height: 3.1875rem;
  z-index: 9;
}
.heroSlider .slick-arrow::before {
  display: none;
}
.heroSlider .slick-arrow.slick-prev {
  left: 1.25rem;
  background: url(../../images/left_arrow.svg) no-repeat;
  background-size: contain;
}
.heroSlider .slick-arrow.slick-next {
  right: 1.25rem;
  background: url(../../images/right_arrow.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .heroSlider .slick-arrow {
    top: auto;
    bottom: 0;
    width: 1.625rem;
    height: 2.3125rem;
  }
}
.banner_bottom {
  background: #5c068c;
}
@media (max-width: 1023.98px) {
  .banner_bottom {
    padding: 1.25rem 0 1.75rem;
  }
}
.banner_bottom ul {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1279.98px) {
  .banner_bottom ul {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .banner_bottom ul {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.banner_bottom ul li {
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .banner_bottom ul li {
    width: 50%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .banner_bottom ul li.poweredBy_logo {
    width: 100%;
  }
}
@media (max-width: 1279.98px) {
  .banner_bottom ul li {
    -webkit-flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.banner_bottom ul li img {
  margin: 1.09375rem 0;
}
.banner_bottom ul li span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
  color: #ded5e6;
  margin-left: 1rem;
}
@media (max-width: 767.98px) {
  .banner_bottom ul li {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .banner_bottom ul li span {
    max-width: 6.875rem;
  }
  .banner_bottom ul li span br {
    display: none;
  }
}
.module__hero {
  position: relative;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}
.module__hero__image {
  width: 100%;
  height: 100%;
}
.module__hero__image img {
  height: 100%;
  font-family: "object-fit:cover;object-position:center center";
  object-fit: cover;
  object-position: center center;
}
.module__hero__copy {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.history {
  padding-bottom: 3.0625rem;
  padding-top: 3.1875rem;
}
.history h3 {
  font-size: 1.875rem;
  line-height: 1.1666666667;
  color: #5c068c;
  margin-bottom: 1.5625rem;
  font-weight: 400;
}
@media (max-width: 1023.98px) {
  .history h3 {
    font-size: 1.375rem;
  }
}
@media (max-width: 1279.98px) {
  .history p br {
    display: none;
  }
}
.history .image {
  margin-top: 1.125rem;
}
.history .image img {
  margin: 0;
}
.module__iframe-calc .container,
.module__iframe-calc body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .module__iframe-calc .woocommerce-breadcrumb {
  max-width: 58.75rem;
}
.module__iframe-calc--wrapper {
  margin-top: 1.875rem;
}
.module__iframe-calc--wrapper .embed-container {
  padding-top: 46.8888888889%;
  position: relative;
  height: 0;
}
@media (max-width: 767.98px) {
  .module__iframe-calc--wrapper {
    margin-top: 1.4375rem;
  }
  .module__iframe-calc--wrapper .embed-container {
    padding-top: 122.3188405797%;
  }
}
.module__iframe-calc--wrapper .embed-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.module.event_products {
  padding: 2.4375rem 0 3.75rem;
}
.module.event_products h3 {
  font-size: 1.875rem;
  line-height: 1.1666666667;
  color: #5c068c;
  margin-bottom: 1.875rem;
  font-weight: 400;
}
.module.event_products .product__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023.98px) {
  .module.event_products .product__list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .module.event_products .product__list {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.module.event_products .product__list .product__box {
  max-width: 325px;
  text-align: center;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.module.event_products .product__list .product__box .image {
  min-height: 165px;
}
.module.event_products .product__list .product__box .image img {
  min-width: 325px;
  font-family: "object-fit:contain";
  object-fit: contain;
}
@media (max-width: 1023.98px) {
  .module.event_products .product__list .product__box {
    width: 10.25rem;
    max-width: 10.25rem;
    margin: 0 0 0.625rem;
  }
  .module.event_products .product__list .product__box .image {
    min-height: auto;
  }
  .module.event_products .product__list .product__box .image img {
    height: 5.25rem;
    min-width: auto;
  }
}
.module.event_products .product__list .product__box .product__title {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
  color: #5c068c;
  margin-top: 1.5rem;
}
@media (max-width: 1023.98px) {
  .module.event_products .product__list .product__box .product__title {
    font-size: 1.125rem;
    line-height: 1.1666666667;
    min-height: 2.8125rem;
    margin-top: 0.9375rem;
  }
}
.module.featured_products .fea_product__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -50px;
}
.module.featured_products .fea_product__list .fea_product__box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 0 50px;
}
@media (max-width: 1023.98px) {
  .module.featured_products .fea_product__list {
    margin: 0;
  }
  .module.featured_products .fea_product__list .fea_product__box {
    width: 100%;
    padding: 0;
    margin-bottom: 4.205rem;
  }
}
.module.featured_products .fea_product__list .fea_product__image {
  width: 292px;
}
@media (max-width: 1279.98px) {
  .module.featured_products .fea_product__list .fea_product__box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .module.featured_products .fea_product__list .fea_product__image {
    width: 100%;
    margin: 0 auto;
  }
}
.module.featured_products .fea_product__list .fea_product__content {
  width: calc(100% - 325px);
  padding-top: 1.5625rem;
  padding-left: 2.0625rem;
}
@media (max-width: 1279.98px) {
  .module.featured_products .fea_product__list .fea_product__content {
    width: 100%;
    padding-left: 0;
    padding-top: 4.8875rem;
  }
}
.module.featured_products .fea_product__list .fea__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  color: #5c068c;
}
.module.featured_products .fea_product__list .fea__price {
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: #79569c;
}
.module.featured_products .fea_product__list .fea__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  margin-top: 12px;
}
.module.featured_products .fea_product__list .fea___view_btn {
  margin-top: 30px;
}
.module.featured_products .fea_product__list .fea___view_btn a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  color: #fff;
  background: #5c068c;
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  max-width: 207.73px;
}
.module__link-tiles {
  background: #ededee;
  padding: 5rem 0 3.75rem;
}
.module__link-tiles h2 {
  color: #5c068c;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .module__link-tiles {
    padding: 4rem 0 2.75rem;
  }
  .module__link-tiles h2 {
    max-width: 15rem;
    margin: 0 auto 1.375rem;
  }
}
.module__link-tiles
  .product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper,
.module__link-tiles .row,
.product-category-row
  .custom_block.block__product_categories_row
  .module__link-tiles
  .block_product-categories__wrapper {
  margin: 0-0.625rem;
}
.module__link-tiles .card {
  color: inherit;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  padding: 0 0.625rem;
  background: 0 0;
  margin-bottom: 1.25rem;
}
.module__link-tiles .card:hover .card-img-top {
  -webkit-filter: none;
  filter: none;
}
.module__link-tiles .card:hover .overlay {
  opacity: 0;
}
.module__link-tiles .card .media-container {
  position: relative;
  height: 0;
  padding-top: 68%;
}
.module__link-tiles .card .media-container h3 {
  color: #fff;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  z-index: 3;
}
.module__link-tiles .card .media-container .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  background: #bcabcd;
  mix-blend-mode: multiply;
}
.module__link-tiles .card-img-top {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  font-family: "object-fit:cover";
  object-fit: cover;
  z-index: 1;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.module__link-tiles .card:active,
.module__link-tiles .card:focus,
.module__link-tiles .card:hover {
  text-decoration: none;
}
.module__link-tiles .card:active .card-body,
.module__link-tiles .card:active .card-img-top,
.module__link-tiles .card:focus .card-body,
.module__link-tiles .card:focus .card-img-top,
.module__link-tiles .card:hover .card-body,
.module__link-tiles .card:hover .card-img-top {
  border-color: #5c068c;
}
.logo-sec {
  background: #fff;
  padding: 2.5rem 0 3.058125rem;
}
@media (max-width: 767.98px) {
  .logo-sec {
    padding: 3.4375rem 15px 3.3125rem;
  }
}
.logo-sec h3 {
  font-size: 1.875rem;
  line-height: 1.2133333333;
  color: #5c068c;
  text-transform: uppercase;
  font-weight: 400;
}
.logo-sec ul {
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.logo-sec ul li {
  list-style-type: none;
  padding: 0 10px;
  -webkit-flex: 0 0 16.667%;
  -ms-flex: 0 0 16.667%;
  flex: 0 0 16.667%;
  max-width: 16.667%;
  text-align: center;
}
.logo-sec ul li a {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .logo-sec ul li {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.6875rem;
  }
  .logo-sec ul li a.nrl_logo {
    max-width: 10.1875rem;
    max-height: 5.625rem;
  }
  .logo-sec ul li a.mulitplex {
    max-width: 10.4375rem;
    max-height: 5.8125rem;
  }
  .logo-sec ul li a.mcg {
    max-width: 7.125rem;
    max-height: 6.0625rem;
  }
  .logo-sec ul li a.afl {
    max-width: 9.4375rem;
    max-height: 5.4375rem;
  }
}
.logo-sec ul li img {
  margin: 2.441875rem 0;
  height: auto;
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .logo-sec ul li img {
    margin: 0;
  }
}
.logo-sec ul li img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.module__featured__product--inner {
  padding: 1rem 7.5rem;
  background: #fbfbfc;
}
.module__featured__product--inner h3 {
  font-size: 1.875rem;
  line-height: 1.1666666667;
  color: #5c068c;
  margin-bottom: 0;
  font-weight: 400;
}
.module__featured__product--box {
  margin-right: 2.21875rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.module__featured__product--box__inner {
  margin: 1.5625rem 2.21875rem 1.5625rem 0;
  -webkit-flex: 0 0 calc(50% - 35.5px);
  -ms-flex: 0 0 calc(50% - 35.5px);
  flex: 0 0 calc(50% - 35.5px);
  max-width: calc(50% - 35.5px);
}
@media (max-width: 1023.98px) {
  .module__featured__product .container,
  .module__featured__product
    body.product-template-default
    .woocommerce-breadcrumb,
  body.product-template-default
    .module__featured__product
    .woocommerce-breadcrumb {
    background: #fbfbfc;
  }
  .module__featured__product--inner {
    padding: 3.5rem 0 3.1875rem;
  }
  .module__featured__product--box__inner {
    margin-right: 0.625rem;
    -webkit-flex: 0 0 calc(50% - 10px);
    -ms-flex: 0 0 calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.module__featured__product--box__inner:last-child {
  margin-right: 0;
}
.module__featured__product--box__inner .__image img {
  width: 100%;
  font-family: "object-fit:cover";
  object-fit: cover;
}
.module__featured__product--box__inner .__content {
  padding: 1.1475rem 1.224375rem 1.683125rem;
  background: #ededee;
}
@media (max-width: 1023.98px) {
  .module__featured__product--box__inner .__content {
    padding: 0.575rem 0.653125rem 1.609375rem 0.64rem;
  }
}
.module__featured__product--box__inner .__product_name {
  margin-bottom: 0.459375rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #333;
}
.module__featured__product--box__inner .product__price {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #666;
}
.module__page-header {
  background-position: center top;
  background-size: auto 8.125rem;
  padding-top: 8.125rem;
  padding-bottom: 2.1875rem;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1024px) {
  .module__page-header {
    background-color: #ededee;
    background-size: cover;
    padding: 2.8125rem 0;
  }
}
@media (min-width: 1280px) {
  .module__page-header {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 1279.98px) {
  .module__page-header {
    background-size: cover;
    padding-top: 2.1875rem;
  }
}
@media (max-width: 1023.98px) {
  .module__page-header {
    background-size: contain;
    padding-top: 34%;
  }
}
@media (max-width: 767.98px) {
  .module__page-header {
    background-size: contain;
    padding-top: 34%;
  }
}
@media (min-width: 1024px) {
  .module__page-header:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0.1) 100%);
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 5;
    right: 50%;
    width: 80%;
  }
  .module__page-header .typography .breadcrumbs-list {
    padding-top: 0;
  }
}
.module__page-header .container,
.module__page-header body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .module__page-header .woocommerce-breadcrumb {
  position: relative;
  z-index: 10;
}
.module__page-header .typography .breadcrumbs-list {
  margin-bottom: 0;
}
.module__posts__header {
  text-align: center;
  margin-bottom: 1.875rem;
}
.search_result_outer h1.inner_page_heading {
  font-size: 2.5rem;
  line-height: 1.225;
  color: #5c068c;
  margin-bottom: 1.75rem;
  font-weight: 800;
}
.search_result_outer .search_bar {
  background: #5c068c;
  padding: 1.875rem 1.9375rem;
  text-align: left;
  margin-bottom: 2.0625rem;
}
.search_result_outer .search_bar form {
  width: 20.75rem;
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  height: 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
}
@media (max-width: 1023.98px) {
  .search_result_outer h1.inner_page_heading {
    font-size: 2.4375rem;
  }
  .search_result_outer .search_bar {
    padding: 1.1875rem 0.9375rem;
  }
  .search_result_outer .search_bar form {
    width: 19.6875rem;
  }
}
.search_result_outer .search_bar form input[type="text"] {
  width: calc(100% - 97px);
  height: 100%;
  margin-right: -0.25rem;
  border: 0;
  border-radius: 0.25rem 0 0 0.25rem;
  padding: 0.9375rem;
}
.search_result_outer .search_bar form input[type="submit"] {
  width: 6.0625rem;
  background: #fedd00;
  border-radius: 0 0.25rem 0.25rem 0;
  border: 0;
  height: 100%;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1875;
  color: #5c068c;
}
.search_result_outer .tabs {
  width: 100%;
}
.search_result_outer .tabs #tabs-nav {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  overflow: auto;
}
.search_result_outer .tabs #tabs-nav li {
  float: left;
  font-weight: 700;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.25rem;
  cursor: pointer;
  background: #ededee;
}
.search_result_outer .tabs #tabs-nav li.active,
.search_result_outer .tabs #tabs-nav li:hover {
  background-color: #5c068c;
}
.search_result_outer .tabs #tabs-nav li.active a,
.search_result_outer .tabs #tabs-nav li:hover a {
  color: #fedd00;
}
.search_result_outer .tabs #tabs-nav li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  text-align: center;
  color: #666;
}
@media (max-width: 767.98px) {
  .search_result_outer .tabs #tabs-nav li {
    padding: 0.5rem 0.9375rem;
  }
  .search_result_outer .tabs #tabs-nav li a {
    font-size: 0.875rem;
  }
}
.search_result_outer .tabs .tab-content .search__list {
  padding: 0;
  list-style-type: none;
  margin-bottom: -1.25rem;
}
.search_result_outer .tabs .tab-content .search__list__item {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 0.0625rem solid #ccc;
}
.search_result_outer .tabs .tab-content .search__list__item__wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
}
@media (max-width: 767.98px) {
  .search_result_outer .tabs .tab-content .search__list__item__wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.search_result_outer .tabs .tab-content .search__list__item .pro__img {
  -webkit-flex-basis: 120px;
  -ms-flex-preferred-size: 120px;
  flex-basis: 120px;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 40px;
}
@media (max-width: 767.98px) {
  .search_result_outer .tabs .tab-content .search__list__item .pro__img {
    -webkit-flex-basis: 45px;
    -ms-flex-preferred-size: 45px;
    flex-basis: 45px;
    margin-right: 15px;
  }
}
.search_result_outer .tabs .tab-content .search__list__item .pro__name {
  -webkit-flex-basis: 400px;
  -ms-flex-preferred-size: 400px;
  flex-basis: 400px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  text-align: left;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #333;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .search_result_outer .tabs .tab-content .search__list__item .pro__name {
    -webkit-flex-basis: calc(100% - 60px);
    -ms-flex-preferred-size: calc(100% - 60px);
    flex-basis: calc(100% - 60px);
  }
}
.search_result_outer .tabs .tab-content .search__list__item .pro__price {
  -webkit-flex-basis: 270px;
  -ms-flex-preferred-size: 270px;
  flex-basis: 270px;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-left: 70px;
  text-align: right;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #666;
}
@media (max-width: 767.98px) {
  .search_result_outer .tabs .tab-content .search__list__item .pro__price {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.search_result_outer .tabs .pagination ul {
  border: none;
}
.shop_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 90rem;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .shop_container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.shop_container .sidebar-attribute-container {
  margin: 0 4.0625rem 0 2.5rem;
  max-width: 14.375rem;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 0 0 243px;
  -ms-flex: 0 0 243px;
  flex: 0 0 243px;
}
.shop_container .sidebar-attribute-container #woocommerce_layered_nav-2,
.shop_container .sidebar-attribute-container #woocommerce_layered_nav-3 {
  margin-top: 0;
}
@media (max-width: 1023.98px) {
  .shop_container .sidebar-attribute-container {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    padding: 20px;
  }
}
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  a:after,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  a:before,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  span:after,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  span:before,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li:after,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li:before {
  display: none;
}
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  a,
.shop_container
  .sidebar-attribute-container
  .woocommerce-widget-layered-nav-list
  li.chosen
  span {
  font-weight: 700;
}
.shop_container .widget h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1.3125rem;
  position: relative;
  cursor: pointer;
}
.shop_container .widget h2:after {
  position: absolute;
  content: "-";
  right: 0;
  height: 1.375rem;
  width: 1.375rem;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0.125rem;
  cursor: pointer;
}
.shop_container .widget h2.active:after {
  content: "+";
}
.shop_container .widget ul {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2.1875rem !important;
}
@media (max-width: 1023.98px) {
  .shop_container .widget h2:after {
    content: "+";
  }
  .shop_container .widget h2.active:after {
    content: "-";
  }
  .shop_container .widget ul {
    display: none;
  }
}
.shop_container .widget ul li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.shop_container .widget ul li.current-cat ul.children,
.shop_container .widget ul li.current-cat-parent .children {
  display: block;
}
.shop_container .widget ul li.current-cat-parent &gt; a,
.shop_container .widget ul li.current-cat-parent &gt; a + .count,
.shop_container .widget ul li.current-cat &gt; a,
.shop_container .widget ul li.current-cat &gt; a + .count {
  font-weight: 700;
}
.shop_container .widget ul li ul.children {
  width: 100%;
  padding: 11px 0 11px 11px !important;
  margin-top: 10px;
  border-bottom: 0 !important;
}
.shop_container .widget ul li ul.children li {
  margin-bottom: 0.9375rem;
}
.shop_container .widget ul li ul.children li:last-child,
.shop_container .widget ul li:last-child {
  margin-bottom: 0;
}
.shop_container #sidebar ul:first-child,
.shop_container #sidebar ul[role="navigation"] li.pagenav,
.shop_container #sidebar ul[role="navigation"] li:nth-of-type(2),
.shop_container .widget ul:first-child,
.shop_container .widget ul[role="navigation"] li.pagenav,
.shop_container .widget ul[role="navigation"] li:nth-of-type(2) {
  display: none;
}
.shop_container .widget ul li a {
  color: #000;
  font-size: 0.875rem;
  -webkit-flex: 0 0 80%;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
}
.shop_container #sidebar,
.shop_container .widget {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin: 1.9375rem 0 1.375rem;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .shop_container #sidebar,
  .shop_container .widget {
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0;
  }
}
.shop_container #sidebar ul,
.shop_container .widget ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.shop_container #sidebar ul[role="navigation"] li,
.shop_container .widget ul[role="navigation"] li {
  padding: 0;
  margin: 0;
}
.shop_container #sidebar ul[role="navigation"] li.categories,
.shop_container .widget ul[role="navigation"] li.categories {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2.1875rem;
  margin-bottom: 1.375rem;
}
.shop_container #sidebar ul[role="navigation"] li.categories h2,
.shop_container .widget ul[role="navigation"] li.categories h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1.3125rem;
  position: relative;
  cursor: pointer;
}
.shop_container #sidebar ul[role="navigation"] li.categories h2:after,
.shop_container .widget ul[role="navigation"] li.categories h2:after {
  position: absolute;
  content: "-";
  right: 0;
  height: 1.375rem;
  width: 1.375rem;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0.125rem;
  cursor: pointer;
}
.shop_container #sidebar ul[role="navigation"] li.categories ul li,
.shop_container .widget ul[role="navigation"] li.categories ul li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.shop_container #sidebar ul[role="navigation"] li.categories ul li:last-child,
.shop_container .widget ul[role="navigation"] li.categories ul li:last-child {
  margin-bottom: 0;
}
.shop_container #sidebar ul[role="navigation"] li.categories ul li a,
.shop_container .widget ul[role="navigation"] li.categories ul li a {
  color: #000;
}
.shop_container #primary {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  padding: 1.6875rem 2.625rem 2.125rem 0;
  max-width: calc(100% - 230px);
}
@media (max-width: 1023.98px) {
  .shop_container #primary {
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
.shop_container #primary main#main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.shop_container #primary .woocommerce-breadcrumb,
.shop_container #primary .woocommerce-notices-wrapper,
.shop_container #primary .woocommerce-products-header,
.shop_container #primary .woocommerce-result-count {
  display: none;
}
.shop_container #primary ul.products {
  border-top: 0.0625rem solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
  padding-top: 1.5rem;
  margin-top: 1.1875rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.shop_container #primary ul.products li.product {
  margin: 0 2.21875rem 2.125rem 0;
  text-align: center;
  width: 100%;
  max-width: calc(33.33% - 24px);
}
.shop_container #primary ul.products li.product a {
  background: #ededee;
  padding-bottom: 1.875rem;
  position: relative;
  display: block;
  height: 100%;
}
.shop_container #primary ul.products li.product a:hover {
  background: #e2dbea;
}
.shop_container #primary ul.products li.product:nth-of-type(3n) {
  margin-right: 0;
}
@media (max-width: 1279.98px) {
  .shop_container #primary ul.products li.product {
    max-width: calc(33.33% - 24px);
  }
  .shop_container #primary ul.products li.product:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (max-width: 1023.98px) {
  .shop_container #primary ul.products li.product:nth-of-type(3n) {
    margin-right: 0;
  }
  .shop_container #primary ul.products li.product {
    margin: 10px 0 30px 10px;
    max-width: calc(33.33% - 10px);
  }
}
@media (max-width: 767.98px) {
  .shop_container #primary ul.products li.product {
    max-width: 48%;
  }
}
@media (max-width: 575.98px) {
  .shop_container #primary ul.products li.product {
    max-width: 100%;
  }
}
.shop_container #primary ul.products li.product img {
  margin: 0 auto;
  font-family: "object-fit:cover";
  object-fit: cover;
}
@media (max-width: 1023.98px) {
  .shop_container #primary ul.products li.product img {
    max-height: 100%;
    max-width: 100%;
  }
}
.shop_container
  #primary
  ul.products
  li.product
  .woocommerce-loop-product__title {
  padding: 1.15625rem 1.21875rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
  word-break: break-word;
}
@media (min-width: 768px) {
  .shop_container
    #primary
    ul.products
    li.product
    .woocommerce-loop-product__title {
    min-height: 87px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.shop_container #primary ul.products li.product .price {
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.8421052632;
  color: #666;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  text-align: center;
}
.shop_container #primary ul.products li.product .button.add_to_cart_button {
  display: none;
}
.shop_container #primary .bottom-woo-pagination {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 767.98px) {
  .shop_container #primary .bottom-woo-pagination {
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2.25rem 0;
  }
  .shop_container #primary form.woocommerce-ordering {
    width: 100%;
  }
}
.shop_container #primary form.woocommerce-ordering {
  background: #fff;
  border: 0.0625rem solid #ccc;
  box-sizing: border-box;
  border-radius: 0.25rem;
  padding: 0.625rem;
  height: 2.5rem;
  margin: 0;
}
.shop_container #primary form.woocommerce-ordering select {
  border: 0;
  background: url(../../images/icons/select_drpdown_icon.svg) center right
    no-repeat;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 0.875;
}
@media (max-width: 767.98px) {
  .shop_container #primary form.woocommerce-ordering select {
    width: 100%;
  }
  .shop_container #primary .pagination {
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2.25rem 0;
  }
}
.shop_container #primary .pagination ul {
  padding: 0;
  border: 0;
}
.single-product #primary {
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}
.single-product #primary #main.site-main {
  margin: 2.1875rem 2.5rem;
}
@media (max-width: 1279.98px) {
  .single-product #primary #main.site-main {
    margin: 1.25rem;
  }
}
.single-product #primary #main.site-main .type-product {
  margin: 4.375rem 7.125rem 7.125rem;
}
@media (max-width: 1279.98px) {
  .single-product #primary #main.site-main .type-product {
    margin: 1.5625rem 0 0;
  }
}
.single-product
  #primary
  #main.site-main
  .type-product
  .woocommerce-product-gallery__image:not(:first-child) {
  font-family: "object-fit:cover";
  object-fit: cover;
  width: 100%;
}
.single-product
  #primary
  #main.site-main
  .type-product
  .woocommerce-product-gallery__image:nth-of-type(2) {
  margin-left: 0;
}
.single-product
  #primary
  #main.site-main
  .type-product
  .woocommerce-product-gallery__image:last-child {
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .single-product
    #primary
    #main.site-main
    .type-product
    .single_product_images {
    margin-bottom: 8.1875rem;
  }
  .single-product
    #primary
    #main.site-main
    .type-product
    .woocommerce-product-gallery__image,
  .single-product
    #primary
    #main.site-main
    .type-product
    .woocommerce-product-gallery__image:not(:first-child) {
    max-width: 100%;
    max-height: 21.5625rem;
    margin: 0;
  }
  .single-product
    #primary
    #main.site-main
    .type-product
    .woocommerce-product-gallery__image
    img {
    max-height: 21.5625rem;
    font-family: "object-fit:cover";
    object-fit: cover;
  }
}
.single-product #primary #main.site-main .type-product .product_title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.225;
  color: #5c068c;
  margin-bottom: 0.8125rem;
}
.single-product #primary #main.site-main .type-product .price {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #79569c;
  margin-bottom: 1.25rem;
}
.single-product #primary #main.site-main .type-product .variations_form select {
  max-width: 13.5rem;
  min-width: auto;
  width: 100%;
  margin-right: 0;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  height: 2.5rem;
  padding: 4px 12px !important;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  background: url(../../images/icons/select_drpdown_icon.svg) 94% no-repeat #fff;
  -webkit-appearance: none;
  background-size: 0.875rem;
  border: none;
  margin-bottom: 5px;
}
.featured-products-wrapper-ul .type-product form.cart .button,
.single-product #primary #main.site-main .type-product form.cart .button {
  padding: 1.3125rem 3.3125rem 1.25rem 1.75rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  -webkit-mask-size:
    90px 100%,
    calc(100% - 90px) 100%;
  -webkit-mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  min-width: 17.6875rem;
  float: none;
}
.single-product
  #primary
  #main.site-main
  .type-product
  .variations_form
  .reset_variations {
  display: none !important;
}
.single-product #primary #main.site-main .type-product form.cart {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  margin-top: 0;
}
.single-product #primary #main.site-main .type-product form.cart .button {
  background: #fedd00;
  margin: 1.875rem auto 0.75rem 0;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #5c068c;
  text-transform: capitalize;
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-position:
    bottom right,
    top left;
  mask-repeat: no-repeat;
  text-align: left;
  display: block;
}
.single-product #primary #main.site-main .type-product form.cart .button:active,
.single-product #primary #main.site-main .type-product form.cart .button:focus,
.single-product #primary #main.site-main .type-product form.cart .button:hover {
  background: #5c068c !important;
  color: #fff !important;
}
@media (max-width: 1023.98px) {
  .single-product #primary #main.site-main .type-product form.cart .button {
    margin: 1.5rem 0 0;
    min-width: 100%;
  }
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  label {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  color: #333;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table {
  max-width: 13.5rem;
  width: 100%;
  margin-right: 1.875rem;
}
@media (max-width: 1023.98px) {
  .single-product
    #primary
    #main.site-main
    .type-product
    form.cart
    .variation_quantity_sec
    .variation_table {
    max-width: 49%;
    margin-right: 0.625rem;
  }
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table
  .variations
  select {
  max-width: 13.5rem;
  min-width: auto;
  width: 100%;
  margin-right: 0;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  height: 2.5rem;
  padding: 4px 12px !important;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  background: url(../../images/icons/select_drpdown_icon.svg) 94% no-repeat #fff;
  -webkit-appearance: none;
  background-size: 0.875rem;
  border: none;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table
  .variations
  .reset_variations {
  display: none !important;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec {
  width: 100%;
  max-width: 9.5625rem;
  text-align: left;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity {
  float: none;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"] {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  border: none;
  height: 2.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  margin: 0 0.625rem;
  -moz-appearance: textfield;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]::-webkit-inner-spin-button,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]::-webkit-outer-spin-button,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]:hover::-webkit-inner-spin-button,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]:hover::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn {
  height: 1.833125rem;
  width: 1.833125rem;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5625rem;
}
.single-product #primary #main.site-main .type-product .product_meta,
.single-product #primary #main.site-main .type-product .slick-arrow::before,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-availability,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-description,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-price {
  display: none;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:active,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:focus,
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:visited {
  box-shadow: 0.0625rem 0.0625rem 0.25rem #222;
  background: #ddd;
}
.single-product
  #primary
  #main.site-main
  .type-product
  form.cart
  .variation_quantity_sec
  .pro_add_to_cartBtn {
  width: 100%;
}
.single-product #primary #main.site-main .type-product .slick-dots {
  bottom: -3.25rem;
}
.single-product #primary #main.site-main .type-product .slick-dots li button {
  width: 1rem;
  height: 1rem;
}
.single-product
  #primary
  #main.site-main
  .type-product
  .slick-dots
  li
  button::before {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
}
.single-product
  #primary
  #main.site-main
  .type-product
  .slick-dots
  li.slick-active
  button:before {
  color: #fedd00;
}
.single-product #primary #main.site-main .type-product .slick-arrow {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: unset;
  transform: unset;
  background: #5c068c;
  z-index: 2;
  top: auto;
  bottom: -3.75rem;
}
.single-product #primary #main.site-main .type-product .slick-arrow.slick-prev {
  left: 0;
  background: url(../../images/icons/left_arrow.svg) center center no-repeat;
}
.single-product #primary #main.site-main .type-product .slick-arrow.slick-next {
  right: 0;
  background: url(../../images/icons/right_arrow.svg) center center no-repeat;
}
.single-product #primary #main.site-main .related_products_lists ul {
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product {
  max-width: calc(25% - 16px);
  -webkit-flex: 0 0 calc(25% - 16px);
  -ms-flex: 0 0 calc(25% - 16px);
  flex: 0 0 calc(25% - 16px);
  margin: 0 0.5rem;
  text-align: center;
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  a {
  background: #ededee;
  padding-bottom: 1.875rem;
  position: relative;
  display: block;
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  a:hover {
  background: #e2dbea;
}
@media (max-width: 767.98px) {
  .single-product
    #primary
    #main.site-main
    .related_products_lists
    ul
    li.type-product {
    max-width: calc(50% - 16px);
    -webkit-flex: 0 0 calc(50% - 16px);
    -ms-flex: 0 0 calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .single-product
    #primary
    #main.site-main
    .related_products_lists
    ul
    li.type-product {
    max-width: calc(100% - 16px);
    -webkit-flex: 0 0 calc(100% - 16px);
    -ms-flex: 0 0 calc(100% - 16px);
    flex: 0 0 calc(100% - 16px);
    margin-bottom: 1rem;
  }
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  img {
  margin: 0 auto;
  font-family: "object-fit:cover";
  object-fit: cover;
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  .woocommerce-loop-product__title {
  padding: 1.15625rem 1.21875rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
  word-break: break-word;
}
@media (min-width: 768px) {
  .single-product
    #primary
    #main.site-main
    .related_products_lists
    ul
    li.type-product
    .woocommerce-loop-product__title {
    min-height: 87px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  .price {
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.8421052632;
  color: #666;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  text-align: center;
}
.single-product
  #primary
  #main.site-main
  .related_products_lists
  ul
  li.type-product
  .button.add_to_cart_button {
  display: none;
}
.single-product
  #primary
  #main.site-main
  .woocommerce-tabs
  .woocommerce-Reviews-title,
.single-product #sidebar {
  display: none !important;
}
.module_free-delivery {
  text-align: center;
}
@media (max-width: 1023.98px) {
  .single-product
    #primary
    #main.site-main
    .related_products_lists
    ul
    li.type-product
    img {
    max-height: 100%;
    max-width: 100%;
  }
  .module_free-delivery {
    padding: 1.375rem 0 1.29375rem;
  }
}
.module_free-delivery ul {
  list-style-type: none;
  max-width: 33.75rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.8125rem 0 2.0625rem;
  margin: 0 auto;
  position: relative;
}
.module_free-delivery ul::before,
.module_free-delivery ul:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0.2;
  left: 0;
  top: 0;
}
@media (max-width: 1023.98px) {
  .module_free-delivery ul {
    max-width: 100%;
    width: 100%;
    padding: 0.9375rem 0;
  }
  .module_free-delivery ul::before,
  .module_free-delivery ul:after {
    width: 100%;
    left: 0;
  }
}
.module_free-delivery ul::after {
  top: auto;
  bottom: 0;
}
.module_free-delivery ul li {
  width: 50%;
  padding: 1.25rem;
  text-align: center;
  min-height: 8.75rem;
  background: #ededee;
}
@media (max-width: 1023.98px) {
  .module_free-delivery ul li {
    width: 100%;
    padding: 0.875rem 0.875rem 0.875rem 0.9375rem;
    min-height: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.375rem;
    background: #ededee;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .module_free-delivery ul li:last-child {
    margin-bottom: 0;
  }
  .module_free-delivery ul li .__icon {
    width: 1.625rem;
    margin-right: 0.9375rem;
  }
}
.module_free-delivery ul li .__icon {
  margin-bottom: 0.625rem;
}
.module_free-delivery ul li p {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  text-align: center;
}
.module_free-delivery ul li.free_delivery {
  border-bottom: 7px solid #fedd00;
}
@media (max-width: 1023.98px) {
  .module_free-delivery ul li p {
    text-align: left;
  }
  .module_free-delivery ul li.free_delivery {
    border: 0;
    border-left: 9px solid #fedd00;
  }
}
.module_free-delivery ul li.free_delivery span {
  color: #e23c3c;
}
.module_free-delivery ul li.click_collect {
  border-bottom: 7px solid #5c068c;
}
.module_free-delivery ul li.click_collect span {
  color: #5c068c;
  display: inline-block;
  margin-top: 0.1875rem;
}
.module_free-delivery ul li.click_collect span + br {
  display: none;
}
.module_free-delivery ul li.click_collect a {
  font-weight: 400;
  line-height: 1.1428571429;
  display: inline-block;
  margin-top: 0.25rem;
}
@media (max-width: 1023.98px) {
  .module_free-delivery ul li.click_collect {
    border: 0;
    border-left: 9px solid #5c068c;
  }
  .module_free-delivery ul li.click_collect a {
    display: inline;
  }
}
.module_product_description {
  margin: 0 auto;
}
@media (max-width: 1279.98px) {
  .module_product_description {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}
.module_product_description p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
  color: #000;
  margin-bottom: 2.125rem;
}
.module_product_description ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.module_product_description ul li {
  background: url(../../images/icons/yellow_star.svg) left 0 no-repeat;
  margin-bottom: 1.125rem;
  padding-left: 3.125rem;
  background-size: inherit;
  min-height: 1.5rem;
}
.module_product_description ul li:last-child {
  margin-bottom: 0;
}
.module_product_description_tabs.hidden-desktop {
  display: none;
}
@media (max-width: 1023.98px) {
  .module_product_description_tabs.hidden-desktop {
    display: block !important;
  }
  .module_product_description_tabs.hidden-mobile {
    display: none;
  }
}
.module_product_description_tabs .accordion {
  border-top: 1px solid #5c068c;
}
.module_product_description_tabs .accordion &gt; .card {
  border: 0;
  border-bottom: 1px solid #5c068c;
  border-radius: 0;
  padding-bottom: 1.0625rem;
}
.module_product_description_tabs .accordion &gt; .card &gt; .card-header {
  border-radius: 0;
  margin-bottom: -1px;
  background: 0 0;
  border-bottom: 0;
  padding: 17px 0 0;
}
.module_product_description_tabs
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button {
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  outline: 0 !important;
  box-shadow: none;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}
.module_product_description_tabs
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button:after {
  content: "";
  background: url(../../images/icons/select_drpdown_icon.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7.5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.module_product_description_tabs
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button.collapsed:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.module_product_description_tabs ul.tabs {
  margin: 0 0 1.3125rem;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.module_product_description_tabs ul.tabs li.tab-link {
  display: inline-block;
  padding: 0;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  text-align: center;
  text-transform: uppercase;
  color: #5c068c;
  margin: 0 0.625rem;
  cursor: pointer;
}
.module_product_description_tabs ul.tabs li.tab-link.current,
.module_product_description_tabs ul.tabs li.tab-link:hover {
  border-bottom: 0.125rem solid;
}
.module_product_description_tabs .tab-content {
  display: none;
  text-transform: capitalize;
}
.module_product_description_tabs .tab-content.current {
  display: inherit;
}
@media (max-width: 1023.98px) {
  .module_product_description_tabs ul.tabs li.tab-link.current {
    border-top-width: 1px;
    border-bottom: 0;
  }
  .module_product_description_tabs ul.tabs li.tab-link {
    background: url(../../images/icons/select_drpdown_icon.svg) 94% no-repeat
      #fff;
    width: 100%;
    text-align: left;
    border-top: 0.0625rem solid #333;
    padding: 1.0625rem 0;
    margin: 0;
  }
  .module_product_description_tabs ul.tabs li.tab-link:last-child {
    border-bottom: 0.0625rem solid #333;
  }
  .module_product_description_tabs .tab-content {
    margin-top: 1.0625rem;
    display: block;
  }
}
.module_product_description_tabs .tab-content .table-responsive table tr td {
  border: 0.0625rem solid #ededee;
  box-sizing: border-box;
  padding: 1rem 1.0625rem;
}
.module_product_description_tabs
  .tab-content
  .table-responsive
  table
  tr
  td:first-child {
  background: #bcabcd;
  width: 12.5rem;
}
@media (max-width: 767.98px) {
  .module_product_description_tabs
    .tab-content
    .table-responsive
    table
    tr
    td:first-child {
    width: 6.875rem;
  }
}
.module_product_description_tabs
  .tab-content
  .table-responsive
  table
  tr
  td:last-child {
  background: #ded5e6;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1875;
}
.module_product_description_tabs .tab-content .accord-header {
  background: #bcabcd;
  border: 1px solid #cfcfcf;
  padding: 0.96875rem 1.25rem 0.96875rem 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  color: #333;
  position: relative;
}
.module_product_description_tabs .tab-content .accord-header:after {
  position: absolute;
  content: "";
  right: 1.25rem;
  top: 1.125rem;
  height: 1.25rem;
  width: 1.25rem;
  background: url(../../images/icons/select_drpdown_icon.svg) center right
    no-repeat;
  transition: all 0.4s ease-in-out;
}
.module_product_description_tabs .tab-content .accord-header.on::after {
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1023.98px) {
  .module_product_description_tabs .tab-content .accord-header {
    padding-right: 2.25rem;
  }
}
.module_product_description_tabs .tab-content .accord-content {
  display: none;
  background: #ded5e6;
  padding: 0.9375rem 1rem 1.375rem;
}
.module_product_description_tabs .tab-content .__text {
  background: #ded5e6;
  padding: 1.0625rem 1rem 0.6875rem;
}
.module_product_description_tabs .tab-content p {
  margin-bottom: 0.625rem;
  font-size: 16px;
  line-height: 19px;
}
.onsales-wrapper-inner span.onsale {
  position: relative;
  background: #fedd00;
  min-width: 4.8125rem;
  min-height: 1.875rem;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 0;
  padding: 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #5c068c;
  font-size: 16px;
  top: 0;
  left: 0;
  line-height: 16.93px;
  margin-bottom: 0.625rem;
}
.quantity {
  float: none;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.quantity.hidden {
  display: none;
}
.quantity input[type="number"] {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  border: none;
  height: 2.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  margin: 0 0.625rem !important;
  -moz-appearance: textfield;
}
.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]:hover::-webkit-inner-spin-button,
.quantity input[type="number"]:hover::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .qty_btn {
  height: 1.833125rem;
  width: 1.833125rem;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5625rem;
}
.quantity .qty_btn:active,
.quantity .qty_btn:focus,
.quantity .qty_btn:visited {
  box-shadow: 0.0625rem 0.0625rem 0.25rem #222;
  background: #ddd;
}
.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 20px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  padding-bottom: 10px;
}
.bundle_form.bundle_sells_form {
  margin-bottom: 0;
}
.bundle_form.bundle_sells_form .bundled_product {
  border-bottom: 0 solid transparent;
}
.bundle_form.bundle_sells_form .bundled_product .bundled_product_title {
  margin-bottom: 4px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
.bundle_form.bundle_sells_form .bundled_product .stock.out-of-stock {
  background: 0 0;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #5c068c;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: auto;
  min-width: auto;
  margin-top: 0 !important;
}
.bundle_form.bundle_sells_form .bundled_product .stock.out-of-stock:before {
  content: "(";
}
.bundle_form.bundle_sells_form .bundled_product .stock.out-of-stock:after {
  content: ")";
}
.bundle_sells_title {
  margin-bottom: 12px;
}
.flex-control-nav.flex-control-thumbs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: hidden;
}
.flex-control-nav.flex-control-thumbs li {
  width: auto !important;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}
.flex-control-nav.flex-control-thumbs li img {
  width: 100% !important;
  height: auto !important;
  display: block;
  cursor: pointer;
  pointer-events: auto !important;
}
.flex-control-nav.flex-control-thumbs .thumbnail-hidden {
  display: none;
}
.flex-control-nav.flex-control-thumbs.thumbnails-limited.show-all
  .thumbnail-hidden {
  display: block;
}
.flex-control-nav.flex-control-thumbs .thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  z-index: 10;
  cursor: pointer;
}
.team .team_list li .team_img,
.woocommerce-MyAccount-navigation-link a,
.woocommerce-account .woocommerce {
  position: relative;
}
.flex-control-nav.flex-control-thumbs.show-all .thumbnail-overlay {
  display: none;
}
.module__flexible_content_content_blocks h3,
.module__supplemental_content h3 {
  font-size: 2rem !important;
}
.module__flexible_content_content_blocks p,
.module__supplemental_content p {
  font-size: 1.125rem;
  line-height: 1.1666666667;
  margin: 0 0 1.25rem;
}
body.product-template-default .site-main {
  width: 100%;
  margin: 2.1875rem 0 !important;
}
body.product-template-default div.product.type-product {
  width: 100%;
  margin: 2.5rem 0 !important;
}
body.product-template-default .you-may-also-like--wrapper {
  margin-top: 1.25rem;
  padding: 2.5rem 0;
  background-color: #f8f8f8;
}
body.product-template-default .related-items--wrapper h2,
body.product-template-default .you-may-also-like--wrapper h2 {
  margin-top: 0 !important;
  font-size: 42px;
  margin-bottom: 12px !important;
}
body.product-template-default .you-may-also-like--wrapper li.type-product a {
  background-color: #cccccf !important;
}
body.product-template-default .related-items--wrapper {
  padding: 2.5rem 0 !important;
}
body.product-template-default .module.module__posts {
  margin-top: 1.25rem;
  padding: 2.5rem 0;
  background-color: #f8f8f8;
}
body.product-template-default .module.module__posts h3 {
  margin-bottom: 12px !important;
  margin-top: 0 !important;
  font-size: 42px;
}
body.product-template-default .module.module__posts .post-tile__inner {
  background-color: #cccccf !important;
}
.module__subscription-form .container,
.module__subscription-form
  body.product-template-default
  .woocommerce-breadcrumb,
body.product-template-default
  .module__subscription-form
  .woocommerce-breadcrumb {
  padding: 0;
}
.module__subscription-form--wrapper {
  max-width: 56.25rem;
  background: url(../../images/subscribe-form.svg) center bottom 0 no-repeat
    #5c068c;
  background-size: cover;
  padding: 1.125rem 1.625rem 2.4375rem;
  margin: 0 auto;
}
.module__subscription-form--wrapper h3 {
  color: #fff;
  text-align: center;
  font-size: 1.5625rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.625rem;
}
@media (max-width: 767.98px) {
  .module__subscription-form--wrapper {
    padding: 1.125rem 2rem 1.5rem;
    background-size: 200%;
    background-position: 86% 87%;
  }
  .module__subscription-form--wrapper h3 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 576px) {
  .module__subscription-form--wrapper {
    background-size: auto 304%;
    background-position: top 46% left;
  }
}
.module__subscription-form--wrapper .nf-row .nf-field-container {
  margin-bottom: 0;
}
.module__subscription-form--wrapper .nf-row .nf-field-container input {
  box-shadow: none;
}
.module__subscription-form--wrapper .nf-row .nf-field-container .btn,
.module__subscription-form--wrapper
  .nf-row
  .nf-field-container
  .typography
  a.button,
.typography
  .module__subscription-form--wrapper
  .nf-row
  .nf-field-container
  a.button {
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.5625rem;
  padding: 0;
  min-width: 7.5625rem;
  border-bottom-right-radius: 2.5625rem 2.5625rem;
}
.module__subscription-form .subscribe__form__inner nf-rows-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.module__subscription-form .subscribe__form__inner nf-rows-wrap .nf-row {
  margin-right: 0.625rem;
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row:not(:last-child) {
  max-width: 20.8125rem;
}
@media (max-width: 1023.98px) {
  .module__subscription-form .subscribe__form__inner nf-rows-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:not(:last-child) {
    max-width: 60%;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .module__subscription-form--wrapper .nf-row .nf-field-container .btn,
  .module__subscription-form--wrapper
    .nf-row
    .nf-field-container
    .typography
    a.button,
  .typography
    .module__subscription-form--wrapper
    .nf-row
    .nf-field-container
    a.button {
    min-width: 100%;
  }
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:not(:last-child) {
    max-width: 100%;
  }
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row:nth-of-type(2) {
  width: 20.125rem;
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row:first-child
  .nf-cell {
  padding-right: 0.625rem;
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row:first-child
  .nf-cell:last-child {
  padding-right: 0;
}
@media (max-width: 1023.98px) {
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:nth-of-type(2) {
    width: 100%;
    margin-bottom: 0.625rem;
  }
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:first-child
    .nf-cell {
    width: 100% !important;
    padding: 0;
    margin-bottom: 0.625rem;
  }
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row:last-child {
  width: 11.25rem;
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:last-child {
    width: 100%;
    max-width: 60%;
  }
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:last-child
    button {
    mask-size:
      60px 100%,
      calc(100% - 59px) 100%;
    -webkit-mask-size:
      60px 100%,
      calc(100% - 59px) 100%;
  }
}
@media (max-width: 767.98px) {
  .module__subscription-form
    .subscribe__form__inner
    nf-rows-wrap
    .nf-row:last-child {
    max-width: 100%;
  }
}
.module__subscription-form
  .subscribe__form__inner
  nf-rows-wrap
  .nf-row
  .nf-cell {
  padding: 0;
}
.team h3 {
  font-size: 1.875rem;
  line-height: 1.1666666667;
  color: #5c068c;
  margin-bottom: 2.75rem;
  font-weight: 400;
}
.team .team_list {
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.team .team_list li {
  margin: 0 1.25rem 1.5625rem 0;
  width: calc(25% - 20px);
  padding: 0;
}
@media (max-width: 1279.98px) {
  .team .team_list li {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 1023.98px) {
  .team h3 {
    font-size: 1.375rem;
  }
  .team .team_list li {
    width: calc(50% - 20px);
  }
}
.team .team_list li .team_img {
  margin-bottom: 1.1875rem;
  overflow: hidden;
  border-radius: 50%;
  border: 0.0625rem solid transparent;
}
.team .team_list li .team_img img {
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  margin: 0;
}
.team .team_list li .team_img:hover img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}
.team .team_list li .team_name {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #333;
}
.team .team_list li .team_title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
  color: #666;
}
.section-temp-fence-calculator
  .module.module__copy
  .col-12.col-lg-12.typography
  p {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  text-align: left;
}
.section-temp-fence-calculator .module.module__copy h5 {
  text-align: left;
  font-size: 18px;
}
.section-temp-fence-calculator .module.module__copy .frame {
  padding: 1.3125rem 2.25rem 1.3125rem 1.8125rem;
  border: 0.125rem solid #fedd00;
  margin: -1.6875rem 0 0.1875rem;
  text-align: left;
}
.section-temp-fence-calculator .module.module__copy .frame h5 {
  margin-top: -2.125rem;
  background: #fff;
  width: auto;
  text-align: center;
  color: #5c068c;
  position: absolute;
  padding: 0 0.625rem;
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .section-temp-fence-calculator .module.module__copy .frame h5 {
    width: auto;
    font-size: 1.125rem;
    line-height: 1.2222222222;
    position: absolute;
  }
}
.section-temp-fence-calculator .module.module__copy .frame p {
  margin: 0 0 0.625rem;
  color: #333;
}
.section-temp-fence-calculator .content_sec {
  text-align: left;
}
.section-temp-fence-calculator .content_sec h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 1.25rem;
}
.section-temp-fence-calculator .content_sec p em {
  color: #5c068c;
  font-style: normal;
}
.section-temp-fence-calculator .needHelp {
  background: url(../../images/footer-bg.svg) -59% 50% no-repeat #5c068c;
  background-size: inherit;
  color: #fff;
  text-align: center;
  padding: 2.5rem;
  margin: 1.5625rem 0 4.625rem;
  text-transform: uppercase;
}
.section-temp-fence-calculator .needHelp h6 {
  font-size: 1.5625rem;
  line-height: 1.8125rem;
  font-weight: 400;
}
.section-temp-fence-calculator .needHelp p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  text-transform: capitalize;
  margin: 0.75rem 0 0.3125rem;
}
.section-temp-fence-calculator .needHelp h3 {
  font-weight: 800;
  font-size: 2.8125rem;
  line-height: 1;
  margin: 0;
}
.module__text-slider {
  background: url(../../images/slider.svg) no-repeat;
}
@media only screen and (min-width: 1200px) {
  .module__text-slider {
    background-size: auto 172%;
    background-position: top 69% left;
    padding: 6.25rem 0 9.4375rem;
  }
}
@media only screen and (max-width: 1199px) {
  .module__text-slider {
    background-size: auto 100%;
  }
}
@media only screen and (max-width: 767px) {
  .module__text-slider {
    background-size: 100% 100%;
    background-position: center bottom 40px;
    padding: 4.3125rem 0 3.75rem;
  }
  .module__text-slider--wrapper h2 {
    font-size: 1.875rem;
  }
}
.module__text-slider--wrapper {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1.375rem;
}
.module__text-slider--wrapper * {
  color: #5c068c;
  text-align: center;
}
.module__text-slider--wrapper h2 {
  color: #5c068c;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}
.module__text-slider--wrapper h3 {
  font-weight: 800;
  margin-bottom: 0;
}
.module__text-slider .slick-dots {
  bottom: -1.375rem;
  margin: 0;
}
.module__text-slider .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.875rem 0 0;
}
.module__text-slider .slick-dots li button {
  width: 100%;
  height: 100%;
}
.module__text-slider .slick-dots li button::before {
  color: #ededee;
  background: #ededee;
  opacity: 1;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}
.module__text-slider .slick-dots li.slick-active button::before {
  color: #fedd00;
  background: #fedd00;
}
.module__text-slider .slick-arrow {
  width: 0.75rem;
  height: 1.0625rem;
  z-index: 9;
  top: auto;
  bottom: -1.375rem;
}
.module__text-slider .slick-arrow::before {
  display: none;
}
.module__text-slider .slick-arrow.slick-prev {
  left: 37%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/left_arrow.svg) no-repeat;
  background-size: contain;
}
.module__text-slider .slick-arrow.slick-next {
  right: 37%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/right_arrow.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .module__text-slider .slick-arrow.slick-prev {
    left: 33%;
  }
  .module__text-slider .slick-arrow.slick-next {
    right: 33%;
  }
}
@media (max-width: 767.98px) {
  .module__text-slider .slick-arrow {
    top: auto;
    bottom: -1.375rem;
    width: 0.75rem;
    height: 1.0625rem;
  }
}
.module__two__image {
  padding-top: 1.4375rem;
}
.module__two__image .__image__outer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.9375rem;
}
.module__two__image .__image__outer__left {
  margin-right: 1.1875rem;
}
@media (max-width: 1023.98px) {
  .module__two__image .__image__outer__left {
    width: 48.5%;
  }
}
@media (max-width: 767.98px) {
  .module__two__image .__image__outer__left {
    width: 100%;
    margin: 0 0 0.75rem;
  }
}
@media (max-width: 1023.98px) {
  .module__two__image .__image__outer__right {
    width: 48.5%;
  }
}
.module__two__image p {
  text-align: left;
}
body.single-case_study .module__two__image {
  padding-bottom: 0;
}
body.single-case_study .module__two__image + .module__copy {
  padding-top: 0;
}
.woocommerce-account .woocommerce-form-wrapper {
  background: #f8f8f8;
  max-width: 43.125rem;
  margin: 0 auto;
  padding: 0 1.875rem 2.5rem;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .module__two__image .__image__outer__right {
    width: 100%;
  }
  .woocommerce-account .woocommerce-form-wrapper {
    padding-bottom: 0 1.25rem 1.75rem;
  }
}
.woocommerce-account .woocommerce-form-wrapper h2 {
  background: #5c068c;
  color: #fedd00;
  font-size: fontsie(30);
  line-height: 1.2066666667;
  padding: 1.25rem 0 1.0625rem;
  border-radius: 4px 4px 0 0;
  margin: 0-1.875rem 0;
  text-transform: uppercase;
  text-align: center;
}
.woocommerce-account .woocommerce-form-wrapper form.login label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
}
.woocommerce-account .woocommerce-form-wrapper form.login label span {
  color: #000;
}
.woocommerce-account .woocommerce-form-wrapper form.login .password-input {
  width: 100%;
  display: block;
}
.woocommerce-account
  .woocommerce-form-wrapper
  form.login
  .woocommerce-form__label-for-checkbox {
  width: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-account
  .woocommerce-form-wrapper
  form.login
  .woocommerce-form__label-for-checkbox
  .woocommerce-form__input-checkbox {
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 0 !important;
  box-shadow: none;
  border-radius: 0 !important;
}
.woocommerce-account
  .woocommerce-form-wrapper
  form.login
  .woocommerce-form__label-for-checkbox
  span {
  margin-left: 10px;
}
.woocommerce-account .woocommerce-button {
  background: #5c068c !important;
  color: #fff !important;
  max-width: 13.9375rem;
  width: 100%;
  border-bottom-right-radius: 40px 40px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  height: 2.9375rem;
}
.woocommerce-account .woocommerce-button:active,
.woocommerce-account .woocommerce-button:focus,
.woocommerce-account .woocommerce-button:hover {
  background: #9b80b5 !important;
}
.woocommerce-account .woocommerce form .form-row-first {
  width: 100%;
}
.woocommerce-account .woocommerce-ResetPassword {
  padding-top: 2rem;
}
.woocommerce-account .woocommerce .container,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .container,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    border-top: 1px solid #5c068c;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .woocommerce-account .woocommerce .container.woocommerce-wrapper,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-wrapper.woocommerce-breadcrumb,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-wrapper.woocommerce-breadcrumb {
    padding-bottom: 21.125rem;
  }
}
.woocommerce-account .woocommerce .container .woocommerce-MyAccount-content,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-content,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  padding-left: 2.8125rem;
  padding-top: 2.1875rem;
  background: #fff;
  max-width: 56.5625rem;
}
@media (max-width: 1023.98px) {
  .woocommerce-account .woocommerce .container .woocommerce-MyAccount-content,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-content,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-content {
    padding-left: 0.9375rem;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .container .woocommerce-MyAccount-content,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-content,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-content {
    padding-left: 0.9375rem;
    max-width: 100%;
    padding-right: 0.9375rem;
  }
}
.woocommerce-account .woocommerce .container .woocommerce-MyAccount-navigation,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation {
  float: none;
  width: auto;
  padding: 2.875rem 2.5rem 2.875rem 0;
}
@media (max-width: 1023.98px) {
  .woocommerce-account
    .woocommerce
    .container
    .woocommerce-MyAccount-navigation,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation {
    padding-right: 0.9375rem;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-account
    .woocommerce
    .container
    .woocommerce-MyAccount-navigation,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation {
    background: #dedede;
    padding: 1.25rem 0.9375rem;
  }
  .woocommerce-account
    .woocommerce
    .container
    .woocommerce-MyAccount-navigation
    .pseudo-select__toggle,
  .woocommerce-account
    .woocommerce
    body.product-template-default
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation
    .pseudo-select__toggle,
  body.product-template-default
    .woocommerce-account
    .woocommerce
    .woocommerce-breadcrumb
    .woocommerce-MyAccount-navigation
    .pseudo-select__toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../../images/icons/select.svg) center right 0.8125rem
      no-repeat #fff !important;
  }
}
.woocommerce-account
  .woocommerce
  .container
  .woocommerce-MyAccount-navigation
  ul
  li
  a:hover,
.woocommerce-account
  .woocommerce
  .container
  .woocommerce-MyAccount-navigation
  ul
  li.is-active
  a,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li
  a:hover,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li.is-active
  a,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li
  a:hover,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li.is-active
  a {
  color: #fedd00;
  background: #5c068c;
}
.woocommerce-account
  .woocommerce
  .container
  .woocommerce-MyAccount-navigation
  ul,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul {
  padding-left: 0;
  margin-bottom: 0;
}
.woocommerce-account
  .woocommerce
  .container
  .woocommerce-MyAccount-navigation
  ul
  li,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li {
  list-style: none;
  padding-left: 0;
  padding-bottom: 0.3125rem;
}
.woocommerce-account
  .woocommerce
  .container
  .woocommerce-MyAccount-navigation
  ul
  li
  a,
.woocommerce-account
  .woocommerce
  body.product-template-default
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li
  a,
body.product-template-default
  .woocommerce-account
  .woocommerce
  .woocommerce-breadcrumb
  .woocommerce-MyAccount-navigation
  ul
  li
  a {
  display: block;
  width: 100%;
  padding: 0.625rem 1.0625rem 0.625rem 3.5625rem;
  text-decoration: none;
  border-radius: 4px;
}
.woocommerce-account .woocommerce:after,
.woocommerce-account .woocommerce:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  z-index: -1;
  top: 0;
}
.woocommerce-account .woocommerce .woo-title {
  color: #5c068c;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #666;
}
.woocommerce-account .woocommerce .woocommerce-inner__border {
  border-bottom: 1px solid #666;
}
.woocommerce-account .woocommerce .woocommerce-inner__content {
  max-width: 42.0625rem;
  margin-top: 2rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content p {
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content--account-detail {
  margin-top: 2.125rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content--name {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 28.125rem;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 1.5rem -2.5rem 1.875rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content--name div {
  padding: 0 2.5rem;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-inner__content--name div {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-inner__content--company {
  margin-bottom: 1.875rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content--contact {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin-bottom: 1.875rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.woocommerce-account .woocommerce .woocommerce-inner__content--contact div {
  padding: 0 2.5rem;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.woocommerce-account
  .woocommerce
  .woocommerce-inner__content--contact
  div.woocommerce-inner__content--contact--email,
.woocommerce-account
  .woocommerce
  .woocommerce-inner__content--contact
  div.woocommerce-inner__content--contact--phone {
  max-width: 100%;
}
.woocommerce-account .woocommerce:after {
  background: #fff;
  right: 0;
}
.woocommerce-account .woocommerce:before {
  background: #dedede;
  left: 0;
}
@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce .woocommerce-inner__content--contact div {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce-account .woocommerce:after,
  .woocommerce-account .woocommerce:before {
    display: none;
  }
}
.woocommerce-account .shq-input-wrapper {
  display: block;
  width: 100%;
}
.woocommerce-account #billing_city_field,
.woocommerce-account #billing_postcode_field,
.woocommerce-account #shipping_city_field,
.woocommerce-account #shipping_postcode_field {
  display: none !important;
}
body .woocommerce form.checkout_coupon,
body .woocommerce form.login,
body .woocommerce form.register {
  border: 0;
  padding: 0;
}
body.section-my-account .breadcrumbs_outer {
  display: none;
}
.woocommerce-nav-detail {
  font-weight: 700;
  color: #5c068c;
  text-transform: capitalize;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
.woocommerce-nav-detail h1 {
  color: #5c068c;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #666;
  margin-bottom: 1.875rem;
}
@media (max-width: 767.98px) {
  .woocommerce-nav-detail h1 {
    border-bottom: 0;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
  }
  .woocommerce-edit-address .woocommerce-Addresses {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}
.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  color: #5c068c !important;
  font-size: 14px;
  text-transform: uppercase;
}
.woocommerce-edit-address .woocommerce-Addresses {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 30px;
  margin: 0 -15px;
}
.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce-edit-address
    .woocommerce-Addresses
    .woocommerce-Address:last-of-type {
    margin-top: 1.875rem;
  }
}
.woocommerce-edit-address .woocommerce-EditAccountForm__field-wrapper,
.woocommerce-edit-address .woocommerce-address-fields__field-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  #billing_last_name_field,
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .form-row-first,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  #billing_last_name_field,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .form-row-first {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .woocommerce-edit-address
    .woocommerce-EditAccountForm__field-wrapper
    #billing_last_name_field,
  .woocommerce-edit-address
    .woocommerce-EditAccountForm__field-wrapper
    .form-row-first,
  .woocommerce-edit-address
    .woocommerce-address-fields__field-wrapper
    #billing_last_name_field,
  .woocommerce-edit-address
    .woocommerce-address-fields__field-wrapper
    .form-row-first {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-edit-address .woocommerce-EditAccountForm__field-wrapper .form-row,
.woocommerce-edit-address .woocommerce-address-fields__field-wrapper .form-row {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .form-row-first,
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .form-row-last,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .form-row-first,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .form-row-last {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .woocommerce-edit-address
    .woocommerce-EditAccountForm__field-wrapper
    .form-row-first,
  .woocommerce-edit-address
    .woocommerce-EditAccountForm__field-wrapper
    .form-row-last,
  .woocommerce-edit-address
    .woocommerce-address-fields__field-wrapper
    .form-row-first,
  .woocommerce-edit-address
    .woocommerce-address-fields__field-wrapper
    .form-row-last {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-edit-address .woocommerce-EditAccountForm__field-wrapper label,
.woocommerce-edit-address .woocommerce-address-fields__field-wrapper label {
  display: block;
  width: 100%;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 16px;
  color: #000;
}
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  label
  .required,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  label
  .required {
  color: #000;
}
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .woocommerce-input-wrapper,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .woocommerce-input-wrapper
  input,
.woocommerce-edit-address
  .woocommerce-EditAccountForm__field-wrapper
  .woocommerce-input-wrapper
  select,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .woocommerce-input-wrapper
  input,
.woocommerce-edit-address
  .woocommerce-address-fields__field-wrapper
  .woocommerce-input-wrapper
  select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.16;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.woocommerce-edit-address
  .select2-container--default
  .select2-selection--single {
  height: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-edit-address
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  left: -10px;
  margin-top: 5px;
}
.woocommerce-edit-address .button.btn-accent {
  background: #fedd00 !important;
  color: #5c068c !important;
  width: 13.75rem;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2.9375rem;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.875rem;
}
.woocommerce-edit-address .button.btn-accent:active,
.woocommerce-edit-address .button.btn-accent:focus,
.woocommerce-edit-address .button.btn-accent:hover {
  background: #5c068c !important;
  color: #fff !important;
}
.woocommerce-edit-account .woocommerce-EditAccountForm {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.woocommerce-edit-account .woocommerce-EditAccountForm .woocommerce-form-row {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row--first {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .woocommerce-edit-account
    .woocommerce-EditAccountForm
    .woocommerce-form-row--first {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row--last {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767.98px) {
  .woocommerce-edit-account
    .woocommerce-EditAccountForm
    .woocommerce-form-row--last {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  input,
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.16;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  span.password-input {
  width: 100%;
  display: block;
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  label {
  display: block;
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 16px;
  color: #000;
}
.woocommerce-edit-account
  .woocommerce-EditAccountForm
  .woocommerce-form-row
  label
  .required {
  color: #000;
}
.woocommerce-edit-account .woocommerce-EditAccountForm fieldset {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 40px;
}
.typography .woocommerce-edit-account .woocommerce-EditAccountForm a.button,
.woocommerce-edit-account .woocommerce-EditAccountForm .btn-primary,
.woocommerce-edit-account .woocommerce-EditAccountForm .typography a.button {
  width: 13.75rem;
  margin-top: 1.875rem;
}
.woocommerce-orders table.my_account_orders td,
.woocommerce-orders table.my_account_orders th,
.woocommerce-recent-orders table.my_account_orders td,
.woocommerce-recent-orders table.my_account_orders th {
  padding: 0.9375rem 0.5rem;
}
@media (max-width: 767.98px) {
  .woocommerce-orders table.shop_table_responsive tr.order,
  .woocommerce-recent-orders table.shop_table_responsive tr.order {
    background: #ededee;
    border-radius: 4px 4px 0 0;
    margin-bottom: 20px;
  }
  .woocommerce-orders table.shop_table_responsive tr.order .order-actions,
  .woocommerce-recent-orders
    table.shop_table_responsive
    tr.order
    .order-actions {
    background: #ccc;
    border-radius: 4px 4px 0 0;
    text-align: center !important;
  }
  .woocommerce-orders .woocommerce table.shop_table td,
  .woocommerce-recent-orders .woocommerce table.shop_table td {
    padding: 0.9375rem;
  }
}
.woocommerce-orders .woocommerce table.shop_table,
.woocommerce-recent-orders .woocommerce table.shop_table,
.woocommerce-recent-orders table.shop_table {
  border: 0;
}
.woocommerce-orders .woocommerce table.shop_table th,
.woocommerce-recent-orders .woocommerce table.shop_table th {
  text-transform: uppercase;
  color: #5c068c;
  font-size: 14px;
}
.woocommerce-orders .woocommerce table.shop_table td,
.woocommerce-recent-orders .woocommerce table.shop_table td {
  font-size: 1.125rem;
  color: #333;
}
.woocommerce-orders .woocommerce table.shop_table td a,
.woocommerce-recent-orders .woocommerce table.shop_table td a {
  color: #333;
}
.woocommerce-orders .woocommerce table.shop_table .woocommerce-button,
.woocommerce-recent-orders .woocommerce table.shop_table .woocommerce-button {
  background: 0 0 !important;
  color: #5c068c !important;
  padding: 0;
  height: auto;
  width: auto;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.woocommerce h3,
.woocommerce p {
  color: #333;
}
.woocommerce-recent-orders table.my_account_orders td,
.woocommerce-recent-orders table.my_account_orders th {
  padding: 0.9375rem 0.5rem;
}
.woocommerce-recent-orders h3 {
  margin-top: 1.875rem;
  color: #333;
}
.woocommerce-recent-orders table.shop_table th {
  text-transform: uppercase;
  color: #5c068c;
}
.woocommerce-recent-orders table.shop_table td {
  font-size: 1.125rem;
  color: #333;
}
@media (max-width: 767.98px) {
  .woocommerce-recent-orders table.shop_table td {
    padding: 0.9375rem;
  }
}
.woocommerce-recent-orders table.shop_table td a {
  color: #333;
}
.woocommerce-recent-orders table.shop_table .woocommerce-button {
  background: 0 0 !important;
  color: #5c068c !important;
  padding: 0;
  height: auto;
  width: auto;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before,
.woocommerce-MyAccount-navigation-link--dashboard a:before,
.woocommerce-MyAccount-navigation-link--edit-account a:before,
.woocommerce-MyAccount-navigation-link--edit-address a:before,
.woocommerce-MyAccount-navigation-link--orders a:before,
.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  background-position: center center;
  background-size: 100% 100%;
  content: "";
  background-repeat: no-repeat;
}
.woocommerce-view-order .woocommerce-order-details {
  margin-top: 1.875rem;
}
.woocommerce-MyAccount-navigation-link a:before {
  content: "";
  position: absolute;
  left: 1.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
.woocommerce-MyAccount-navigation-link--dashboard a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 10V12.1707C9.83481 12.5825 9 13.6938 9 15C9 16.6569 10.3431 18 12 18C13.6569 18 15 16.6569 15 15C15 13.6938 14.1652 12.5825 13 12.1707V10C13 9.44772 12.5523 9 12 9C11.4477 9 11 9.44772 11 10ZM11 15C11 14.4477 11.4477 14 12 14C12.5523 14 13 14.4477 13 15C13 15.5523 12.5523 16 12 16C11.4477 16 11 15.5523 11 15Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M13 6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6V7C11 7.55228 11.4477 8 12 8C12.5523 8 13 7.55228 13 7V6Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M3.5 14C3.5 13.4477 3.94772 13 4.5 13H5.5C6.05228 13 6.5 13.4477 6.5 14C6.5 14.5523 6.05228 15 5.5 15H4.5C3.94772 15 3.5 14.5523 3.5 14Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M7.20711 8.29289C6.81658 7.90237 6.18342 7.90237 5.79289 8.29289C5.40237 8.68342 5.40237 9.31658 5.79289 9.70711L6.49999 10.4142C6.89052 10.8047 7.52368 10.8047 7.91421 10.4142C8.30473 10.0237 8.30473 9.39052 7.91421 8.99999L7.20711 8.29289Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M17.5 14C17.5 13.4477 17.9477 13 18.5 13H19.5C20.0523 13 20.5 13.4477 20.5 14C20.5 14.5523 20.0523 15 19.5 15H18.5C17.9477 15 17.5 14.5523 17.5 14Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M18.4142 9.70711C18.8047 9.31658 18.8047 8.68342 18.4142 8.29289C18.0237 7.90237 17.3905 7.90237 17 8.29289L16.2929 8.99999C15.9024 9.39052 15.9024 10.0237 16.2929 10.4142C16.6834 10.8047 17.3166 10.8047 17.7071 10.4142L18.4142 9.70711Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 2.5C5.92487 2.5 1 7.42487 1 13.5C1 16.3121 1.91778 19.175 3.76488 21.1779C3.9542 21.3832 4.22074 21.5 4.5 21.5H19.5C19.7793 21.5 20.0458 21.3832 20.2351 21.1779C22.0822 19.175 23 16.3121 23 13.5C23 7.42487 18.0751 2.5 12 2.5ZM3 13.5C3 8.52943 7.02943 4.5 12 4.5C16.9706 4.5 21 8.52943 21 13.5C21 15.757 20.3068 17.9487 19.0439 19.5H4.95613C3.6932 17.9487 3 15.757 3 13.5Z' fill='rgb(0,0,0)' fill-opacity='0.85'/%3E%3Cpath d='M12 14C11.4477 14 11 14.4477 11 15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15C13 14.4477 12.5523 14 12 14Z' fill='rgb(0,0,0)'/%3E%3C/svg%3E%0A");
}
.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 4C1 3.44772 1.44772 3 2 3H22C22.5523 3 23 3.44772 23 4V20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20V4ZM3 5V8H21V5H3ZM21 10H3V19H21V10ZM5 14.5C5 13.9477 5.44772 13.5 6 13.5H7C7.55228 13.5 8 13.9477 8 14.5C8 15.0523 7.55228 15.5 7 15.5H6C5.44772 15.5 5 15.0523 5 14.5ZM9 14.5C9 13.9477 9.44772 13.5 10 13.5H11C11.5523 13.5 12 13.9477 12 14.5C12 15.0523 11.5523 15.5 11 15.5H10C9.44772 15.5 9 15.0523 9 14.5ZM13 14.5C13 13.9477 13.4477 13.5 14 13.5H15C15.5523 13.5 16 13.9477 16 14.5C16 15.0523 15.5523 15.5 15 15.5H14C13.4477 15.5 13 15.0523 13 14.5Z' fill='black' fill-opacity='0.85'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 10H21V19H3V10ZM5 14.5C5 13.9477 5.44772 13.5 6 13.5H7C7.55228 13.5 8 13.9477 8 14.5C8 15.0523 7.55228 15.5 7 15.5H6C5.44772 15.5 5 15.0523 5 14.5ZM9 14.5C9 13.9477 9.44772 13.5 10 13.5H11C11.5523 13.5 12 13.9477 12 14.5C12 15.0523 11.5523 15.5 11 15.5H10C9.44772 15.5 9 15.0523 9 14.5ZM13 14.5C13 13.9477 13.4477 13.5 14 13.5H15C15.5523 13.5 16 13.9477 16 14.5C16 15.0523 15.5523 15.5 15 15.5H14C13.4477 15.5 13 15.0523 13 14.5Z' fill='%23BCABCD'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--orders a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.5 2C7.5 1.44772 7.94772 1 8.5 1H15.5C16.0523 1 16.5 1.44772 16.5 2V2.5H19C20.1046 2.5 21 3.39544 21 4.5V21C21 22.1046 20.1046 23 19 23H5C3.89544 23 3 22.1046 3 21V4.5C3 3.39543 3.89543 2.5 5 2.5H7.5V2ZM9.5 4H14.5V3H9.5V4ZM16.5 5C16.5 5.55228 16.0523 6 15.5 6H8.5C7.94772 6 7.5 5.55228 7.5 5V4.5H5V21H19V4.5H16.5V5ZM14.2068 8.79282C14.5974 9.18331 14.5975 9.81647 14.207 10.207L11.9139 12.5006H14.502C14.9065 12.5006 15.2712 12.7443 15.4259 13.118C15.5807 13.4917 15.495 13.9219 15.209 14.2078L11.2071 18.2081C10.8165 18.5986 10.1834 18.5985 9.79291 18.2079C9.40246 17.8173 9.40258 17.1841 9.79318 16.7937L12.0871 14.5006H9.5C9.09556 14.5006 8.73093 14.257 8.57614 13.8833C8.42135 13.5097 8.50687 13.0796 8.79282 12.7936L12.7926 8.79296C13.1831 8.4024 13.8163 8.40234 14.2068 8.79282Z' fill='black' fill-opacity='0.85'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.5 6C16.0523 6 16.5 5.55228 16.5 5V4.5H19V21H5V4.5H7.5V5C7.5 5.55228 7.94772 6 8.5 6H15.5ZM14.2068 8.79282C14.5974 9.18331 14.5975 9.81647 14.207 10.207L11.9139 12.5006H14.502C14.9065 12.5006 15.2712 12.7443 15.4259 13.118C15.5807 13.4917 15.495 13.9219 15.209 14.2078L11.2071 18.2081C10.8165 18.5986 10.1834 18.5985 9.79291 18.2079C9.40246 17.8173 9.40258 17.1841 9.79318 16.7937L12.0871 14.5006H9.5C9.09556 14.5006 8.73093 14.257 8.57614 13.8833C8.42135 13.5097 8.50687 13.0796 8.79282 12.7936L12.7926 8.79296C13.1831 8.4024 13.8163 8.40234 14.2068 8.79282Z' fill='%23BCABCD'/%3E%3C/svg%3E%0A");
}
.woocommerce-MyAccount-navigation-link--edit-address a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.3584 15.4209C21.6156 16.098 23 17.08 23 18.5C23 20.235 20.703 21.4704 17.2922 22.0762L16.7295 22.1689C16.5388 22.1979 16.345 22.2251 16.1484 22.2504L15.55 22.3207C15.2467 22.353 14.9373 22.381 14.6225 22.4047L13.9858 22.4462L13.3357 22.476C13.2263 22.48 13.1164 22.4835 13.006 22.4865L12.338 22.4985H11.662L10.994 22.4865C10.8836 22.4835 10.7737 22.48 10.6643 22.476L10.0142 22.4462L9.37754 22.4047C9.06272 22.381 8.75333 22.353 8.45 22.3207L7.85162 22.2504C7.7533 22.2378 7.6557 22.2246 7.55884 22.2111L6.9868 22.1239C3.4228 21.5368 1 20.2819 1 18.5C1 17.08 2.38443 16.098 4.64158 15.4209C5.17057 15.2622 5.72806 15.5624 5.88675 16.0913C6.04545 16.6203 5.74527 17.1778 5.21628 17.3365C4.40049 17.5813 3.76627 17.8629 3.36438 18.1479C3.2256 18.2464 3.1345 18.3274 3.0781 18.3873L3.0179 18.4609C3.00543 18.4798 3 18.493 3 18.5C3 18.7039 3.27641 18.9375 3.77269 19.1714L4.03889 19.2883C4.13356 19.3272 4.23407 19.3659 4.34017 19.4044L4.67494 19.519C4.79194 19.5568 4.91427 19.5942 5.04165 19.6311L5.43872 19.74C5.50734 19.7579 5.57716 19.7756 5.64815 19.7931L6.08782 19.8957C6.23887 19.929 6.39432 19.9615 6.55392 19.993L7.04488 20.0843L7.55914 20.1687C7.64671 20.1821 7.73518 20.1953 7.82452 20.2081L8.37077 20.2806L8.93639 20.3442L9.5198 20.3981C9.71707 20.4144 9.91703 20.4289 10.1194 20.4415L10.7337 20.4734L11.3611 20.4932C11.4667 20.4955 11.5727 20.4972 11.6792 20.4983L12 20.5C12.2147 20.5 12.4278 20.4977 12.6389 20.4932L13.2663 20.4734L13.8806 20.4415C14.083 20.4289 14.2829 20.4144 14.4802 20.3981L15.0636 20.3442L15.6292 20.2806L16.1755 20.2081L16.7008 20.1274C16.7865 20.1133 16.8713 20.099 16.9551 20.0843L17.4461 19.993L17.6823 19.945L18.1354 19.845C18.282 19.8107 18.424 19.7757 18.5613 19.74L18.9583 19.6311C19.022 19.6127 19.0845 19.5941 19.1456 19.5754L19.4965 19.4619C19.664 19.4046 19.8191 19.3466 19.9611 19.2883L20.2273 19.1714C20.7236 18.9375 21 18.7039 21 18.5C21 18.493 20.9946 18.4798 20.9821 18.4609L20.9219 18.3873C20.8655 18.3274 20.7744 18.2464 20.6356 18.148C20.2337 17.8629 19.5995 17.5813 18.7837 17.3365C18.2547 17.1778 17.9545 16.6203 18.1132 16.0914C18.2719 15.5624 18.8294 15.2622 19.3584 15.4209ZM12 1C16.1367 1 19.5 4.28101 19.5 8.3409C19.5 10.8052 18.1628 13.1946 15.9679 15.4582C15.2223 16.2273 14.4265 16.9277 13.6304 17.5482L13.2902 17.8087L12.8622 18.1215L12.5471 18.3371C12.2147 18.5543 11.7853 18.5543 11.4529 18.3371C11.4248 18.3187 11.3942 18.2984 11.3614 18.2763L11.0069 18.0279L10.7098 17.8087L10.3696 17.5482C9.57354 16.9277 8.77774 16.2273 8.03208 15.4582C5.83722 13.1946 4.5 10.8052 4.5 8.3409C4.5 4.28101 7.86334 1 12 1ZM12 3C8.95696 3 6.5 5.39683 6.5 8.3409C6.5 10.1738 7.60028 12.1399 9.46792 14.066C10.1441 14.7634 10.8718 15.4038 11.5991 15.9708C11.7262 16.0698 11.8485 16.1629 11.9653 16.2497L12 16.274L12.1234 16.1834L12.4009 15.9708C13.1282 15.4038 13.8559 14.7634 14.5321 14.066C16.3997 12.1399 17.5 10.1738 17.5 8.3409C17.5 5.39683 15.043 3 12 3ZM12 5C13.933 5 15.5 6.56702 15.5 8.5C15.5 10.433 13.933 12 12 12C10.067 12 8.5 10.433 8.5 8.5C8.5 6.56702 10.067 5 12 5ZM12 7C11.1716 7 10.5 7.67158 10.5 8.5C10.5 9.32841 11.1716 10 12 10C12.8284 10 13.5 9.32841 13.5 8.5C13.5 7.67158 12.8284 7 12 7Z' fill='black' fill-opacity='0.85'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3C8.95696 3 6.5 5.39683 6.5 8.3409C6.5 10.1738 7.60028 12.1399 9.46792 14.066C10.1441 14.7634 10.8718 15.4038 11.5991 15.9708C11.7262 16.0698 11.8485 16.1629 11.9653 16.2497L12 16.274L12.1234 16.1834L12.4009 15.9708C13.1282 15.4038 13.8559 14.7634 14.5321 14.066C16.3997 12.1399 17.5 10.1738 17.5 8.3409C17.5 5.39683 15.043 3 12 3ZM15.5 8.5C15.5 6.56702 13.933 5 12 5C10.067 5 8.5 6.56702 8.5 8.5C8.5 10.433 10.067 12 12 12C13.933 12 15.5 10.433 15.5 8.5Z' fill='%23BCABCD'/%3E%3Cpath d='M12 7C11.1716 7 10.5 7.67158 10.5 8.5C10.5 9.32842 11.1716 10 12 10C12.8284 10 13.5 9.32842 13.5 8.5C13.5 7.67158 12.8284 7 12 7Z' fill='%23BCABCD'/%3E%3C/svg%3E%0A");
}
.woocommerce-MyAccount-navigation-link--edit-account a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 3C10.3431 3 9 4.34315 9 6C9 7.65685 10.3431 9 12 9C13.6569 9 15 7.65685 15 6C15 4.34315 13.6569 3 12 3ZM7 6C7 3.23858 9.23858 1 12 1C14.7614 1 17 3.23858 17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76142 7 6Z' fill='black' fill-opacity='0.85'/%3E%3Cpath d='M12 12C6.47717 12 2 16.4772 2 22C2 22.5523 2.44772 23 3 23C3.55228 23 4 22.5523 4 22C4 18.0562 6.85378 14.7789 10.609 14.1205H13.391C17.1462 14.7789 20 18.0562 20 22C20 22.5523 20.4477 23 21 23C21.5523 23 22 22.5523 22 22C22 16.4772 17.5228 12 12 12Z' fill='black' fill-opacity='0.85'/%3E%3Cpath d='M9 6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6Z' fill='%23BCABCD'/%3E%3C/svg%3E%0A");
}
.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 4.0625rem;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 3C3.22386 3 3 3.22386 3 3.5V20.5C3 20.7761 3.22386 21 3.5 21H7V3H3.5ZM3.5 1C2.11929 1 1 2.11929 1 3.5V20.5C1 21.8807 2.11929 23 3.5 23H20.5C21.8807 23 23 21.8807 23 20.5V3.5C23 2.11929 21.8807 1 20.5 1H3.5ZM9 3V21H20.5C20.7761 21 21 20.7761 21 20.5V3.5C21 3.22386 20.7761 3 20.5 3H9ZM16.7071 9.29289C17.0976 9.68342 17.0976 10.3166 16.7071 10.7071L15.4142 12L16.7071 13.2929C17.0976 13.6834 17.0976 14.3166 16.7071 14.7071C16.3166 15.0976 15.6834 15.0976 15.2929 14.7071L13.2929 12.7071C12.9024 12.3166 12.9024 11.6834 13.2929 11.2929L15.2929 9.29289C15.6834 8.90237 16.3166 8.90237 16.7071 9.29289Z' fill='black' fill-opacity='0.85'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 21V3H20.5C20.7761 3 21 3.22386 21 3.5V20.5C21 20.7761 20.7761 21 20.5 21H9ZM16.7071 9.29289C17.0976 9.68342 17.0976 10.3166 16.7071 10.7071L15.4142 12L16.7071 13.2929C17.0976 13.6834 17.0976 14.3166 16.7071 14.7071C16.3166 15.0976 15.6834 15.0976 15.2929 14.7071L13.2929 12.7071C12.9024 12.3166 12.9024 11.6834 13.2929 11.2929L15.2929 9.29289C15.6834 8.90237 16.3166 8.90237 16.7071 9.29289Z' fill='%23BCABCD'/%3E%3Cpath d='M3 3.5C3 3.22386 3.22386 3 3.5 3H7V21H3.5C3.22386 21 3 20.7761 3 20.5V3.5Z' fill='%23BCABCD'/%3E%3C/svg%3E%0A");
}
.pseudo-select__toggle {
  width: 100%;
  background: #fff !important;
  border: 1px solid #ccc;
  text-align: left;
  color: #000 !important;
  font-weight: 400;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 0;
  height: 40px;
}
.pseudo-select .fas.fa-caret-down {
  position: absolute;
  right: 25px;
  left: auto;
  font-size: 20px;
  color: #000;
}
.pseudo-select__dropdown {
  background: #fff;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 0 0 4px 4px;
}
.pseudo-select__dropdown li {
  position: relative;
}
.pseudo-select__dropdown input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.pseudo-select__dropdown label {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 25px;
}
.pseudo-select__dropdown__options__option input + label:before {
  content: "";
  display: block;
  position: relative;
  float: left;
  left: 0.625rem;
  top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0 0 -40px;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #5c068c;
  line-height: 1;
}
.pseudo-select__dropdown__options__option input:checked + label:before {
  background: #5c068c;
  border: 4px solid #fff;
}
.pseudo-select__dropdown__options__option--selected,
.pseudo-select__dropdown__options__option--selected:active,
.pseudo-select__dropdown__options__option--selected:focus,
.pseudo-select__dropdown__options__option--selected:hover {
  background: #5c068c;
  color: #fff;
}
.pseudo-select__dropdown__options__option {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
  padding-left: 40px !important;
  margin-bottom: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.woocommerce-container {
  max-width: 72.5rem;
  margin: 0 auto;
}
.woocommerce-container .container,
.woocommerce-container body.product-template-default .woocommerce-breadcrumb,
body.product-template-default .woocommerce-container .woocommerce-breadcrumb {
  padding: 0;
}
.woocommerce .btn-accent {
  min-width: 12.5rem;
  color: #5c068c !important;
  height: 2.9375rem;
}
.woocommerce .btn-accent:active,
.woocommerce .btn-accent:focus,
.woocommerce .btn-accent:hover {
  background: #ffe432 !important;
}
.woocommerce-info {
  border-top-color: #5c068c;
}
.woocommerce-info:before {
  color: #5c068c;
}
.woocommerce.post-type-archive header .btn-accent,
.woocommerce.product-template-default header .btn-accent,
.woocommerce.tax-product_cat header .btn-accent {
  background-color: #fedd00 !important;
  min-width: auto;
  color: #5c068c !important;
  height: auto;
}
.woocommerce.post-type-archive header .btn-accent:active,
.woocommerce.post-type-archive header .btn-accent:focus,
.woocommerce.post-type-archive header .btn-accent:hover,
.woocommerce.product-template-default header .btn-accent:active,
.woocommerce.product-template-default header .btn-accent:focus,
.woocommerce.product-template-default header .btn-accent:hover,
.woocommerce.tax-product_cat header .btn-accent:active,
.woocommerce.tax-product_cat header .btn-accent:focus,
.woocommerce.tax-product_cat header .btn-accent:hover {
  background: #ffe432 !important;
}
@media (max-width: 767.98px) {
  .woocommerce-account
    .woocommerce-MyAccount-content
    .woocommerce-recent-orders {
    padding-bottom: 2.1875rem;
  }
}
body.woocommerce-account .woocommerce-error {
  max-width: 62rem;
  margin: 0 auto;
  width: 100%;
}
.woocommerce div.product p.stock {
  background: #e23c3c;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 14px;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 30px;
  min-width: 106px;
}
.woocommerce div.product p.stock.in-stock {
  display: none;
}
body.section-register .form-row {
  padding: 3px;
  margin: 0 0 6px;
}
body.section-register .woocommerce-form-wrapper {
  background: #f8f8f8;
  max-width: 28.1875rem;
  margin: 3.75rem auto;
  padding: 0 1.875rem 2.5rem;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  body.section-register .woocommerce-form-wrapper {
    padding-bottom: 0 1.25rem 1.75rem;
  }
}
body.section-register .woocommerce-form-wrapper .woocommerce-button {
  background: #5c068c !important;
  color: #fff !important;
  max-width: 13.9375rem;
  width: 100%;
  border-bottom-right-radius: 40px 40px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  height: 2.9375rem;
}
body.section-register .woocommerce-form-wrapper .woocommerce-button:active,
body.section-register .woocommerce-form-wrapper .woocommerce-button:focus,
body.section-register .woocommerce-form-wrapper .woocommerce-button:hover {
  background: #9b80b5 !important;
}
body.section-register .woocommerce-form-wrapper h2 {
  background: #5c068c;
  color: #fedd00;
  font-size: fontsie(30);
  line-height: 1.2066666667;
  padding: 1.25rem 0 1.0625rem;
  border-radius: 4px 4px 0 0;
  margin: 0-1.875rem 0;
  text-transform: uppercase;
  text-align: center;
}
body.section-register .woocommerce-form-wrapper form.register {
  margin: 2rem 0;
}
body.section-register .woocommerce-form-wrapper form.register label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
}
body.section-register .woocommerce-form-wrapper form.register label span {
  color: #000;
}
body.section-register
  .woocommerce-form-wrapper
  form.register
  .woocommerce-form__label-for-checkbox {
  width: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
body.section-register
  .woocommerce-form-wrapper
  form.register
  .woocommerce-form__label-for-checkbox
  .woocommerce-form__input-checkbox {
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 0 !important;
  box-shadow: none;
  border-radius: 0 !important;
}
.fcm-delivery-date input[type="date"]:focus,
.fcm-delivery-date input[type="text"]:focus,
.fcm-delivery-type input[type="radio"]:focus {
  box-shadow: 0 0 0 3px rgba(88, 44, 130, 0.3);
  outline: 0;
}
body.section-register
  .woocommerce-form-wrapper
  form.register
  .woocommerce-form__label-for-checkbox
  span {
  margin-left: 10px;
}
.woocommerce-LostPassword.lost_password {
  width: 100%;
  float: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
}
.bundled_table_item,
.product .bundled_product .bundled_product_excerpt,
.product .bundled_product .bundled_product_images,
.product-type-bundle .summary-add-to-cart-form-bundle,
.product-type-bundle .woocommerce-product-details__short-description,
.woocommerce-cart-form .bundled_table_item,
body.woocommerce-cart .breadcrumbs_outer {
  display: none;
}
.email-adress-account {
  overflow: hidden;
  overflow-wrap: break-word;
}
.product .bundled_product {
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
}
.product .bundled_product .details {
  padding-left: 0 !important;
  width: 100% !important;
  float: none;
}
.product .bundled_product .details .product_title {
  font-size: 20px !important;
}
.product .bundled_product .details .price {
  font-size: 18px !important;
  margin-bottom: 12px !important;
}
.cart_wrapper {
  max-width: 70.625rem;
  margin: 10.875rem auto 6.25rem;
}
@media (max-width: 1023.98px) {
  .cart_wrapper {
    margin: 1.25rem auto 1.875rem;
  }
}
.cart_wrapper h1 {
  color: #5c068c;
  margin-bottom: 4.0625rem;
}
@media (max-width: 767.98px) {
  .cart_wrapper h1 {
    display: none;
  }
  body.woocommerce-cart .actions {
    width: 100% !important;
  }
}
body.woocommerce-cart .coupon input {
  width: 9.375rem !important;
  height: 2.9375rem;
}
body.woocommerce-cart .coupon .btn-lg {
  background: #fedd00 !important;
  color: #5c068c !important;
  height: 2.9375rem;
  width: 11.875rem !important;
  float: left !important;
}
body.woocommerce-cart .coupon .btn-lg:active,
body.woocommerce-cart .coupon .btn-lg:focus,
body.woocommerce-cart .coupon .btn-lg:hover {
  background: #5c068c !important;
  color: #fff !important;
}
body.woocommerce-cart .wc-proceed-to-checkout {
  text-align: right;
}
body.woocommerce-cart table.cart .remove img {
  width: 1.5rem;
  height: 1.5rem;
}
body.woocommerce-cart table.cart .remove {
  color: #5c068c !important;
}
body.woocommerce-cart table.cart .remove .fas {
  color: #5c068c;
}
body.woocommerce-cart table.cart .remove:hover {
  color: #5c068c !important;
  background: 0 0 !important;
}
body.woocommerce-cart table.cart img {
  width: 63px;
}
@media (max-width: 767.98px) {
  body.woocommerce-cart .wc-proceed-to-checkout {
    text-align: left;
  }
  body.woocommerce-cart tr.woocommerce-cart-form__cart-item.cart_item {
    border-bottom: 1px solid #ccc;
  }
  body.woocommerce-cart table.cart img {
    width: 69px;
    height: 73px;
    font-family: "object-fit:cover";
    object-fit: cover;
  }
}
body.woocommerce-cart .cart-collaterals .cart_totals {
  width: 30%;
}
@media (max-width: 1279.98px) {
  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 50%;
  }
}
body.woocommerce-cart .woocommerce table.shop_table {
  border: 0;
}
@media (max-width: 767.98px) {
  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
  }
  body.woocommerce-cart .woocommerce table.shop_table {
    margin-bottom: 0;
  }
}
body.woocommerce-cart .shop_table th {
  font-size: 1.125rem;
  color: #5c068c;
  text-transform: uppercase;
}
body.woocommerce-cart .shop_table th.product-name {
  padding-left: 0;
}
body.woocommerce-cart .shop_table th.product-subtotal {
  padding-right: 0;
  text-align: right;
}
.cart-subtotal body.woocommerce-cart .shop_table th {
  width: 50%;
}
@media (max-width: 767.98px) {
  body.woocommerce-cart .shop_table td {
    border: 0 !important;
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block !important;
  }
  body.woocommerce-cart .shop_table td.product-name {
    width: calc(100% - 69px);
    display: block !important;
    text-align: left !important;
    margin-left: 69px;
  }
}
body.woocommerce-cart .shop_table td.product-thumbnail {
  padding-left: 0;
}
body.woocommerce-cart .shop_table td.product-name a {
  color: #333;
}
body.woocommerce-cart .shop_table td.product-subtotal {
  padding-right: 0;
  text-align: right;
}
body.woocommerce-cart .shop_table td.product-quantity .qty {
  font-size: 0.875rem;
  border: 1px solid #ccc;
  height: 40px;
  borde-radius: 0;
  width: 65px;
}
body.woocommerce-cart .shop_table td.actions {
  padding-right: 0;
  padding-left: 0;
}
.cart-subtotal body.woocommerce-cart .shop_table td {
  padding-right: 0;
}
body.woocommerce-cart .shop_table .cart-subtotal span,
body.woocommerce-cart .shop_table .order-total span,
body.woocommerce-cart .shop_table td.product-price,
body.woocommerce-cart .shop_table td.product-subtotal {
  border-top: 1px solid #ccc;
  font-size: 1.5rem;
  line-height: 1.225;
  font-weight: 700;
  color: #666;
}
body.woocommerce-cart .shop_table .cart-subtotal span,
body.woocommerce-cart .shop_table .order-total span {
  border-top: 0;
}
body.woocommerce-cart .shop_table .cart-subtotal td,
body.woocommerce-cart .shop_table .order-total td {
  text-align: right;
  padding-right: 0;
}
body.woocommerce-cart .shop_table .cart-subtotal th,
body.woocommerce-cart .shop_table .order-total th {
  width: 50%;
}
@media (max-width: 767.98px) {
  body.woocommerce-cart .shop_table .cart-subtotal span,
  body.woocommerce-cart .shop_table .order-total span,
  body.woocommerce-cart .shop_table td.product-price,
  body.woocommerce-cart .shop_table td.product-subtotal {
    font-size: 1rem;
  }
  body.woocommerce-cart .shop_table .cart-subtotal,
  body.woocommerce-cart .shop_table .order-total {
    border-bottom: 1px solid #ccc;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  body.woocommerce-cart .shop_table .cart-subtotal th,
  body.woocommerce-cart .shop_table .order-total th {
    display: inline-table !important;
  }
}
body.woocommerce-cart td.product-name {
  font-size: 1.5rem;
  line-height: 1.225;
  font-weight: 800;
  color: #333;
}
body.woocommerce-cart .btn-update {
  width: 13.75rem !important;
  height: 2.9375rem;
  background: #5c068c !important;
  color: #fff !important;
}
body.woocommerce-cart .btn-update:active,
body.woocommerce-cart .btn-update:focus,
body.woocommerce-cart .btn-update:hover {
  background: #9b80b5 !important;
  color: #fff !important;
}
.typography body.woocommerce-cart .cart_totals a.button,
body.woocommerce-cart .cart_totals .btn,
body.woocommerce-cart .cart_totals .typography a.button {
  background: #fedd00 !important;
  color: #5c068c !important;
  height: 47px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 17.9375rem;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.typography body.woocommerce-cart .cart_totals a.button:active,
.typography body.woocommerce-cart .cart_totals a.button:focus,
.typography body.woocommerce-cart .cart_totals a.button:hover,
body.woocommerce-cart .cart_totals .btn:active,
body.woocommerce-cart .cart_totals .btn:focus,
body.woocommerce-cart .cart_totals .btn:hover,
body.woocommerce-cart .cart_totals .typography a.button:active,
body.woocommerce-cart .cart_totals .typography a.button:focus,
body.woocommerce-cart .cart_totals .typography a.button:hover {
  background: #9b80b5 !important;
  color: #fff !important;
}
@media (max-width: 767.98px) {
  body.woocommerce-cart td.product-name {
    font-size: 1rem;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr td::before,
  body.woocommerce-cart
    .woocommerce-page
    table.shop_table_responsive
    tr
    td::before {
    display: none;
  }
  body.woocommerce-cart table.cart .product-thumbnail {
    display: inline-block;
    float: left;
  }
  body.woocommerce-cart table.shop_table_responsive tr:nth-child(2n) td {
    background: #fff !important;
  }
}
.cart .product-subtotal .tax_label,
.coupon label {
  display: none;
}
.cart.loading:after {
  width: 100%;
  height: 100%;
}
.woocommerce-cart-form dl.variation {
  font-weight: 400;
  font-size: 0.8em;
}
.woocommerce-additional-fields {
  margin: 20px 0;
}
.woocommerce-additional-fields__field-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.form-row.fcm-delivery-type {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.fcm-delivery-type label[for="fcm_delivery_type"] {
  font-size: 1em;
  color: #333;
  font-weight: 600;
  margin-right: 20px;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.fcm-delivery-type .woocommerce-input-wrapper {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.fcm-delivery-type .radio-option {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  color: #444;
  cursor: pointer;
}
.form-row.fcm-delivery-date {
  margin: 0;
  width: 100%;
}
.fcm-delivery-date label {
  font-size: 1em;
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.fcm-delivery-date .woocommerce-input-wrapper {
  display: block;
}
.fcm-delivery-date input[type="text"] {
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
.fcm-delivery-date input[type="text"]:focus {
  border-color: #582c82;
}
.flatpickr-calendar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #582c82;
  border-color: #582c82;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #ccc;
  background: 0 0;
  cursor: not-allowed;
}
@media (max-width: 600px) {
  .fcm-delivery-type {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .fcm-delivery-type label[for="fcm_delivery_type"] {
    margin-bottom: 10px;
  }
  .fcm-delivery-type .radio-option {
    font-size: 0.9em;
  }
  .fcm-delivery-type input[type="radio"] {
    width: 18px;
    height: 18px;
  }
  .fcm-delivery-type input[type="radio"]:checked::after {
    width: 10px;
    height: 10px;
  }
  .fcm-delivery-date input[type="text"] {
    max-width: 100%;
  }
}
.customer-container {
  max-width: 72.5rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.custom-shipping-class {
  padding-top: 24px !important;
}
.woocommerce-address-summary,
.woocommerce-address-summary td,
.woocommerce-address-summary th {
  border: 1px solid #e1e1e1 !important;
}
.woocommerce-address-summary th {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.woocommerce-address-summary td {
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nav-tabs-checkout {
  border: 0 !important;
}
.nav-tabs-checkout li {
  padding: 0;
  border: 0 !important;
}
.nav-tabs-checkout li a {
  position: relative;
  padding: 0 16px 0 0 !important;
  font-size: 14px;
  margin-right: 16px;
  font-weight: 500;
  border: 0 !important;
  opacity: 0.4;
  color: #000;
}
@media (min-width: 1024px) {
  .nav-tabs-checkout li a {
    padding: 0 24px 0 0 !important;
    font-size: 16px;
    margin-right: 24px;
  }
}
.nav-tabs-checkout li a.active {
  opacity: 1;
  color: #000;
}
.nav-tabs-checkout li a:hover {
  opacity: 1;
}
.nav-tabs-checkout li a:after {
  position: absolute;
  right: -5px;
  content: "/";
  opacity: 1;
}
.nav-tabs-checkout li:last-of-type a:after {
  content: "";
  font-weight: 700;
}
.checkout-tab {
  position: relative;
}
.checkout-tab .checkout-tab-overaly {
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  background-color: transparent;
  z-index: 1;
}
.checkout-tab a {
  z-index: 0;
}
form.woocommerce-checkout {
  margin: 0 auto;
  padding: 0 0.9375rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
form.woocommerce-checkout .includes_tax {
  display: block;
  white-space: nowrap;
}
form.woocommerce-checkout .tax_label {
  display: none;
}
form.woocommerce-checkout .shq-input-wrapper {
  display: block;
  width: 100%;
}
form.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  display: none;
}
form.woocommerce-checkout #customer_details {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media (max-width: 767.98px) {
  form.woocommerce-checkout #customer_details {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
form.woocommerce-checkout #customer_details .col-1,
form.woocommerce-checkout #customer_details .col-2 {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
form.woocommerce-checkout #customer_details .woocommerce-input-wrapper {
  width: 100%;
  display: block;
}
form.woocommerce-checkout #customer_details .form-row {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
form.woocommerce-checkout #customer_details .form-row-first {
  -webkit-flex: 0 0 calc(50% - 8px);
  -ms-flex: 0 0 calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
}
@media (max-width: 767.98px) {
  form.woocommerce-checkout #customer_details .form-row-first {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
form.woocommerce-checkout #customer_details .form-row-last {
  -webkit-flex: 0 0 calc(50% - 8px);
  -ms-flex: 0 0 calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
}
form.woocommerce-checkout #customer_details .form-row input,
form.woocommerce-checkout #customer_details .form-row select {
  display: block;
  width: 100%;
  min-height: auto;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e1e1e1;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
form.woocommerce-checkout #customer_details .form-row span.password-input {
  width: 100%;
  display: block;
}
form.woocommerce-checkout #customer_details .form-row label {
  display: block;
  width: 100%;
  font-size: 13px;
  margin-bottom: 2px;
  line-height: 16px;
  color: #000;
}
form.woocommerce-checkout #customer_details .form-row label .required {
  color: #000;
}
form.woocommerce-checkout #order_review #awdr_checkout_promotion_messages_data {
  display: none;
}
@media (max-width: 767.98px) {
  form.woocommerce-checkout #customer_details .form-row-last {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  form.woocommerce-checkout #order_review {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 2.5rem;
  }
}
form.woocommerce-checkout #order_review .order_review--wrapper {
  background: 0 0;
  padding: 0;
}
@media (max-width: 1023.98px) {
  form.woocommerce-checkout #order_review .order_review--wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  #order_review_edit_order {
  font-weight: 700;
  padding-top: 6px;
  padding-bottom: 3px;
  font-size: 12px;
  border-bottom: 2px solid #5c068c;
  text-decoration: none;
}
@media (min-width: 1024px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    #order_review_edit_order {
    padding-top: 10px;
    padding-bottom: 11px;
    font-size: 16px;
  }
}
form.woocommerce-checkout #order_review .order_review--wrapper h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  line-height: normal;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table {
  background: 0 0;
  border-radius: 0;
  border: 0;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  th {
  color: #5c068c;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  th.product-total {
  text-align: right;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td {
  margin-top: 9px;
  margin-bottom: 9px;
  padding: 0;
  border: 0 !important;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td.product-name {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  line-height: 1.2em;
  font-weight: 700;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td
  .product-meta {
  font-size: 12px;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td.product-name {
    line-height: 24px;
    gap: 12px;
  }
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td
    .product-meta {
    font-size: 16px;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td
  .product-meta
  .product-meta-sku {
  font-weight: 300;
  color: #666;
  font-size: 12px;
  display: none;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td
    .product-meta
    .product-meta-sku {
    font-size: 14px;
    display: block;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td
  .product-meta
  .product-meta-price {
  font-size: 12px;
  color: #666;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td
  .product-meta
  .product-meta-price
  .gst-note {
  font-weight: 300;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td
  .product-image
  img {
  height: auto;
  width: 50px;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td
    .product-meta
    .product-meta-price {
    font-size: 14px;
  }
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td
    .product-image
    img {
    width: 80px;
  }
}
@media (min-width: 1024px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td
    .product-image
    img {
    width: 140px;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td.product-total {
  padding-left: 12px;
  text-align: right;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td.product-total
  .checkout-quantity {
  font-size: 12px;
  color: #666;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td.product-total {
    padding-left: 24px;
  }
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td.product-total
    .checkout-quantity {
    font-size: 14px;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td.product-total
  .checkout-quantity
  .product-quantity {
  font-size: 12px;
  color: #666;
  font-weight: 300 !important;
  white-space: nowrap;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td.product-total
    .checkout-quantity
    .product-quantity {
    font-size: 14px;
  }
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tbody
  td.product-total
  .checkout-line-total {
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tfoot
  td {
  border: 0 !important;
  border-top: 0 !important;
  text-align: right;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tfoot
  th {
  padding-left: 0;
  border-top: 0;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-checkout-review-order-table
  tfoot
  .table-spacer
  .table-spacer-td {
  height: 0;
  display: block;
  margin-top: 16px;
  border-top: 1px solid #e1e1e1 !important;
}
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  .woocommerce-Price-amount--free {
  color: #5c068c;
  background: #ffd733;
  padding: 5px 8px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    .woocommerce-checkout-review-order-table
    tbody
    td.product-total
    .checkout-line-total {
    font-size: 16px;
  }
  .order_review_wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
  margin-bottom: 16px !important;
  padding: 0 !important;
}
.woocommerce-checkout #billing_phone_field {
  display: none !important;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.woocommerce-checkout .site-footer {
  margin-top: 6rem;
}
.woocommerce-checkout h3,
.woocommerce-checkout h3.custom-shipping-class {
  color: #000;
  padding-bottom: 0 !important;
  margin-bottom: 24px !important;
  border-bottom: none !important;
}
.woocommerce-checkout #order_review_heading {
  float: left;
  border-bottom: none;
}
.woocommerce-checkout #order_review_edit_order {
  float: right;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-checkout-payment h3,
.woocommerce-checkout .woocommerce-checkout-review-order h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-additional-fields {
  padding-bottom: 25px;
}
.woocommerce-checkout .woocommerce-additional-fields label {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-additional-fields .form-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.woocommerce-checkout
  .woocommerce-additional-fields
  .form-row
  .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-checkout .woocommerce-form-coupon .form-row.form-row-first input {
  border: 1px solid #ccc;
  height: 2.9375rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.625rem;
}
.woocommerce-checkout .woocommerce-form-coupon .form-row.form-row-last {
  float: left;
  margin-top: 0.625rem;
}
.woocommerce-checkout #payment {
  background: 0 0;
}
.woocommerce-checkout #payment .btn-accent {
  margin-top: 2.5rem;
  width: 100%;
}
.woocommerce-checkout #order_comments {
  font-weight: 500;
  height: 6em;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout #order_comments::-webkit-input-placeholder,
.woocommerce-checkout #order_comments:focus::-webkit-input-placeholder {
  transition: opacity 0.2s ease;
}
.woocommerce-checkout #order_comments:focus {
  border-color: #5c068c;
}
.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #shipping_city_field,
.woocommerce-checkout #shipping_postcode_field {
  display: none !important;
}
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-checkout .woocommerce {
  padding-top: 2.125rem;
}
.amount.click-and-collect {
  font-size: 10.5px !important;
  white-space: nowrap;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered,
.select2-results__option {
  font-size: 16px !important;
  color: #000 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  left: -10px;
  margin-top: 5px;
}
body .select2-container--default .select2-selection--single {
  border: 1px solid #ccc;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background: #5c068c !important;
}
.woocommerce-order-received .woocommerce.woocommerce-order {
  max-width: 92.5rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.woocommerce-order-received .woocommerce-customer-details h2,
.woocommerce-order-received .woocommerce-order-details h2 {
  padding-bottom: 1.25rem;
  font-size: 20px;
  margin-bottom: 1.25rem;
  color: #5c068c;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
}
.woocommerce-order-received .woocommerce-order-details h2 {
  margin-top: 30px;
}
.woocommerce-order-received .woocommerce-order-details table.shop_table th {
  color: #5c068c;
  tet-transform: uppercase;
}
.woocommerce-order-received .woocommerce-order-overview {
  margin-top: 20px !important;
  border: 1px solid #ccc;
  padding: 20px;
}
.woocommerce-shipping-fields__title {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.25rem;
}
.woocommerce-shipping-fields__title h3,
.woocommerce-shipping-fields__title p {
  margin: 0;
}
.woocommerce-shipping-fields__title p {
  font-size: 14px;
  line-height: 16px;
  color: #5c068c;
}
.woocommerce-shipping-fields__fields-wrapper-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.9375rem 1.25rem;
  background: #5c068c;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.woocommerce-shipping-fields__fields-wrapper-title p {
  color: #fff;
  margin: 0;
  padding-left: 1.140625rem;
  font-size: 1rem;
}
.woocommerce-shipping-fields__tabs .tabs {
  background: #ededee;
  padding: 1.25rem 1.25rem 1.625rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-shipping-fields__tabs .tabs li {
  list-style: none;
  cursor: pointer;
  border: 2px solid #bcabcd;
  box-sizing: border-box;
  border-radius: 4px 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #79569c;
  text-transform: uppercase;
  min-height: 52px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 277px;
  padding-left: 15px;
  transistion: all 0.3s linear;
}
.woocommerce-shipping-fields__tabs .tabs li.current,
.woocommerce-shipping-fields__tabs .tabs li:active,
.woocommerce-shipping-fields__tabs .tabs li:focus,
.woocommerce-shipping-fields__tabs .tabs li:hover {
  background: #5c068c;
  color: #ffd733;
}
.woocommerce-shipping-fields__tabs .tabs li svg {
  margin-right: 1.25rem;
}
.woocommerce-shipping-fields__tabs .tabs li svg path {
  fill: #79569c;
}
.woocommerce-shipping-fields__tabs .tabs li.current svg path,
.woocommerce-shipping-fields__tabs .tabs li:active svg path,
.woocommerce-shipping-fields__tabs .tabs li:focus svg path,
.woocommerce-shipping-fields__tabs .tabs li:hover svg path {
  fill: #ffd733;
}
.woocommerce-shipping-fields__tabs .tabs li:last-of-type {
  border-radius: 0 4px 4px 0;
}
.woocommerce-shipping-fields__tabs .tab_content_container {
  margin-top: 1.25rem;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked,
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:not(:checked) {
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 28px;
  height: 28px;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label,
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:not(:checked)
  + label {
  position: relative;
  padding-left: 41px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #5c068c;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label {
  color: #fedd00;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label:before,
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:not(:checked)
  + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #5c068c;
  border-radius: 100%;
  background: #fff;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label:after,
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:not(:checked)
  + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 8px;
  height: 16px;
  border: solid #5c068c;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:not(:checked)
  + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label:after {
  opacity: 1;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  [type="radio"]:checked
  + label:before {
  background: #fedd00;
  border: 2px solid #fedd00;
}
.woocommerce-shipping-fields__tabs .tab_content_container__inner {
  background: #fff;
  border: 2px solid #bcabcd;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 1.25rem;
}
.woocommerce-shipping-fields__tabs .tab_content_container__inner.active {
  background: #5c068c;
  border-color: #5c068c;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner.active
  .forklift-shipping {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner.active
  .shipping-free-content
  p {
  color: #fff;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner
  .shipping-free-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 8px;
  padding-left: 2.5625rem;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner
  .forklift-shipping {
  display: none;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 8px;
  padding-left: 2.5625rem;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner
  .forklift-shipping__content
  p {
  font-weight: 700;
  color: #fff;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container__inner
  .forklift-shipping__content
  p.label {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.woocommerce-shipping-fields__tabs .tab_content_container .options-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  .options-wrapper__right
  span {
  color: #fedd00;
  font-weight: 700;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  .options-wrapper:last-of-type {
  margin-bottom: 0;
}
.woocommerce-shipping-fields__tabs
  .tab_content_container
  .options-wrapper
  label {
  font-size: 18px;
  color: #5c068c;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 5px;
}
.woocommerce-shipping-fields__tabs .tab-content {
  background: #ededee;
  border-radius: 4px;
  padding: 1.625rem 3.125rem;
  display: none;
}
@media (max-width: 767.98px) {
  .woocommerce-shipping-fields__tabs .tab-content {
    padding: 1.625rem 1.25rem;
  }
}
.woocommerce-shipping-fields__tabs .tab-content.current {
  display: inherit;
}
body.woocommerce-checkout tr.coupon_checkout td {
  text-align: left !important;
}
body.woocommerce-checkout tr.coupon_checkout form.checkout_coupon {
  position: relative;
  margin-top: 0 !important;
}
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="text"] {
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  width: 100%;
  padding: 10px 12px;
  height: 40px;
}
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="submit"] {
  height: 40px;
  background: #5c068c !important;
  border-radius: 0 0 240px;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  width: 40%;
}
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="submit"]:hover {
  opacity: 0.9;
}
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="submit"]:active,
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="submit"]:focus,
body.woocommerce-checkout
  tr.coupon_checkout
  form.checkout_coupon
  .checkout_coupon_wrapper
  input[type="submit"]:hover {
  background: #5c068c;
  color: #fff;
}
body.woocommerce-checkout #payment .wc_payment_methods {
  padding: 0;
  margin-bottom: 0;
  border-bottom: 0 solid transparent !important;
}
body.woocommerce-checkout #payment .wc_payment_methods .payment_header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 20px;
}
body.woocommerce-checkout #payment .wc_payment_methods .payment_header label {
  margin-bottom: 0;
}
body.woocommerce-checkout #payment .wc_payment_methods .wc_payment_method {
  padding-left: 0;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  margin-bottom: 1em;
}
body.woocommerce-checkout
  #payment
  .wc_payment_methods
  .wc_payment_method.payment-selected {
  border: 1px solid #582c82;
}
body.woocommerce-checkout
  #payment
  .wc_payment_methods
  .wc_payment_method
  .payment_box {
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 0;
  margin-top: 0;
}
body.woocommerce-checkout
  #payment
  .wc_payment_methods
  .wc_payment_method
  .payment_box::before {
  display: none;
  border: 0 !important;
}
.woocommerce-checkout-returning-login__wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  background: #5c068c;
  padding: 40px 80px;
  margin-bottom: 40px;
}
@media (max-width: 1279.98px) {
  .woocommerce-checkout-returning-login__wrapper {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login__wrapper {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 20px;
  }
}
.woocommerce-checkout-returning-login__wrapper h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 22px;
  color: #fedd00;
  text-transform: uppercase;
}
.woocommerce-checkout-returning-login__wrapper .form-header {
  padding-right: 1.25rem;
  -webkit-flex: 0 0 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  max-width: 24%;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login__wrapper .form-header {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0;
  border-radius: 0;
  -webkit-flex: 0 0 76%;
  -ms-flex: 0 0 76%;
  flex: 0 0 76%;
  max-width: 76%;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  position: relative;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .woocommerce-form-login__rememberme {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login
    .woocommerce-form-login__rememberme {
    position: relative;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .woocommerce-form-login__submit {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  font-size: 1.25rem;
  padding: 0.625rem 3.75rem 0.625rem 30px;
  border-radius: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  -webkit-mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  -webkit-mask-position:
    bottom right,
    top left;
  mask-position:
    bottom right,
    top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #fedd00;
  color: #5c068c;
  height: 40px;
  width: 136px;
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .woocommerce-form-login__submit:active,
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .woocommerce-form-login__submit:focus,
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .woocommerce-form-login__submit:hover {
  background: #5c068c !important;
  color: #fff;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login
    .woocommerce-form-login__submit {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 20px;
    width: 100%;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .lost_password {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .lost_password
  a {
  color: #fff;
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .form-row {
  float: none;
  -webkit-flex: 0 0 23%;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login
    .form-row {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .form-row.form-row-first {
  -webkit-flex: 0 0 45%;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  padding: 0 7px;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login
    .form-row.form-row-first {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  .form-row.form-row-last {
  -webkit-flex: 0 0 32%;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 32%;
  padding: 0 7px;
}
@media (max-width: 767.98px) {
  .woocommerce-checkout-returning-login
    form.woocommerce-form.woocommerce-form-login.login
    .form-row.form-row-last {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  label {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0.75rem;
}
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  input[type="password"],
.woocommerce-checkout-returning-login
  form.woocommerce-form.woocommerce-form-login.login
  input[type="text"] {
  font-size: 1rem;
  color: #5c068c;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 0.625rem;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.woocommerce-checkout .woocommerce-account-fields #createaccount {
  display: inline !important;
  width: auto !important;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none;
}
body.woocommerce-checkout
  form.woocommerce-checkout
  #customer_details
  .woocommerce-form__input-checkbox.input-checkbox {
  display: inline-block !important;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 16px;
}
body.woocommerce-checkout
  form.woocommerce-checkout
  #customer_details
  .mailchimp-newsletter {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
body.woocommerce-checkout
  form.woocommerce-checkout
  #customer_details
  .form-row
  label.woocommerce-form__label.woocommerce-form__label-for-checkbox {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin-bottom: 0;
}
body.woocommerce-checkout
  .payment_box
  .woocommerce-SavedPaymentMethods-saveNew {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.section-checkout #awdr_checkout_promotion_messages,
.section-checkout .breadcrumbs_outer {
  display: none;
}
body.woocommerce-checkout
  .payment_box
  .woocommerce-SavedPaymentMethods-saveNew
  #wc-stripe-new-payment-method {
  margin-top: 4px;
}
body.woocommerce-checkout
  .payment_box
  .woocommerce-SavedPaymentMethods-saveNew
  label {
  line-height: 20px;
}
.woocommerce-form-register input,
.woocommerce-form-register label {
  line-height: 1.6rem;
  margin: 0;
}
.woocommerce-form-register label span {
  line-height: 0;
}
.camera-disclaimer {
  font-weight: light;
  font-size: 12px;
}
body.admin-bar .checkout-header {
  margin-top: 32px;
}
body .sticky-top {
  top: 32px !important;
}
@media (min-width: 768px) {
  .section-checkout {
    background: linear-gradient(to left, #f8f8f8 50%, #fff 50%);
  }
}
.checkout-header .checkout-logo {
  max-width: 220px;
}
.forklift-heading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
  margin-top: 28px;
}
.forklift-heading .primary-bg-circle {
  background: #5c068c;
  width: 61px;
  height: 59px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.forklift-heading .primary-bg-circle .primary-bg-circle-inner {
  background-color: #fedd00;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
}
.forklift-heading .forklift-heading-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 0 24px 0 0;
  width: 100%;
  min-height: 59px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-top: 1px solid #5c068c;
  border-right: 1px solid #5c068c;
  border-bottom: 1px solid #5c068c;
  color: #fff;
  background-color: #5c068c;
}
.thankyou-shop-link,
.woocommerce-to-payment,
.woocommerce-to-ship {
  background: #fedd00;
  transition:
    color 0.2s ease-in-out,
    background 0.2s ease-in-out;
  white-space: nowrap;
}
.checkout_wrapper {
  width: 100%;
  display: inline;
}
.checkout_wrapper .order_tabs_wrapper .checkout_pagination_wrapper {
  margin-bottom: 36px;
  display: block;
}
@media (min-width: 768px) {
  .checkout_wrapper .order_review_wrapper,
  .checkout_wrapper .order_tabs_wrapper {
    float: left;
    width: 50%;
  }
}
.custom-billing-checkbox {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.custom-billing-checkbox .woocommerce-input-wrapper .checkbox {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
}
.custom-billing-checkbox .woocommerce-input-wrapper .checkbox input {
  width: auto !important;
}
.custom-billing-checkbox .woocommerce-input-wrapper .checkbox .optional {
  display: none;
}
.checkout_wrapper #billing_company_field,
.checkout_wrapper #billing_email_field,
.checkout_wrapper #billing_first_name_field,
.checkout_wrapper #billing_last_name_field,
.checkout_wrapper #billing_po_field {
  display: none !important;
}
.woocommerce-to-payment,
.woocommerce-to-ship {
  border-radius: 0 0 240px;
  color: #5c068c;
  font-size: 14px;
  font-weight: 700;
  border: 0 solid #bcabcd;
  padding: 11px 22px 11px 11px;
}
@media (min-width: 768px) {
  .woocommerce-to-payment,
  .woocommerce-to-ship {
    font-size: 16px;
    width: 100%;
    padding: 11px 40px;
  }
}
.woocommerce-to-payment:hover,
.woocommerce-to-ship:hover {
  background: #5c068c;
  color: #fedd00;
}
.checkout-pagination {
  margin-top: 35px;
}
.checkout-pagination .col-* {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.checkout-pagination .shop-link {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .checkout-header .checkout-logo {
    max-width: 150px;
  }
  .checkout-pagination .shop-link {
    font-size: 13px;
  }
}
.checkout_heading,
.woocommerce-order-details-custom h2,
form.woocommerce-checkout
  #order_review
  .order_review--wrapper
  h3.order_review_heading {
  display: block;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 300;
  color: #5c068c !important;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .checkout_heading,
  .woocommerce-order-details-custom h2,
  form.woocommerce-checkout
    #order_review
    .order_review--wrapper
    h3.order_review_heading {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.checkout_sub_heading {
  margin-top: -18px !important;
  margin-bottom: 36px !important;
  color: #666 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: block;
}
.wc_coupon_message_wrap {
  padding: 0 !important;
}
.checkout_footer_menu {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .checkout_footer_menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
  }
  .checkout_footer_menu li {
    padding: 0;
    margin: 0;
  }
  .checkout_footer_menu li a {
    padding: 0;
    margin: 0;
    color: #666;
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.place-order {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#custom_po_checkout_field {
  width: 100%;
}
#custom_po_checkout_field p {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#custom_po_checkout_field label {
  font-weight: 700;
  font-size: 18px;
}
#custom_po_checkout_field label .optional {
  font-weight: 300;
  font-size: 0.7rem;
}
#custom_po_checkout_field input {
  display: block;
  width: 100%;
  min-height: auto;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e1e1e1;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
div.woocommerce-thankyou-order-received {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
div.woocommerce-thankyou-order-received img {
  max-width: 84px;
  height: auto;
}
div.woocommerce-thankyou-order-received h3 {
  margin-top: 28px;
  color: #582c82;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
div.woocommerce-thankyou-order-received p {
  text-align: center;
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
}
td.product-name {
  border-bottom: 0 solid transparent !important;
}
#fcm_delivery_options {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
#fcm_delivery_options h3 {
  margin: 0 0 15px;
  font-size: 1.2em;
  color: #333;
  font-weight: 600;
}
.fcm-delivery-type.form-row-wide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.fcm-delivery-type .woocommerce-input-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.fcm-delivery-type input[type="radio"] {
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #582c82;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.fcm-delivery-type input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #582c82;
  border-radius: 50%;
}
.fcm-delivery-type label {
  font-size: 1em;
  color: #444;
  line-height: 1.5;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.fcm-delivery-type input[type="radio"]:hover {
  border-color: #7a4ca3;
}
.fcm-delivery-date.form-row-wide {
  margin-top: 15px;
}
.fcm-delivery-date input[type="date"] {
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
.fcm-delivery-date input[type="date"]:focus {
  border-color: #582c82;
}
@media (max-width: 600px) {
  .fcm-delivery-type label {
    font-size: 0.9em;
  }
  .fcm-delivery-type input[type="radio"] {
    width: 18px;
    height: 18px;
  }
  .fcm-delivery-type input[type="radio"]:checked::after {
    width: 10px;
    height: 10px;
  }
  .fcm-delivery-date input[type="date"] {
    max-width: 100%;
  }
}
.woocommerce-form__label-for-checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.woocommerce .cart_wrapper {
  margin: 6.25rem auto;
}
.woocommerce .woocommerce-notices-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-top: 1rem;
}
.sitehq-rrp {
  color: #6d6e71 !important;
  font-size: 60% !important;
  font-style: italic !important;
  text-decoration: line-through !important;
}
@media (min-width: 768px) {
  .sitehq-rrp--br {
    display: none;
  }
  .sitehq-rrp {
    color: #6d6e71 !important;
    font-size: 80% !important;
  }
  .site-hq-custom_pricing_text {
    font-size: 20px !important;
  }
}
.site-hq-custom_pricing_text,
.site-hq-custom_pricing_text_loop {
  font-weight: 600;
  color: var(--wp--preset--color--primary) !important;
  background-color: var(--wp--preset--color--accent);
  display: inline-block;
}
.site-hq-custom_pricing_text_loop {
  padding: 6px 8px;
  margin: 10px auto 0;
}
.site-hq-custom_pricing_text {
  padding: 6px 0 6px 8px;
  margin-bottom: 12px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.site-hq-custom_pricing_text::after {
  z-index: 0;
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  right: -50px;
  width: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url(../../images/orange-blade.svg);
}
.pro__name .site-hq-custom_pricing_text {
  font-size: 15px !important;
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .pro__name .site-hq-custom_pricing_text {
    font-weight: 600;
    color: var(--wp--preset--color--primary) !important;
    background-color: var(--wp--preset--color--accent);
    padding: 3px 0 3px 6px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    font-size: 13px !important;
  }
  .pro__name .site-hq-custom_pricing_text::after {
    right: -30px;
    width: 30px;
  }
}
.pro__name .pricing-text-balancer {
  height: 30.75px;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .pro__name .pricing-text-balancer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.sitehq-list-rrp {
  font-weight: 400;
  text-decoration: line-through;
  color: #666 !important;
  font-size: 14px;
  font-style: italic;
}
.woocommerce-order-received .woocommerce-columns--addresses {
  display: none !important;
}
.woocommerce-order-received .woocommerce-order {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.9375rem;
}
.woocommerce-order-received .woocommerce-order ul.woocommerce-order-overview {
  margin-bottom: 1.25rem;
}
.woocommerce-order-received
  .woocommerce-order
  ul.woocommerce-order-overview
  li {
  width: 100%;
  margin: 0 0 10px !important;
}
.woocommerce-order-received
  .woocommerce-order
  ul.woocommerce-order-overview
  li:last-child {
  margin-bottom: 0;
}
.woocommerce-order-received
  .woocommerce-order
  .woocommerce-thankyou-order-received {
  margin-bottom: 80px;
}
.thankyou-page-wrapper .checkout_pagination_wrapper {
  margin-bottom: 45px;
}
.woocommerce-order-details-custom .includes_tax,
.woocommerce-order-details-custom .woocommerce-Price-amount {
  text-align: right;
  display: inline-block;
}
.woocommerce-order-details-custom table.woocommerce-table {
  background: 0 0;
  border-radius: 0;
  border: 0;
}
.woocommerce-order-details-custom table.woocommerce-table a {
  color: #000;
}
.module__browse h3,
.thankyou-shop-link,
.woocommerce-order-details-custom table.woocommerce-table th {
  color: #5c068c;
}
.woocommerce-order-details-custom table.woocommerce-table th.product-total {
  text-align: right;
}
.woocommerce-order-details-custom table.woocommerce-table tbody td {
  margin-top: 9px;
  margin-bottom: 9px;
  padding: 0;
  border: 0 !important;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td.product-name {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  line-height: 1.2em;
  font-weight: 700;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td
  .product-meta {
  font-size: 12px;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td.product-name {
    line-height: 24px;
    gap: 12px;
  }
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td
    .product-meta {
    font-size: 16px;
  }
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td
  .product-meta
  .product-meta-sku {
  font-weight: 300;
  color: #666;
  font-size: 12px;
  display: none;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td
    .product-meta
    .product-meta-sku {
    font-size: 14px;
    display: block;
  }
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td
  .product-meta
  .product-meta-price {
  font-size: 12px;
  color: #666;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td
  .product-meta
  .product-meta-price
  .gst-note {
  font-weight: 300;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td
  .product-image
  img {
  height: auto;
  width: 50px;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td
    .product-meta
    .product-meta-price {
    font-size: 14px;
  }
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td
    .product-image
    img {
    width: 80px;
  }
}
@media (min-width: 1024px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td
    .product-image
    img {
    width: 140px;
  }
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td.product-total {
  padding-left: 12px;
  text-align: right;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td.product-total
  .checkout-quantity {
  font-size: 12px;
  color: #666;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td.product-total {
    padding-left: 24px;
  }
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td.product-total
    .checkout-quantity {
    font-size: 14px;
  }
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td.product-total
  .checkout-quantity
  .product-quantity {
  font-size: 12px;
  color: #666;
  font-weight: 300 !important;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td.product-total
    .checkout-quantity
    .product-quantity {
    font-size: 14px;
  }
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tbody
  td.product-total
  .checkout-line-total {
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .woocommerce-order-details-custom
    table.woocommerce-table
    tbody
    td.product-total
    .checkout-line-total {
    font-size: 16px;
  }
}
.woocommerce-order-details-custom table.woocommerce-table tfoot td {
  border: 0 !important;
  border-top: 0 !important;
  text-align: right;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.woocommerce-order-details-custom table.woocommerce-table tfoot th {
  padding-left: 0;
  border-top: 0;
}
.woocommerce-order-details-custom
  table.woocommerce-table
  tfoot
  .table-spacer
  .table-spacer-td {
  height: 0;
  display: block;
  border-top: 1px solid #e1e1e1 !important;
}
.thankyou-shop-link {
  border-radius: 0 0 240px;
  font-size: 14px;
  font-weight: 700;
  border: 0 solid #bcabcd;
  padding: 11px 22px 11px 11px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .thankyou-shop-link {
    font-size: 16px;
    padding: 11px 40px;
  }
}
.thankyou-shop-link:hover {
  background: #5c068c;
  color: #fedd00;
}
body .module__browse .products-wrapper,
body.page-template-our-range .products-wrapper {
  width: 100%;
}
body .module__browse .slick-dots,
body.page-template-our-range .slick-dots {
  bottom: -2.5rem;
  margin: 0;
  right: 0;
}
body .module__browse .slick-dots li,
body.page-template-our-range .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.875rem 0 0;
  -webkit-flex: 0 0 27px;
  -ms-flex: 0 0 27px;
  flex: 0 0 27px;
  max-width: 27px;
}
body .module__browse .slick-dots li button,
body.page-template-our-range .slick-dots li button {
  width: 100%;
  height: 100%;
}
body .module__browse .slick-dots li button::before,
body.page-template-our-range .slick-dots li button::before {
  color: #fff;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}
body .module__browse .slick-dots li.slick-active button::before,
body.page-template-our-range .slick-dots li.slick-active button::before {
  color: #fedd00;
  background: #fedd00;
}
body .module__browse .slick-arrow,
body.page-template-our-range .slick-arrow {
  width: 0.75rem;
  height: 1.0625rem;
  z-index: 9;
  top: auto;
  bottom: -1.375rem;
}
body .module__browse .slick-arrow::before,
body.page-template-our-range .slick-arrow::before {
  display: none;
}
body .module__browse .slick-arrow.slick-prev,
body.page-template-our-range .slick-arrow.slick-prev {
  left: 42%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/left_arrow.svg) no-repeat;
  background-size: contain;
}
body .module__browse .slick-arrow.slick-next,
body.page-template-our-range .slick-arrow.slick-next {
  right: 42%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/right_arrow.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  body .module__browse .slick-arrow.slick-prev,
  body.page-template-our-range .slick-arrow.slick-prev {
    left: 33%;
  }
  body .module__browse .slick-arrow.slick-next,
  body.page-template-our-range .slick-arrow.slick-next {
    right: 33%;
  }
}
body .module__browse .woocommerce.columns-4,
body.page-template-our-range .woocommerce.columns-4 {
  background: #ededee;
  padding-top: 2.1875rem;
  padding-bottom: 0.9375rem;
}
@media (max-width: 767.98px) {
  body .module__browse .slick-arrow,
  body.page-template-our-range .slick-arrow {
    top: auto;
    bottom: -1.375rem;
    width: 0.75rem;
    height: 1.0625rem;
  }
  body .module__browse .woocommerce.columns-4,
  body.page-template-our-range .woocommerce.columns-4 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
body .module__browse .woocommerce.columns-4 .products,
body.page-template-our-range .woocommerce.columns-4 .products {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media (max-width: 1279.98px) {
  body .module__browse .woocommerce.columns-4 .products,
  body.page-template-our-range .woocommerce.columns-4 .products {
    padding: 0 0.84375rem;
  }
}
body .module__browse .woocommerce.columns-4 .products li,
body.page-template-our-range .woocommerce.columns-4 .products li {
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0 0.625rem;
  text-align: center;
}
@media (max-width: 1279.98px) {
  body .module__browse .woocommerce.columns-4 .products li,
  body.page-template-our-range .woocommerce.columns-4 .products li {
    margin-bottom: 0.1875rem;
    padding: 0 0.09375rem;
    -webkit-flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .module__browse .slick-dots {
    bottom: -1.5625rem !important;
  }
}
@media (max-width: 1023.98px) {
  body .module__browse .woocommerce.columns-4 .products li,
  body.page-template-our-range .woocommerce.columns-4 .products li {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
body .module__browse .woocommerce.columns-4 .products li a,
body.page-template-our-range .woocommerce.columns-4 .products li a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  height: 15.125rem;
  padding: 1.25rem 0.8125rem;
}
body .module__browse .woocommerce.columns-4 .products li a img,
body.page-template-our-range .woocommerce.columns-4 .products li a img {
  max-width: 16.0625rem;
  margin: 0 auto 0.3125rem;
  max-height: 10.625rem;
  object-position: center;
  font-family: "object-fit:contain;object-position:center";
  object-fit: contain;
}
body .module__browse .woocommerce.columns-4 .products li a h2,
body.page-template-our-range .woocommerce.columns-4 .products li a h2 {
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 400;
  padding-bottom: 0;
}
body .module__browse .woocommerce.columns-4 .products li a h2 mark,
body.page-template-our-range .woocommerce.columns-4 .products li a h2 mark {
  display: none;
}
.module__browse {
  background: #ededee;
}
@media (max-width: 767.98px) {
  body .module__browse .woocommerce.columns-4 .products li a,
  body.page-template-our-range .woocommerce.columns-4 .products li a {
    height: 100%;
    min-height: 11.875rem;
  }
  body .module__browse .woocommerce.columns-4 .products li a img,
  body.page-template-our-range .woocommerce.columns-4 .products li a img {
    max-height: 6.25rem;
  }
  body .module__browse .woocommerce.columns-4 .products li a h2,
  body.page-template-our-range .woocommerce.columns-4 .products li a h2 {
    font-size: 1.125rem;
  }
  .module__browse .slick-initialized .slick-slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}
.module__browse .btn,
.module__browse .typography a.button,
.typography .module__browse a.button {
  margin-top: 2.5rem;
}
.module__browse .slick-list.draggable {
  margin-bottom: 2.5rem;
}
body .module__browse .woocommerce.columns-4 .products .slick-dots li {
  -webkit-flex: unset !important;
  -ms-flex: unset !important;
  flex: unset !important;
  max-width: initial !important;
  width: 20px;
  margin-right: 10px;
}
body.archive .content-area {
  width: 100%;
}
.woocommerce-tabs .product--accordion-features p,
.woocommerce-tabs p {
  line-height: 22px !important;
}
.woocommerce-tabs .product--accordion-features ul {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-tabs .product--accordion-features ul li {
  background: url(../../images/icons/yellow_star.svg) left 0 no-repeat;
  margin-bottom: 1.125rem;
  padding-left: 30px;
  background-size: inherit;
  line-height: 22px;
}
.woocommerce-tabs .product--accordion-features ul li:last-child {
  margin-bottom: 0;
}
.woocommerce-tabs .table-responsive table tr td {
  border: 0.0625rem solid #ededee;
  box-sizing: border-box;
  padding: 1rem 1.0625rem;
}
.woocommerce-tabs .table-responsive table tr td:first-child {
  background: #bcabcd;
  width: 12.5rem;
}
@media (max-width: 767.98px) {
  .woocommerce-tabs .table-responsive table tr td:first-child {
    width: 6.875rem;
  }
}
.woocommerce-tabs .table-responsive table tr td:last-child {
  background: #ded5e6;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1875;
}
.woocommerce-tabs .accordion .card {
  margin-bottom: 24px;
  background-color: #fff;
  border: none;
}
.woocommerce-tabs .accordion .card .card-header {
  background-color: #fff;
  padding: 0;
}
.woocommerce-tabs .accordion .card .card-header h5 {
  margin-top: 0;
  margin-bottom: 0;
}
.woocommerce-tabs .accordion .card .btn-link {
  width: 100%;
  text-align: left;
  padding: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  border-bottom: 1px solid #ccc !important;
}
@media (min-width: 768px) {
  .woocommerce-tabs .accordion .card .btn-link {
    font-size: 42px;
  }
}
.woocommerce-tabs .accordion .card .btn-link.collapsed:hover {
  color: #5c068c;
  text-decoration: none;
}
.woocommerce-tabs .accordion .card .btn-link.collapsed::after {
  content: "\f107";
  font-family: FontAwesome;
  float: right;
  font-size: 24px;
  color: #000;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.woocommerce-tabs .accordion .card .btn-link:not(.collapsed)::after {
  content: "\f106";
  font-family: FontAwesome;
  float: right;
  font-size: 24px;
  color: #000;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.woocommerce-tabs .accordion .card .btn-link .collapsed:hover {
  color: #5c068c;
}
.woocommerce-tabs .accordion .card .card-body {
  background-color: #fff;
  border: none;
  padding: 15px 0;
}
.woocommerce-tabs .accordion .card .card-body ul.tabs {
  margin: 0 0 1.3125rem;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link {
  display: inline-block;
  padding: 0;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  text-align: center;
  text-transform: uppercase;
  color: #5c068c;
  margin: 0 0.625rem;
  cursor: pointer;
}
.woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link.current,
.woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link:hover {
  border-bottom: 0.125rem solid;
}
@media (max-width: 1023.98px) {
  .woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link.current {
    border-top-width: 1px;
    border-bottom: 0;
  }
  .woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link {
    background: url(../../images/icons/select_drpdown_icon.svg) 94% no-repeat
      #fff;
    width: 100%;
    text-align: left;
    border-top: 0.0625rem solid #333;
    padding: 1.0625rem 0;
    margin: 0;
  }
  .woocommerce-tabs .accordion .card .card-body ul.tabs li.tab-link:last-child {
    border-bottom: 0.0625rem solid #333;
  }
}
.woocommerce-tabs .accordion .card .card-body .accord-header {
  background: #bcabcd;
  border: 1px solid #cfcfcf;
  padding: 0.96875rem 1.25rem 0.96875rem 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  color: #333;
  position: relative;
}
.woocommerce-tabs .accordion .card .card-body .accord-header:after {
  position: absolute;
  content: "";
  right: 1.25rem;
  top: 1.125rem;
  height: 1.25rem;
  width: 1.25rem;
  background: url(../../images/icons/select_drpdown_icon.svg) center right
    no-repeat;
  transition: all 0.4s ease-in-out;
}
.woocommerce-tabs .accordion .card .card-body .accord-header.on::after {
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1023.98px) {
  .woocommerce-tabs .accordion .card .card-body .accord-header {
    padding-right: 2.25rem;
  }
}
.woocommerce-tabs .accordion .card .card-body .accord-content {
  display: none;
  background: #ded5e6;
  padding: 0.9375rem 1rem 1.375rem;
}
.woocommerce-tabs .accordion .card .card-body .__text {
  background: #ded5e6;
  padding: 1.0625rem 1rem 0.6875rem;
}
.woocommerce-tabs .accordion .card .card-body p {
  margin-bottom: 0.625rem;
  font-size: 16px;
  line-height: 19px;
}
.woocommerce-tabs .accordion .card .card-body .accordion {
  border-top: 1px solid #5c068c;
}
.woocommerce-tabs .accordion .card .card-body .accordion &gt; .card {
  border: 0;
  border-bottom: 1px solid #5c068c;
  border-radius: 0;
  padding-bottom: 1.0625rem;
}
.woocommerce-tabs
  .accordion
  .card
  .card-body
  .accordion
  &gt; .card
  &gt; .card-header {
  border-radius: 0;
  margin-bottom: -1px;
  background: 0 0;
  border-bottom: 0;
  padding: 17px 0 0;
}
.woocommerce-tabs
  .accordion
  .card
  .card-body
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button {
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  outline: 0 !important;
  box-shadow: none;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}
.woocommerce-tabs
  .accordion
  .card
  .card-body
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button:after {
  content: "";
  background: url(../../images/icons/select_drpdown_icon.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7.5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.woocommerce-tabs
  .accordion
  .card
  .card-body
  .accordion
  &gt; .card
  &gt; .card-header
  &gt; h2
  &gt; button.collapsed:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.woocommerce-tabs .accordion #faqAccordion .card {
  margin-bottom: -1px;
  border: none;
}
.woocommerce-tabs .accordion #faqAccordion .card .card-header {
  background-color: #f8f9fa;
  padding: 0;
  border-bottom: 1px solid #dee2e6;
}
.woocommerce-tabs .accordion #faqAccordion .card .card-header h6 {
  margin-top: 0;
  margin-bottom: 0;
}
.woocommerce-tabs .accordion #faqAccordion .card .btn-link {
  font-size: 46px;
  font-weight: 700;
  padding: 10px 0;
  color: #000;
  transition: color 0.3s ease;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.woocommerce-tabs .accordion #faqAccordion .card .btn-link:hover {
  color: #5c068c;
}
.woocommerce-tabs .accordion #faqAccordion .card .btn-link.collapsed::after {
  content: "\f107";
  font-family: FontAwesome;
  float: right;
  font-size: 24px;
  color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.woocommerce-tabs
  .accordion
  #faqAccordion
  .card
  .btn-link:not(.collapsed)::after {
  content: "\f106";
  font-family: FontAwesome;
  float: right;
  font-size: 24px;
  color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.woocommerce-tabs .accordion #faqAccordion .card .btn-link:hover::after {
  color: #5c068c;
}
.woocommerce-tabs .accordion #faqAccordion .card .card-body {
  background-color: #fff;
  border: none;
  font-size: 0.9em;
  padding: 10px 0;
}
.sidecart-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000001;
  overflow: auto;
  display: none;
}
.sidecart-wrapper__inner {
  min-height: 100vh;
  max-width: 375px;
  background: #fff;
  margin: 0 0 0 auto;
  position: relative;
}
.sidecart-wrapper__title-close {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 27px 20px;
  background: #5c068c;
  height: 95px;
}
.sidecart-wrapper__title-close h2 {
  margin: 0;
  color: #fedd00;
  font-weight: 400;
}
.sidecart-wrapper__title-close .close {
  cursor: pointer;
  color: #bcabcd;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 300;
}
.sidecart-wrapper__title-close .close span {
  width: 18px;
  height: 18px;
  background: #bcabcd;
  font-size: 13px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  position: relative;
  top: -2px;
}
.sidecart-wrapper__title-close .close:hover {
  color: #fff;
}
.sidecart-wrapper__content {
  padding: 20px;
}
.sidecart-wrapper__content--empty {
  height: calc(100vh - 95px - 40px);
}
.sidecart-wrapper__content--inner {
  position: relative;
  overflow: hidden;
}
.sidecart-wrapper__content--inner.sidecart--updating:before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.sidecart-wrapper__content--inner.sidecart--updating:after {
  position: absolute;
  content: "";
  background: url(../../images/woocommerce/loader.gif) center center no-repeat;
  background-size: 2.5rem 2.5rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.sidecart-wrapper__content--items-count h4 {
  color: #5c068c;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.625rem;
  margin-bottom: 0.875rem;
}
.sidecart-wrapper__content--items-count .count {
  padding-left: 0.875rem;
}
.sidecart-wrapper__content a.remove {
  color: #5c068c !important;
  width: auto;
  height: auto;
  font-size: inherit;
}
.sidecart-wrapper__content a.remove:hover {
  color: #5c068c !important;
  background: 0 0 !important;
}
.sidecart-wrapper__content--form table tr.product-row {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  display: inline-block;
  width: 100%;
}
.sidecart-wrapper__content--form table tr.Shipping-text td {
  color: #666;
  font-size: 14px;
  line-height: 16.24px;
  font-weight: 400;
  text-align: right;
  padding-top: 10px;
  width: 100%;
}
.sidecart-wrapper__content--form table tr.row-subtotal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.sidecart-wrapper__content--form table tr.row-subtotal td {
  color: #5c068c;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}
.sidecart-wrapper__content--form table tr.row-subtotal td.total {
  text-transform: uppercase;
}
.sidecart-wrapper__content--form table tr.row-subtotal td.total-price {
  color: #666;
  text-align: right;
}
.sidecart-wrapper__content--form table tr td {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.sidecart-wrapper__content--form table tr td.thumbnail {
  float: left;
  display: inline-block;
  width: 85px;
  height: 73px;
  padding-right: 0.9375rem;
}
.sidecart-wrapper__content--form table tr td.product-name {
  width: calc(100% - 85px);
  display: block !important;
  text-align: left !important;
  margin: 0 0 0 auto;
}
.sidecart-wrapper__content--form table tr td.product-name a {
  color: #333;
  font-weight: 800;
  margin-bottom: 0.3125rem;
  display: block;
  font-size: 1rem;
  word-break: break-word;
}
.sidecart-wrapper__content--form table tr td.product-name .subtotal {
  color: #666;
  font-weight: 700;
}
.sidecart-wrapper__content--form table tr td.product-name .subtotal .tax_label {
  display: none;
}
.sidecart-wrapper__content--form table tr td .action-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.3125rem;
}
.sidecart-wrapper__content--form table tr td .action-row .remove-item {
  margin: 0 0.625rem 0 0;
}
.sidecart-wrapper__content--form
  table
  tr
  td
  .action-row
  .sidecart-quantity
  .qty_btn {
  height: 1.25rem;
  width: 1.25rem;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}
.sidecart-wrapper__content--form
  table
  tr
  td
  .action-row
  .sidecart-quantity
  .qty_btn:active,
.sidecart-wrapper__content--form
  table
  tr
  td
  .action-row
  .sidecart-quantity
  .qty_btn:focus,
.sidecart-wrapper__content--form
  table
  tr
  td
  .action-row
  .sidecart-quantity
  .qty_btn:visited {
  box-shadow: 0.0625rem 0.0625rem 0.25rem #222;
  background: #ddd;
}
.sidecart-wrapper__content--form
  table
  tr
  td
  .action-row
  .sidecart-quantity
  .qty {
  border: 1px solid #ccc;
  width: 65px;
  background: #fff;
  padding: 0.9375rem 0.6875rem;
  border-radius: 0.25rem;
  height: 2.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  text-align: center;
  margin: 0 5px;
}
.sidecart-wrapper .cart-collaterals {
  margin-top: 3.125rem;
}
.sidecart-wrapper .cart-collaterals .btn,
.sidecart-wrapper .cart-collaterals .typography a.button,
.typography .sidecart-wrapper .cart-collaterals a.button {
  width: 100%;
  margin: 4px 0;
}
.star-rating-select {
  position: relative;
  display: inline-block;
}
.star-rating-select select,
.woocommerce-variation-price {
  display: none;
}
.star-rating-select .stars {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
}
.quality-rating .stars,
.star-rating-select .stars .star.hover,
.star-rating-select .stars .star.selected,
.value-rating .stars {
  color: #f5b301;
}
.star-rating-select .stars .star {
  display: inline-block;
  padding: 0 2px;
}
.star-rating-select .stars .star:before {
  content: "★";
}
.quality-rating,
.value-rating {
  margin: 5px 0;
  font-size: 16px;
}
.quality-rating .stars::after,
.value-rating .stars::after {
  color: #ddd;
}
.loading-spinner {
  margin-left: 10px;
}
.loading-spinner img {
  width: 20px;
  height: 20px;
}
.form-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
}
.form-message.success {
  background-color: #dff0d8;
  color: #3c763d;
}
.form-message.error {
  background-color: #f2dede;
  color: #a94442;
}
.field-error {
  display: block;
  color: #a94442;
  font-size: 12px;
  margin-top: 5px;
}
.review-controls {
  margin-bottom: 15px;
}
.review-controls label {
  margin-right: 10px;
}
.review-controls select {
  margin-right: 20px;
  padding: 5px;
}
.review-spinner {
  text-align: center;
  margin: 15px 0;
}
.review-spinner img {
  width: 24px;
  height: 24px;
}
.review-pagination {
  margin-top: 15px;
  text-align: center;
}
.review-pagination button {
  padding: 8px 15px;
  margin: 0 5px;
  background-color: #f5b301;
  border: none;
  color: #fff;
  cursor: pointer;
}
.review-pagination button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
  opacity: 0.5;
}
.review-pagination .page-info {
  margin: 0 10px;
  font-weight: 700;
}
.average-rating {
  font-weight: 700;
  margin-bottom: 10px;
}
.no-reviews {
  text-align: center;
  color: #555;
}
.custom-colour-swatches {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.variations_form .swatch-colour {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  background-clip: content-box;
  padding: 4px;
  border: 2px solid #ccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-size: 28px 28px;
  background-position: center;
}
.variations_form #colour {
  display: none !important;
}
.variations_form .swatch-colour.selected {
  border: 2px solid #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.variations_form .swatch-colour:focus {
  border: 2px solid #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.5);
  outline: 0;
}
.swatch-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  z-index: 1000;
  display: none;
}
.site-header-wrapper .header-top {
  background-color: #5c068c;
  color: #fff;
}
.site-header-wrapper .header-top .header-top-wrapper {
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-header-wrapper .header-top .header-top-wrapper .header-top-wrapper__left {
  padding: 8px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1279.98px) {
  .site-header-wrapper
    .header-top
    .header-top-wrapper
    .header-top-wrapper__right {
    width: 100%;
  }
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  list-style: none;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .site-header-wrapper
    .header-top
    .header-top-wrapper
    .header-top-wrapper__right
    .menu {
    gap: 18px;
  }
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu
  li {
  padding: 0;
  height: 47px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu
  li
  a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu
  li
  a
  i {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .site-header-wrapper
    .header-top
    .header-top-wrapper
    .header-top-wrapper__right
    .menu
    li
    a
    i {
    font-size: 16px;
    margin-right: 6px;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-header-wrapper
    .header-top
    .header-top-wrapper
    .header-top-wrapper__right
    .menu
    li
    a {
    font-size: 12px;
  }
  .site-header-wrapper
    .header-top
    .header-top-wrapper
    .header-top-wrapper__right
    .menu
    li
    a
    i {
    font-size: 14px;
  }
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu
  li
  .cart-link {
  position: relative;
}
.site-header-wrapper
  .header-top
  .header-top-wrapper
  .header-top-wrapper__right
  .menu
  li
  .cart-link
  .icon {
  display: inline;
  background-color: #fff;
  border-radius: 3px;
  padding: 4px 6px;
  color: #5c068c;
  margin-left: 4px;
  font-size: 12px;
}
.site-header-wrapper .header-top .header-top__link {
  font-size: 12px;
  text-decoration: underline;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.site-header-wrapper .header-top .site-header__upper__branch-selector {
  position: relative;
  color: #fff;
  background-color: #390458;
  margin-right: 28px;
  z-index: 1;
  min-width: 120px;
}
.site-header-wrapper .header-top .site-header__upper__branch-selector select {
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  border: none;
  outline: transparent solid 0 !important;
  background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"&gt;&lt;path fill="%23ffffff" d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"/&gt;&lt;/svg&gt;')
    right 0 center/15px 20px no-repeat #390458;
  padding: 8px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  font-size: 14px !important;
  line-height: 14px !important;
}
.site-header-wrapper
  .header-top
  .site-header__upper__branch-selector
  select:focus {
  outline: transparent solid 0;
}
.site-header-wrapper
  .header-top
  .site-header__upper__branch-selector
  .floating-icon {
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header-wrapper .header-top .site-header__upper__branch-selector:after {
  content: " ";
  background-image: url(../../images/blade_dark_purple.png);
  background-size: auto 100%;
  background-position: bottom 0 right 0;
  position: absolute;
  background-repeat: no-repeat;
  right: -35px;
  top: 0;
  bottom: 0;
  width: 45px;
  z-index: -2;
}
.site-header-wrapper .header-top .header-phone-mobile a {
  color: #fff;
  font-weight: 700;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  line-height: 1em;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-header-wrapper .header-top .header-phone-mobile a {
    font-size: 12px;
  }
}
.site-header-wrapper .main-header-wrapper {
  padding: 18px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header-wrapper .main-header-wrapper .main-header__logo {
  max-width: 160px;
}
.site-header-wrapper .main-header-wrapper .main-header__logo img {
  min-width: 140px;
}
@media (min-width: 1024px) {
  .site-header-wrapper .main-header-wrapper .main-header__logo {
    max-width: auto;
  }
  .site-header-wrapper .main-header-wrapper .main-header__logo img {
    min-width: 220px;
  }
}
@media (min-width: 768px) {
  .site-header-wrapper .main-header-wrapper {
    padding: 24px 0;
  }
}
@media (min-width: 1280px) {
  .site-header-wrapper .main-header-wrapper .main-header__logo {
    min-width: 320px;
  }
  .site-header-wrapper .main-header-wrapper .main-header__logo img {
    width: 100%;
  }
  .site-header-wrapper .main-header-wrapper {
    padding: 12px 0;
  }
}
.site-header-wrapper .main-header-wrapper .main-header__menu_and_search {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .site-header-wrapper .main-header-wrapper .main-header__menu_and_search {
    gap: 24px;
  }
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar {
  list-style: none;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item {
  padding: 0;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item
  a.nav-link {
  color: #6d6e71;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .site-header-wrapper
    .main-header-wrapper
    .main-header__menu_and_search
    nav.main-navbar {
    gap: 24px;
  }
  .site-header-wrapper
    .main-header-wrapper
    .main-header__menu_and_search
    nav.main-navbar
    li.nav-item
    a.nav-link {
    font-size: 16px;
  }
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item
  a.nav-link:hover {
  color: #5c068c;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown {
  position: relative;
  overflow: visible;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 12px;
  border-radius: 4px;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu
  li.dropdown-item {
  padding: 0;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu
  li.dropdown-item
  a.dropdown-link {
  display: block;
  width: 100%;
  color: #6d6e71;
  font-weight: 600;
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu
  li.dropdown-item
  a.dropdown-link:hover {
  color: #5c068c;
}
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu
  li.dropdown-item
  a.dropdown-link:active,
.site-header-wrapper
  .main-header-wrapper
  .main-header__menu_and_search
  nav.main-navbar
  li.nav-item.dropdown
  .dropdown-menu
  li.dropdown-item
  a.dropdown-link:focus {
  background-color: #fff !important;
}
.site-header-wrapper .header-mobile-nav nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header-wrapper .header-mobile-nav nav li {
  padding: 0;
  width: 100%;
}
.site-header-wrapper .header-mobile-nav nav li a {
  display: block;
  width: 100%;
  color: #6d6e71;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.site-header-wrapper .header-mobile-nav nav li a:hover {
  color: #5c068c;
}
.site-header-wrapper .header-mobile-nav nav li a:after {
  position: absolute;
  right: 10px;
}
.site-header-wrapper .nav-link {
  width: 100%;
  text-align: left;
  position: relative;
}
.site-header-wrapper .nav-link .button-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header-wrapper .nav-link i {
  transition: all 0.3s ease-in-out;
  color: #5c068c;
}
.site-header-wrapper .nav-link.active i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.site-header-wrapper .header-menu-wrapper ul {
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.site-header-wrapper .header-menu-wrapper ul li {
  padding: 0;
}
.custom-search-bar {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: #eee;
  padding: 0;
  border: 0 !important;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #6d6e71;
  min-width: 160px;
  gap: 4px;
  outline: 0;
}
.custom-search-bar .search-button {
  background-color: transparent;
  border: none;
  padding: 4px;
  display: block;
}
.custom-search-bar .search-button:hover {
  scale: 1.1;
}
.custom-search-bar .search-button img {
  max-width: 15px;
  height: auto;
}
@media (min-width: 1024px) {
  .custom-search-bar .search-button img {
    max-width: 25px;
  }
  .custom-search-bar {
    border: 1px solid rgba(109, 110, 113, 0.2) !important;
    padding: 2px 4px;
    gap: 8px;
    font-size: 16px;
    background-color: #fff;
    min-width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .custom-search-bar {
    max-width: 220px;
  }
}
.custom-search-bar input[type="search"] {
  border: none !important;
  width: 100%;
  background-color: #eee;
  font-weight: 900;
  padding: 1px 6px;
  font-size: 12px;
}
.hire-now-logo-wrapper .hire-now-logo {
  width: 100px;
  margin-bottom: -25%;
  margin-top: -40px;
  height: auto;
  box-shadow: 24px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.75);
  border-radius: 0 0 16px;
}
@media (min-width: 768px) {
  .hire-now-logo-wrapper .hire-now-logo {
    width: 120px;
    margin-top: -40px;
    margin-bottom: -35%;
  }
}
@media (min-width: 1024px) {
  .custom-search-bar input[type="search"] {
    padding: 4px 6px;
    font-weight: 600;
    font-size: 16px;
    background-color: #fff;
  }
  .hire-now-logo-wrapper .hire-now-logo {
    width: 140px;
    margin-bottom: -50%;
    margin-top: -60px;
  }
}
.hire-now-logo-wrapper .trade-logo {
  width: 100px;
  margin-bottom: -25%;
  margin-top: -40px;
  height: auto;
  box-shadow: 24px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.75);
  border-radius: 0 0 16px;
}
@media (min-width: 768px) {
  .hire-now-logo-wrapper .trade-logo {
    width: 120px;
    margin-top: -40px;
    margin-bottom: -35%;
  }
}
@media (min-width: 1024px) {
  .hire-now-logo-wrapper .trade-logo {
    width: 140px;
    margin-bottom: -50%;
    margin-top: -60px;
  }
}
.site-top-bar {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  min-height: 36px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000 !important;
  color: #fff !important;
  font-size: 12px;
}
@media (min-width: 768px) {
  .site-top-bar {
    font-size: 14px;
    min-height: 45px;
  }
}
.menu-item {
  position: relative;
}
.header-top {
  position: relative;
  z-index: 1001;
}
.account-popup {
  position: absolute;
  width: 320px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  display: none;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.account-popup.show {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.account-popup-triangle {
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 10001;
}
.account-popup-content {
  padding: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .account-popup-content {
    padding: 22px;
    gap: 16px;
  }
}
.account-popup-content a.account-popup-link {
  display: block;
  text-align: center !important;
  font-size: 16px !important;
  color: #2e2f31 !important;
}
.account-popup-content a.account-popup-link span {
  font-weight: 700;
  color: #2e2f31;
}
.account-popup-content a.btn-signin-popup {
  margin: 0;
  border-radius: 16px 0;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 16px 0 !important;
}
.account-popup-content .btn,
.account-popup-content .typography a.button,
.typography .account-popup-content a.button {
  width: 100%;
  text-align: center;
}
.account-popup-overlay {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.account-popup-overlay.show {
  display: block;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .account-popup {
    position: fixed;
    top: 47px;
    width: calc(100% - 56px) !important;
    max-width: calc(100% - 40px);
    left: 36px !important;
    right: 20px !important;
    -webkit-transform: none;
    transform: none;
  }
  .account-popup-triangle {
    display: none;
  }
  .menu-item.not-logged-in:has(.account-popup.show):after {
    content: "";
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 10001;
  }
  .account-popup.show {
    -webkit-transform: none;
    transform: none;
  }
}
.account-popup-enabled .header-top {
  position: relative;
  z-index: 10001 !important;
}
.site-footer {
  max-width: 1000vw;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 46px 0 0;
  background-color: #fff;
}
.site-footer .one-half.firstname-container {
  margin-right: 8px !important;
  margin-left: 0 !important;
  width: calc(50% - 8px);
}
.site-footer .one-half.lastname-container {
  margin-left: 8px !important;
  margin-right: 0 !important;
  width: calc(50% - 8px);
}
.site-footer .nf-field-element button {
  background-color: #5c068c;
  color: #fff;
}
.site-footer h3 {
  color: #5c068c;
  margin-bottom: 24px;
}
.site-footer .powered-by-logo {
  width: 245px;
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}
@media (max-width: 1023.98px) {
  .site-footer .powered-by-logo {
    max-width: 70%;
    margin-top: 8px;
  }
  .site-footer .footer-phone-mobile-section a {
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer .site-footer__main--logo {
  width: 245px;
  max-width: 100%;
}
.site-footer .footer-menu-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #5c068c;
  font-weight: 900;
  margin-bottom: 22px;
}
.site-footer .footer-phone-mobile-section {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 900;
}
.site-footer .footer-phone-mobile-section img {
  max-width: 20px;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.site-footer .footer-menu-wrapper ul {
  list-style-type: none;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1023.98px) {
  .site-footer .footer-menu-wrapper ul {
    gap: 12px;
  }
  .site-footer .footer-social-icons li img {
    max-width: 18px;
  }
}
.site-footer .footer-menu-wrapper ul li {
  padding: 0;
  margin-bottom: 0;
}
.site-footer .footer-menu-wrapper ul li a {
  font-weight: 700;
  font-size: 14px;
  color: #6d6e71;
}
.site-footer .footer-social-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 0 0 24px;
  gap: 5px;
}
.site-footer .footer-social-icons li {
  padding: 0;
}
.site-footer .footer-social-icons li img {
  width: 36px;
}
.site-footer .button-heading,
.site-footer .mobile-footer-list li a.list-item {
  width: 100%;
  font-size: 16px;
  color: #5c068c;
  font-weight: 900;
  text-transform: uppercase;
}
.site-footer .footer-social-icons:last-of-type {
  margin-bottom: 12px;
}
.site-footer .button-heading {
  background-color: #fff;
  margin-bottom: 8px;
  border: 0;
  padding: 0;
  text-align: left;
  position: relative;
}
.site-footer .button-heading .button-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-footer .button-heading i {
  transition: all 0.3s ease-in-out;
  color: #5c068c;
}
.site-footer .button-heading.active i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.site-footer .mobile-footer-list {
  list-style-type: none;
  padding: 0;
  gap: 0 !important;
}
.site-footer .mobile-footer-list li {
  padding-left: 0;
  margin-bottom: 8px;
}
.site-footer .mobile-footer-list li.lined {
  border-bottom: 1px solid rgba(109, 110, 113, 0.2);
}
.site-footer .mobile-footer-list li.lined:last-of-type {
  border-bottom: 0;
}
.site-footer .mobile-footer-list li a.list-item {
  margin-bottom: 8px;
  padding-bottom: 3px;
  display: block;
  position: relative;
}
.site-footer .mobile-footer-list li a.list-item .link-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-footer .mobile-footer-list li a.list-item .link-arrow i {
  color: #5c068c;
}
@media (max-width: 767.98px) {
  .site-footer .footer-form-wrapper {
    padding-top: 24px;
    background-color: #eee;
    position: relative;
  }
  .site-footer .footer-form-wrapper::after,
  .site-footer .footer-form-wrapper::before {
    background-color: #eee;
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15px;
  }
  .site-footer .footer-form-wrapper::before {
    left: -15px;
  }
  .site-footer .footer-form-wrapper::after {
    right: -15px;
  }
  .site-footer .footer-form-wrapper h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
  }
}
#menu-footer-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  margin-bottom: 36px;
}
#menu-footer-menu li {
  padding: 0;
}
#menu-footer-menu li a {
  text-transform: uppercase;
  font-size: 16px;
  color: #5c068c;
  font-weight: 900;
}
.site-footer__fineprint {
  padding: 20px 0;
  color: #fff;
  background-color: #5c068c;
}
.site-footer__fineprint .d-flex {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #menu-footer-menu li a {
    font-size: 18px;
  }
  .site-footer__fineprint {
    margin-top: 46px;
  }
  .site-footer__fineprint .d-flex {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.site-footer__fineprint p {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
}
.site-footer__fineprint .accepted-payments__footer {
  width: 100%;
  color: #fff;
  list-style-type: none;
  padding: 0;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .site-footer__fineprint p {
    font-size: 13px;
  }
  .site-footer__fineprint .accepted-payments__footer {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 22px;
  }
}
.site-footer__fineprint .accepted-payments__footer li {
  padding: 0;
  overflow: visible;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.site-footer__fineprint .accepted-payments__footer li img {
  max-height: 16px;
  width: auto;
  opacity: 0.85;
}
.site-footer__fineprint .accepted-payments__footer li a {
  text-decoration: underline;
  font-weight: 400;
  color: #fff;
  font-size: 8px;
}
#menu-footer-fineprint {
  list-style-type: none;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#menu-footer-fineprint a {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
}
#menu-footer-fineprint li {
  padding: 0 6px 0 0;
  overflow: visible;
  height: 8px;
  margin-right: 6px;
  border-right: 1px solid #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer__fineprint .accepted-payments__footer li img {
    max-height: 24px;
  }
  #menu-footer-fineprint {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  #menu-footer-fineprint a {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
  }
  #menu-footer-fineprint li {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 2px solid #fff;
  }
}
.page-template-block-editor {
  color: #6d6e71;
}
.page-template-block-editor :where(.is-layout-constrained) .sitehq-her-slider {
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}
.page-template-block-editor .entry-content {
  padding: 0 !important;
}
.page-template-block-editor .entry-content p strong {
  font-weight: 600;
}
.block-slick-dots,
.custom_block.block__linked_images_row .slick-dots,
.logo-block .slick-dots,
.product-category-row .custom_block.block__product_categories_row .slick-dots,
.sitehq-award-carousel .slick-dots,
.sitehq-post-carousel .slick-dots {
  left: 0;
  right: 0;
  width: 100%;
  bottom: -30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  max-width: 120px;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .has-large-font-size {
    font-size: 21px !important;
  }
  .block-slick-dots,
  .custom_block.block__linked_images_row .slick-dots,
  .logo-block .slick-dots,
  .product-category-row .custom_block.block__product_categories_row .slick-dots,
  .sitehq-award-carousel .slick-dots,
  .sitehq-post-carousel .slick-dots {
    bottom: -60px;
  }
}
.block-slick-dots li,
.custom_block.block__linked_images_row .slick-dots li,
.logo-block .slick-dots li,
.product-category-row
  .custom_block.block__product_categories_row
  .slick-dots
  li,
.sitehq-award-carousel .slick-dots li,
.sitehq-post-carousel .slick-dots li {
  padding: 0;
  margin: 0;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots li button,
.custom_block.block__linked_images_row .slick-dots li button,
.logo-block .slick-dots li button,
.product-category-row
  .custom_block.block__product_categories_row
  .slick-dots
  li
  button,
.sitehq-award-carousel .slick-dots li button,
.sitehq-post-carousel .slick-dots li button {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots li button::before,
.custom_block.block__linked_images_row .slick-dots li button::before,
.logo-block .slick-dots li button::before,
.product-category-row
  .custom_block.block__product_categories_row
  .slick-dots
  li
  button::before,
.sitehq-award-carousel .slick-dots li button::before,
.sitehq-post-carousel .slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #6d6e71;
  background: #6d6e71;
  opacity: 1;
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots li.slick-active button::before,
.custom_block.block__linked_images_row
  .slick-dots
  li.slick-active
  button::before,
.logo-block .slick-dots li.slick-active button::before,
.product-category-row
  .custom_block.block__product_categories_row
  .slick-dots
  li.slick-active
  button::before,
.sitehq-award-carousel .slick-dots li.slick-active button::before,
.sitehq-post-carousel .slick-dots li.slick-active button::before {
  color: #5c068c;
  background: #5c068c;
}
.block-slick-dots-light,
.module__text-slider-block .slick-dots {
  left: 0;
  right: 0;
  width: 100%;
  bottom: -30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  max-width: 120px;
  margin: 0 auto;
}
.block-slick-dots-light li,
.module__text-slider-block .slick-dots li {
  padding: 0;
  margin: 0;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots-light li button,
.module__text-slider-block .slick-dots li button {
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots-light li button::before,
.module__text-slider-block .slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
}
.block-slick-dots-light li.slick-active button::before,
.module__text-slider-block .slick-dots li.slick-active button::before {
  color: #5c068c;
  background: #5c068c;
}
.block-padding-bottom-none {
  display: block;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .block-padding-bottom-none {
    padding-bottom: 0;
  }
}
.block-padding-bottom-sm {
  display: block;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .block-padding-bottom-sm {
    padding-bottom: 0;
  }
}
.block-padding-bottom-md {
  display: block;
  padding-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .block-padding-bottom-md {
    padding-bottom: 2.5rem;
  }
}
.block-padding-bottom-lg {
  display: block;
  padding-bottom: 2.8rem;
}
.block-padding-top-none {
  display: block;
  padding-top: 0;
}
@media (min-width: 768px) {
  .block-padding-bottom-lg {
    padding-bottom: 5rem;
  }
  .block-padding-top-none {
    padding-top: 0;
  }
}
.block-padding-top-sm {
  display: block;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .block-padding-top-sm {
    padding-top: 0;
  }
}
.block-padding-top-md {
  display: block;
  padding-top: 1.4rem;
}
@media (min-width: 768px) {
  .block-padding-top-md {
    padding-top: 2.5rem;
  }
}
.block-padding-top-lg {
  display: block;
  padding-top: 2.8rem;
}
@media (min-width: 768px) {
  .block-padding-top-lg {
    padding-top: 5rem;
  }
}
.block__award-carousel {
  margin: 0 auto;
  max-width: var(--wp--style--global--wide-size);
}
.sitehq-award-carousel .cta-footer {
  padding-top: 32px;
}
.product-category-row
  .custom_block.block__product_categories_row
  .sitehq-award-carousel
  .cta-footer
  .block_product-categories__wrapper,
.sitehq-award-carousel
  .cta-footer
  .product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper,
.sitehq-award-carousel .cta-footer .row {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.sitehq-award-carousel .cta-footer img {
  max-height: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .sitehq-award-carousel .cta-footer img {
    max-height: 46px;
  }
}
@media (min-width: 1024px) {
  .sitehq-award-carousel .cta-footer img {
    max-height: 50px;
    width: auto;
  }
}
.sitehq-award-carousel .award-carousel {
  padding: 32px 0;
  background-color: #eee;
}
.sitehq-award-carousel .award-carousel .award-carousel-wrapper .img-wrapper {
  padding: 0 8px;
}
.sitehq-award-carousel
  .award-carousel
  .award-carousel-wrapper
  .img-wrapper
  .img-square {
  aspect-ratio: 1/1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.sitehq-award-carousel
  .award-carousel
  .award-carousel-wrapper
  .img-wrapper
  .img-square
  img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.sitehq-award-carousel
  .award-carousel
  .award-carousel-wrapper
  .img-wrapper
  .img-caption
  p {
  text-align: center;
  color: #6d6e71;
  text-transform: uppercase;
  margin-top: 22px;
  font-weight: 700;
  margin-bottom: 0 !important;
}
.product-category-row
  .custom_block.block__product_categories_row
  .sitehq-cta-link-block
  .block_product-categories__wrapper,
.sitehq-cta-link-block
  .product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper,
.sitehq-cta-link-block .row {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.sitehq-cta-link-block img {
  max-height: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .sitehq-award-carousel .award-carousel .award-carousel-wrapper .img-wrapper {
    padding: 0 12px;
  }
  .sitehq-award-carousel
    .award-carousel
    .award-carousel-wrapper
    .img-wrapper
    .img-caption
    p {
    padding: 0 4px;
  }
  .sitehq-cta-link-block img {
    max-height: 46px;
  }
}
@media (min-width: 1024px) {
  .sitehq-award-carousel
    .award-carousel
    .award-carousel-wrapper
    .img-wrapper
    .img-caption
    p {
    padding: 0 4px;
  }
  .sitehq-cta-link-block img {
    max-height: 50px;
    width: auto;
  }
}
.featured-products-wrapper-ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px -16px 0;
  padding: 0;
  list-style: none;
}
.featured-products-wrapper-ul li {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .featured-products-wrapper-ul li {
    width: calc(50% - 16px);
  }
}
@media (min-width: 960px) {
  .featured-products-wrapper-ul li {
    width: calc(25% - 16px);
  }
}
.featured-products-wrapper-ul li.type-product {
  max-width: calc(25% - 16px);
  -webkit-flex: 0 0 calc(25% - 16px);
  -ms-flex: 0 0 calc(25% - 16px);
  flex: 0 0 calc(25% - 16px);
  margin: 0 0.5rem;
  text-align: center;
}
.featured-products-wrapper-ul li.type-product a {
  background: #ededee;
  padding-bottom: 1.875rem;
  position: relative;
  display: block;
}
.featured-products-wrapper-ul li.type-product a:hover {
  background: #e2dbea;
}
@media (max-width: 767.98px) {
  .featured-products-wrapper-ul li.type-product {
    max-width: calc(50% - 16px);
    -webkit-flex: 0 0 calc(50% - 16px);
    -ms-flex: 0 0 calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .featured-products-wrapper-ul li.type-product {
    max-width: calc(100% - 16px);
    -webkit-flex: 0 0 calc(100% - 16px);
    -ms-flex: 0 0 calc(100% - 16px);
    flex: 0 0 calc(100% - 16px);
    margin-bottom: 1rem;
  }
}
.featured-products-wrapper-ul li.type-product img {
  margin: 0 auto;
  font-family: "object-fit:cover";
  object-fit: cover;
}
.featured-products-wrapper-ul li.type-product .woocommerce-loop-product__title {
  padding: 1.15625rem 1.21875rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
  word-break: break-word;
}
@media (min-width: 768px) {
  .featured-products-wrapper-ul
    li.type-product
    .woocommerce-loop-product__title {
    min-height: 87px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.featured-products-wrapper-ul li.type-product .price {
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.8421052632;
  color: #666;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  text-align: center;
}
.featured-products-wrapper-ul li.type-product .button.add_to_cart_button {
  display: none;
}
@media (max-width: 1023.98px) {
  .featured-products-wrapper-ul li.type-product img {
    max-height: 100%;
    max-width: 100%;
  }
  .featured-products-wrapper-ul .type-product .single_product_images {
    margin-bottom: 8.1875rem;
  }
}
.featured-products-wrapper-ul .type-product img {
  width: 100%;
  height: auto;
}
.featured-products-wrapper-ul .type-product .product_title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.225;
  color: #5c068c;
  margin-bottom: 0.8125rem;
}
.featured-products-wrapper-ul .type-product .price {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #79569c;
  margin-bottom: 2.5625rem;
}
.featured-products-wrapper-ul .type-product form.cart {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  margin-top: 10px;
}
.featured-products-wrapper-ul .type-product form.cart .button {
  background: #fedd00;
  margin: 1.875rem auto 0.75rem 0;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #5c068c;
  text-transform: capitalize;
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 59 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.0036 30.1282L58.2264 0H0V47H2.5473C15.9787 47 28.4332 40.7333 36.0036 30.1282Z' fill='%23000'/%3E%3C/svg%3E"),
    linear-gradient(#000, #000);
  mask-size:
    60px 100%,
    calc(100% - 60px) 100%;
  mask-position:
    bottom right,
    top left;
  mask-repeat: no-repeat;
  text-align: left;
  display: block;
}
.featured-products-wrapper-ul .type-product form.cart .button:active,
.featured-products-wrapper-ul .type-product form.cart .button:focus,
.featured-products-wrapper-ul .type-product form.cart .button:hover {
  background: #5c068c !important;
  color: #fff !important;
}
@media (max-width: 1023.98px) {
  .featured-products-wrapper-ul .type-product form.cart .button {
    margin: 1.5rem 0 0;
    min-width: 100%;
  }
}
.featured-products-wrapper-ul .type-product form.cart .variation_quantity_sec {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  label {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  color: #333;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table {
  max-width: 13.5rem;
  width: 100%;
  margin-right: 1.875rem;
}
@media (max-width: 1023.98px) {
  .featured-products-wrapper-ul
    .type-product
    form.cart
    .variation_quantity_sec
    .variation_table {
    max-width: 49%;
    margin-right: 0.625rem;
  }
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table
  .variations
  select {
  max-width: 13.5rem;
  min-width: auto;
  width: 100%;
  margin-right: 0;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  height: 2.5rem;
  padding: 0.625rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  background: url(../../images/icons/select_drpdown_icon.svg) 94% no-repeat #fff;
  -webkit-appearance: none;
  background-size: 0.875rem;
  border: none;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .variation_table
  .variations
  .reset_variations {
  display: none !important;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec {
  width: 100%;
  max-width: 9.5625rem;
  text-align: left;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity {
  float: none;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"] {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  border: none;
  height: 2.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  margin: 0 0.625rem;
  -moz-appearance: textfield;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]::-webkit-inner-spin-button,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]::-webkit-outer-spin-button,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]:hover::-webkit-inner-spin-button,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  input[type="number"]:hover::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn {
  height: 1.833125rem;
  width: 1.833125rem;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5625rem;
}
.featured-products-wrapper-ul .type-product .product_meta,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-availability,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-description,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .woocommerce-variation-price,
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-floating-image {
  display: none;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:active,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:focus,
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .quantity_sec
  .single_variation_wrap
  .quantity
  .qty_btn:visited {
  box-shadow: 0.0625rem 0.0625rem 0.25rem #222;
  background: #ddd;
}
.featured-products-wrapper-ul
  .type-product
  form.cart
  .variation_quantity_sec
  .pro_add_to_cartBtn {
  width: 100%;
}
.sitehq-fifty-fifty-responsive-content
  .sitehq-fifty-fifty-responsive-content-wrapper {
  max-width: var(--wp--style--global--wide-size);
  padding-left: 0;
  padding-right: 0;
}
.sitehq-fifty-fifty-responsive-content
  .sitehq-fifty-fifty-responsive-content-wrapper
  p:last-child {
  margin-bottom: 0;
}
.sitehq-fifty-fifty-responsive-content
  .sitehq-fifty-fifty-responsive-content-wrapper
  img {
  max-width: 100%;
  height: auto;
}
.sitehq-full-width-image-content-block .container,
.sitehq-full-width-image-content-block
  body.product-template-default
  .woocommerce-breadcrumb,
body.product-template-default
  .sitehq-full-width-image-content-block
  .woocommerce-breadcrumb {
  max-width: var(--wp--style--global--wide-size);
}
.sitehq-full-width-image-content-block h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: #5c068c;
}
@media (min-width: 1024px) {
  .sitehq-full-width-image-content-block h3 {
    font-size: 36px;
  }
  .sitehq-full-width-image-content-block
    .sitehq-full-width-image-content-block-wrapper
    .sitehq-full-width-image-content-block-mobile-image {
    display: none;
  }
}
.sitehq-full-width-image-content-block p {
  margin-bottom: 24px;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper {
  position: relative;
  width: 100%;
  background-color: #eee;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-mobile-image {
  position: relative;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-mobile-image
  img {
  width: 100%;
  height: auto;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-mobile-image:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(0deg, #eee 5%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1024px) {
  .sitehq-full-width-image-content-block
    .sitehq-full-width-image-content-block-wrapper
    .sitehq-full-width-image-content-block-floating-image {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 55%;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
}
.sitehq-her-slider .heroSliderNew .slick-arrow::before,
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slide_content_wrapper
  .slide_block__image.slide_block__image_desktop {
  display: none;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-floating-image-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20%;
  background: #eee;
  background: linear-gradient(90deg, #eee 5%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-inner {
  position: relative;
}
.sitehq-full-width-image-content-block
  .sitehq-full-width-image-content-block-wrapper
  .sitehq-full-width-image-content-block-inner
  .sitehq-full-width-image-content-block-row {
  position: relative;
  z-index: 2;
}
.sitehq-her-slider.alignfull {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.sitehq-her-slider .heroSliderNew.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.sitehq-her-slider .heroSliderNew .slide_block .slide_content_wrapper {
  position: relative;
}
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slide_content_wrapper
  .slide_block__image {
  background-color: #5c068c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
}
@media (min-width: 576px) {
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  .product-category-row
    .custom_block.block__product_categories_row
    .sitehq-fifty-fifty-responsive-content.shadowClass
    .block_product-categories__wrapper,
  .sitehq-fifty-fifty-responsive-content.shadowClass
    .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper,
  .sitehq-fifty-fifty-responsive-content.shadowClass .row {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sitehq-full-width-image-content-block p {
    font-size: 1.2em;
  }
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image {
    min-height: 780px;
  }
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image.slide_block__image_mobile {
    display: none;
  }
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image.slide_block__image_desktop {
    display: block;
  }
}
.sitehq-her-slider .heroSliderNew .slide_block .slider-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  text-align: center;
  padding-top: 12px;
}
.sitehq-her-slider .heroSliderNew .slide_block .slider-container h2 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 14px;
  font-size: 30px !important;
  font-weight: 900;
  line-height: 1.1em;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .sitehq-her-slider .heroSliderNew .slide_block .slider-container {
    padding-top: 40px;
  }
  .sitehq-her-slider .heroSliderNew .slide_block .slider-container h2 {
    font-size: 63px !important;
    margin: 0 auto 32px;
  }
}
@media (min-width: 1024px) {
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image {
    min-height: 850px;
  }
  .sitehq-her-slider .heroSliderNew .slide_block .slider-container {
    padding-top: 60px;
  }
  .sitehq-her-slider .heroSliderNew .slide_block .slider-container h2 {
    font-size: 82px !important;
    margin: 0 auto 48px;
  }
}
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button {
  font-size: 12px;
  color: #fff !important;
  padding: 6px 0 6px 10px;
  margin-right: 12px;
}
.sitehq-her-slider
  .heroSliderNew
  .slide_block
  .slider-container
  .slide_block__button:hover {
  background-color: #5c068c !important;
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slider-container
    .slide_block__button {
    padding: 14px 0 10px 14px;
    margin-right: 30px;
    font-size: 28px;
  }
}
.sitehq-her-slider .heroSliderNew .slick-dots {
  bottom: 23px;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sitehq-her-slider .heroSliderNew .slick-dots li {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767.98px) {
  .sitehq-her-slider .heroSliderNew .slick-dots li {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.sitehq-her-slider .heroSliderNew .slick-dots li button {
  width: 100%;
  height: 100%;
  position: relative;
}
.sitehq-her-slider .heroSliderNew .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #fff;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
  width: auto !important;
  height: auto !important;
}
.sitehq-her-slider .heroSliderNew .slick-dots li.slick-active button::before {
  color: #fedd00;
  background: #fedd00;
}
.sitehq-her-slider .heroSliderNew .slick-arrow {
  width: 2.1875rem;
  height: 3.1875rem;
  z-index: 9;
}
.sitehq-her-slider .heroSliderNew .slick-arrow.slick-prev {
  left: 1.25rem;
  background: url(../../images/left_arrow.svg) no-repeat;
  background-size: contain;
}
.sitehq-her-slider .heroSliderNew .slick-arrow.slick-next {
  right: 1.25rem;
  background: url(../../images/right_arrow.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .sitehq-her-slider .heroSliderNew .slick-arrow {
    top: auto;
    bottom: 0;
    width: 1.625rem;
    height: 2.3125rem;
  }
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-image-content {
  width: 100%;
}
@media (min-width: 768px) {
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .sitehq-image-content-block-image-content {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .sitehq-image-content-block
    .image-content__image-overlay
    .image-content__image-overlay__large {
    padding-right: 80px;
  }
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-image-content
  img {
  width: 100%;
  height: auto;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-copy-content {
  width: 100%;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .sitehq-image-content-block-copy-content
  .image-content__content {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .image-content__content_header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .image-content__content_header
  .image-content__content_title {
  width: 100%;
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .image-content__content_header
  .image-content__content_header_img {
  display: none;
  -webkit-flex: 0 0 45%;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  width: 100%;
}
@media (min-width: 1024px) {
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .image-content__content_header
    .image-content__content_header_img {
    display: block;
  }
}
.sitehq-image-content-block
  .sitehq-image-content-block-inner
  .sitehq-image-content-block-row
  .image-content__content_header
  .image-content__content_header_img
  img {
  max-height: 60px;
  width: auto;
}
@media (min-width: 1280px) {
  .sitehq-her-slider
    .heroSliderNew
    .slide_block
    .slide_content_wrapper
    .slide_block__image {
    min-height: 960px;
  }
  .sitehq-image-content-block
    .sitehq-image-content-block-inner
    .sitehq-image-content-block-row
    .image-content__content_header
    .image-content__content_header_img {
    margin-right: -50px;
  }
}
.sitehq-image-content-block.content-top .sitehq-image-content-block-row {
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.sitehq-image-content-block .image-content__image-overlay {
  display: block;
  position: relative;
  z-index: 0;
}
.sitehq-image-content-block
  .image-content__image-overlay
  .image-content__image-overlay__large {
  position: relative;
  z-index: 1;
  padding-right: 80px;
}
.sitehq-image-content-block
  .image-content__image-overlay
  .image-content__image-overlay__small {
  z-index: 2;
  position: absolute;
  right: 0;
  background-color: #fff;
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
  max-width: 50%;
  bottom: 0;
}
.sitehq-image-content-block
  .image-content__image-overlay
  .image-content__image-overlay__small
  img {
  width: 100%;
  height: auto;
}
.sitehq-image-content-block .image-content__image-gallery {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sitehq-image-content-block
  .image-content__image-gallery
  .image-content__image-gallery__image {
  width: 100%;
  min-width: 0;
}
.sitehq-image-content-block
  .image-content__image-gallery
  .image-content__image-gallery__image
  img {
  width: 100%;
  height: auto;
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.f-button-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .sitehq-image-content-block
    .image-content__image-overlay
    .image-content__image-overlay__small {
    bottom: 36px;
  }
  .f-button-wrapper {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.footer-phone-mobile {
  margin-left: 45px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
  max-height: 34px;
  white-space: nowrap;
  margin-right: -50px;
}
@media (max-width: 767.98px) {
  .footer-phone-mobile {
    display: none;
  }
}
.sitehq-link-buttons-block
  .sitehq-link-buttons-block-wrapper
  .sitehq-link-buttons-block-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sitehq-link-buttons-block
  .sitehq-link-buttons-block-wrapper
  .sitehq-link-buttons-block-container
  .sitehq-link-buttons-block__link {
  background-color: #eee;
  color: #6d6e71;
  border-radius: 8px;
  font-weight: 500;
  padding: 6px 8px;
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .sitehq-link-buttons-block
    .sitehq-link-buttons-block-wrapper
    .sitehq-link-buttons-block-container {
    gap: 10px;
  }
  .sitehq-link-buttons-block
    .sitehq-link-buttons-block-wrapper
    .sitehq-link-buttons-block-container
    .sitehq-link-buttons-block__link {
    font-size: 18px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 8px 12px;
  }
}
.sitehq-link-buttons-block
  .sitehq-link-buttons-block-wrapper
  .sitehq-link-buttons-block-container
  .sitehq-link-buttons-block__link:hover {
  text-decoration: none;
  background-color: #dfdfdf;
}
.custom_block.block__linked_images_row {
  padding: 24px 0;
}
@media (min-width: 1024px) {
  .custom_block.block__linked_images_row {
    padding: 42px 0;
  }
}
.custom_block.block__linked_images_row .container,
.custom_block.block__linked_images_row
  body.product-template-default
  .woocommerce-breadcrumb,
body.product-template-default
  .custom_block.block__linked_images_row
  .woocommerce-breadcrumb {
  overflow: hidden;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper.block_linked_images_row__wrapper_desktop {
  display: none;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper.block_linked_images_row__wrapper__content {
  overflow: visible;
}
@media (min-width: 576px) {
  .custom_block.block__linked_images_row
    .block_linked_images_row__wrapper
    .slick-list {
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px 16px 24px;
  }
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item.slick-active {
  opacity: 1;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item.slick-active
  .floating_tag,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item.slick-active,
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item.slick-active
  .floating_tag {
  opacity: 1 !important;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .floating_tag {
  position: absolute;
  top: -8px;
  left: -8px;
}
@media (max-width: 1023.98px) {
  .custom_block.block__linked_images_row
    .block_linked_images_row__wrapper
    a.block_linked_images_row__item
    .floating_tag {
    opacity: 0;
  }
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .floating_tag
  img {
  max-width: 80px;
  height: auto;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--image {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--image
  img.item-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    #e3e2e1 0,
    rgba(227, 226, 225, 0.6) 65%,
    rgba(227, 226, 225, 0) 100%
  );
  z-index: 1;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:nth-child(2n):before {
  height: 80px;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 12px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  max-width: 100%;
  z-index: 2;
  min-height: 60px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  h3 {
  font-size: 17px;
  max-width: 72%;
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item
  .block_linked_images_row__item--title
  .block_linked_images_row__item--shop-now {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  height: 0;
  display: inline-block;
  overflow: hidden;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:hover {
  scale: 1.07;
  z-index: 3;
  color: #5c068c;
  text-decoration: none;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:hover
  .block_linked_images_row__item--shop-now {
  opacity: 1;
  height: 25px;
  margin-bottom: 16px;
  padding: 6px 12px;
}
.custom_block.block__linked_images_row
  .block_linked_images_row__wrapper
  a.block_linked_images_row__item:hover:before {
  height: 105px;
}
.custom_block.block__linked_images_row .slick-list {
  overflow: visible;
  padding: 12px 0;
}
.logo-block {
  overflow: hidden;
  padding: 100px 0;
}
.logo-block .logo-block-container {
  max-width: 100%;
  width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.logo-block h3 {
  font-size: 2.25rem;
  line-height: 1.2133333333;
  color: #626366;
  font-weight: 800;
  margin-bottom: 56px;
}
.logo-block div.logo-wrapper {
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo-block div.logo-wrapper .slick-track {
  gap: 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .logo-block div.logo-wrapper {
    gap: 8px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }
}
.logo-block div.logo-wrapper .logo-wrapper-child {
  padding: 0;
  background-color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .logo-block div.logo-wrapper {
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 12px;
  }
  .logo-block div.logo-wrapper .logo-wrapper-child {
    padding: 4px;
  }
}
.logo-block div.logo-wrapper .logo-wrapper-child img {
  height: auto;
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 !important;
}
.logo-block div.logo-wrapper a.logo-wrapper-child:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.logo-block div.logo-bottom-wrapper {
  margin-top: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [1];
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 100%;
}
.logo-block div.logo-bottom-wrapper img {
  width: 100%;
  height: auto;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.logo-block div.logo-bottom-wrapper img:hover {
  scale: 1.1;
}
.sitehq-post-carousel .custom_block .post-carousel .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 576px) {
  .sitehq-post-carousel .custom_block .post-carousel .slick-list {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.sitehq-post-carousel .custom_block .post-carousel .slick-track {
  padding: 10px 0;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.sitehq-post-carousel .custom_block .post-carousel .post-carousel__item {
  height: 100%;
  color: #6d6e71;
  margin-left: 10px;
  margin-right: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #eee;
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.sitehq-post-carousel .custom_block .post-carousel .post-carousel__item:hover {
  scale: 1.03;
  text-decoration: none;
}
.sitehq-post-carousel .custom_block .post-carousel .post-carousel__item h3 {
  color: #6d6e71;
  margin-bottom: 8px !important;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .caro-date {
  color: #5c068c;
}
@media (min-width: 768px) {
  .logo-block div.logo-bottom-wrapper {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .sitehq-post-carousel .custom_block .post-carousel .post-carousel__item h3 {
    min-height: 52px;
  }
  .sitehq-post-carousel
    .custom_block
    .post-carousel
    .post-carousel__item
    .caro-exerpt {
    min-height: 68px;
  }
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .footer-button {
  font-size: 18px;
  padding: 6px 0 6px 12px;
  color: #fff;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .footer-button
  span {
  color: #fff;
}
.sitehq-post-carousel .custom_block .post-carousel .post-carousel__item p {
  font-size: 18px;
  margin-bottom: 8px !important;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .post-carousel__item__image {
  aspect-ratio: 1/1;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .post-carousel__item__image
  img {
  width: 100%;
  height: auto;
  border-top-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item
  .post-carousel__item__content {
  min-height: 150px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.sitehq-post-carousel
  .custom_block
  .post-carousel
  .post-carousel__item__content {
  padding: 18px;
}
.product-category-row {
  overflow: hidden;
}
.product-category-row .custom_block.block__product_categories_row {
  padding: 42px 0;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item {
  text-transform: uppercase;
  background-color: #eaeaea;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-height: 260px;
}
@media (max-width: 1023.98px) {
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
  }
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item
    .block_product-categories__item--image
    .floating_tag {
    opacity: 0;
  }
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    0deg,
    #bababc 0,
    rgba(186, 186, 188, 0.8) 46%,
    rgba(94, 93, 97, 0) 100%
  );
  z-index: 1;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:nth-child(2n):before {
  height: 80px;
}
@media (min-width: 1024px) {
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item {
    min-height: 312px;
    padding-bottom: 40px;
  }
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--image {
  aspect-ratio: 1/1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--image
  img.item-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--image
  .floating_tag {
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: -8px;
  left: -8px;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--image
  .floating_tag
  img {
  max-width: 80px;
  height: auto;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title {
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  max-width: 100%;
  z-index: 2;
  min-height: 60px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product-category-row
    .custom_block.block__product_categories_row
    .block_product-categories__wrapper
    a.block_product-categories__item
    .block_product-categories__item--title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 12px;
    min-height: 35px;
  }
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  h3 {
  font-size: 17px;
  max-width: 72%;
  text-align: center;
  display: block;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item
  .block_product-categories__item--title
  .block_product-categories__item--shop-now {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  height: 0;
  display: inline-block;
  overflow: hidden;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.sitehq-accordion--wrapper,
.sitehq-adaptive-content--wrapper {
  max-width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:hover {
  scale: 1.07;
  z-index: 3;
  color: #5c068c;
  text-decoration: none;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:hover
  .block_product-categories__item--shop-now {
  opacity: 1;
  height: 25px;
  margin-bottom: 16px;
  padding: 6px 12px;
}
.product-category-row
  .custom_block.block__product_categories_row
  .block_product-categories__wrapper
  a.block_product-categories__item:hover:before {
  height: 80px;
}
.product-category-row .custom_block.block__product_categories_row .slick-list {
  overflow: visible;
  padding: 12px 0;
}
.sitehq-accordion--item {
  padding-bottom: 12px;
}
.sitehq-accordion--item:last-of-type {
  border-bottom: rgba(0, 0, 0, 0.15) 1px solid;
}
.sitehq-accordion--button-heading {
  background-color: transparent;
  width: 100%;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  border: 0;
  outline: 0;
  border-top: rgba(0, 0, 0, 0.15) 1px solid;
  padding-top: 12px;
  padding-left: 0;
  padding-right: 32px;
  position: relative;
}
.sitehq-accordion--button-heading:after {
  width: 26px;
  color: rgba(0, 0, 0, 0.15);
  height: 26px;
  transition: all 0.3s;
  content: "\f077";
  font-family: FontAwesome;
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 26px;
}
.sitehq-accordion--button-heading.collapsed:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sitehq-adaptive-content--wrapper {
  padding-left: 0;
  padding-right: 0;
}
.module__text-slider-block {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
  padding-top: 40px;
  background-color: #e6e6e6;
  color: #626366;
}
.module__text-slider-block .module__text-slider-title {
  text-align: center;
  margin-bottom: 45px;
}
.module__text-slider-block .slick-list {
  padding: 0 0 40px !important;
}
.module__text-slider-block .module__text-slider--wrapper-block {
  z-index: 1;
}
.module__text-slider-block .bg-wrapper-test {
  width: 100%;
  position: relative;
}
@media (max-width: 1023.98px) {
  .module__text-slider-block .bg-wrapper-test {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.module__text-slider-block .bg-wrapper-test:before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 70px;
  height: 70px;
  z-index: 0;
  background: url(../../images/testimonials-quotes-top.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .module__text-slider-block .bg-wrapper-test:before {
    top: -112px;
    left: -35px;
    width: 280px;
    height: 280px;
  }
}
.module__text-slider-block .bg-wrapper-test:after {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 0;
  background: url(../../images/testimonials-quotes-bottom.svg) no-repeat;
  background-size: contain;
}
.module__text-slider-block .slick-track .slick-slide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  scale: 1;
}
@media (min-width: 768px) {
  .module__text-slider-block .bg-wrapper-test:after {
    bottom: -140px;
    right: -35px;
    width: 280px;
    height: 280px;
  }
  .module__text-slider-block .slick-track {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .module__text-slider-block .slick-track .slick-slide {
    min-height: 590px;
    padding: 16px;
  }
  .module__text-slider-block .slick-track .slick-slide.slick-center {
    scale: 1.12;
    z-index: 2;
    box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.19),
      0 6px 6px rgba(0, 0, 0, 0.23);
  }
  .module__text-slider-block h3 {
    font-size: 18px;
  }
}
.module__text-slider-block h3 {
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .module__text-slider-block .slick-track .slick-slide {
    padding: 28px;
  }
  .module__text-slider-block h3 {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .module__text-slider-block .slick-track .slick-slide {
    padding: 36px;
  }
  .module__text-slider-block h3 {
    font-size: 28px;
  }
}
.module__text-slider-block h4 {
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 12px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .module__text-slider-block h4 {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .module__text-slider-block h4 {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .module__text-slider-block h4 {
    font-size: 22px;
  }
}
.module__text-slider-block .module__text-slider--wrapper--slide-title {
  font-size: 16px;
}
.module__text-slider-block .testimonial__image {
  text-align: center;
  padding: 10px;
  max-width: 50%;
  margin: 0 auto;
}
.module__text-slider-block .testimonial__image img {
  width: 100%;
  height: auto;
}
.module__text-slider-block .module__text-slider--wrapper--slide-copy {
  font-size: 14px;
}
@media (min-width: 768px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-copy {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-copy {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-copy {
    font-size: 18px;
  }
}
.module__text-slider-block .module__text-slider--wrapper--slide-company {
  font-size: 12px;
  font-style: italic;
}
@media (min-width: 768px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-company {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-company {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .module__text-slider-block .module__text-slider--wrapper--slide-company {
    font-size: 16px;
  }
}
@media (max-width: 1023.98px) {
  .module__text-slider-block .slick-dots {
    bottom: -75px !important;
  }
}
.module__text-slider-block .slick-arrow {
  width: 0.75rem;
  height: 1.0625rem;
  z-index: 9;
  top: auto;
  bottom: -1.375rem;
}
.module__text-slider-block .slick-arrow::before {
  display: none;
}
.module__text-slider-block .slick-arrow.slick-prev {
  left: 37%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/left_arrow.svg) no-repeat;
  background-size: contain;
}
.module__text-slider-block .slick-arrow.slick-next {
  right: 37%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../../images/right_arrow.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .module__text-slider-block .slick-arrow.slick-prev {
    left: 33%;
  }
  .module__text-slider-block .slick-arrow.slick-next {
    right: 33%;
  }
}
@media (max-width: 767.98px) {
  .module__text-slider-block .slick-arrow {
    top: auto;
    bottom: -1.375rem;
    width: 0.75rem;
    height: 1.0625rem;
  }
}
.module__text-slider-block .module__text-slider--wrapper--slide {
  padding-left: 40px;
  padding-right: 40px;
  background-color: #fff;
  text-align: center;
}
.module__text-slider-block .module__text-slider-stars {
  color: #5c068c;
  margin: 0 auto;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.module__text-slider-block .module__text-slider-stars img {
  max-width: 120px;
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.module__text-slider-block .module__text-slider-stars i {
  padding: 0 1px;
}
/*# sourceMappingURL=main.min.css.map */
</pre></body></html>