@charset "UTF-8";
/*! system-font.css v2.0.2 | CC0-1.0 License | github.com/jonathantneal/system-font-css */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-family: system-ui;
  font-style: normal;
  font-weight: 300;
  src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Segoe UI Light"), local("Ubuntu Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma"); }

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: 300;
  src: local(".SFNSText-LightItalic"), local(".HelveticaNeueDeskInterface-Italic"), local(".LucidaGrandeUI"), local("Segoe UI Light Italic"), local("Ubuntu Light Italic"), local("Roboto-LightItalic"), local("DroidSans"), local("Tahoma"); }

@font-face {
  font-family: system-ui;
  font-style: normal;
  font-weight: 400;
  src: local(".SFNSText-Regular"), local(".HelveticaNeueDeskInterface-Regular"), local(".LucidaGrandeUI"), local("Segoe UI"), local("Ubuntu"), local("Roboto-Regular"), local("DroidSans"), local("Tahoma"); }

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: 400;
  src: local(".SFNSText-Italic"), local(".HelveticaNeueDeskInterface-Italic"), local(".LucidaGrandeUI"), local("Segoe UI Italic"), local("Ubuntu Italic"), local("Roboto-Italic"), local("DroidSans"), local("Tahoma"); }

@font-face {
  font-family: system-ui;
  font-style: normal;
  font-weight: 500;
  src: local(".SFNSText-Medium"), local(".HelveticaNeueDeskInterface-MediumP4"), local(".LucidaGrandeUI"), local("Segoe UI Semibold"), local("Ubuntu Medium"), local("Roboto-Medium"), local("DroidSans-Bold"), local("Tahoma Bold"); }

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: 500;
  src: local(".SFNSText-MediumItalic"), local(".HelveticaNeueDeskInterface-MediumItalicP4"), local(".LucidaGrandeUI"), local("Segoe UI Semibold Italic"), local("Ubuntu Medium Italic"), local("Roboto-MediumItalic"), local("DroidSans-Bold"), local("Tahoma Bold"); }

@font-face {
  font-family: system-ui;
  font-style: normal;
  font-weight: 700;
  src: local(".SFNSText-Bold"), local(".HelveticaNeueDeskInterface-Bold"), local(".LucidaGrandeUI"), local("Segoe UI Bold"), local("Ubuntu Bold"), local("Roboto-Bold"), local("DroidSans-Bold"), local("Tahoma Bold"); }

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: 700;
  src: local(".SFNSText-BoldItalic"), local(".HelveticaNeueDeskInterface-BoldItalic"), local(".LucidaGrandeUI"), local("Segoe UI Bold Italic"), local("Ubuntu Bold Italic"), local("Roboto-BoldItalic"), local("DroidSans-Bold"), local("Tahoma Bold"); }

/*!
 * 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; }

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -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: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat); }

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 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(1 * 3);
  animation-iteration-count: calc(1 * 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: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay); }

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2); }

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3); }

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4); }

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5); }

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2); }

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -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(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2); }

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -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; } }

/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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 {
  from,
  20%,
  53%,
  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 {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.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 {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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 {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -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); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -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); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes wobble {
  from {
    -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); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from,
  11.1%,
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from,
  11.1%,
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -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; }

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7; }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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; }

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateX(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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(0px) scale(0.7);
    transform: translateY(0px) 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; }

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  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 {
  from,
  20%,
  40%,
  60%,
  80%,
  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(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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 {
  from,
  60%,
  75%,
  90%,
  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; }

/* Bouncing exits  */
@-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 {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  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; }

/* Fading entrances  */
@-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; }

/* Fading exits */
@-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; }

/* Flippers */
@-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; }

@-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 {
  -webkit-backface-visibility: visible !important;
  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 {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  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(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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; }

/* Lightspeed */
@-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; }

/* Rotating entrances */
@-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; }

/* Rotating exits */
@-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; }

/* Specials */
@-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(1s * 2);
  animation-duration: calc(1s * 2);
  -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; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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; }

/* Zooming entrances */
@-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; }

/* Zooming exits */
@-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; }

/* Sliding entrances */
@-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; }

/* Sliding exits */
@-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; }

meta.foundation-version {
  font-family: "/5.5.3/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0; }

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 641px)/";
  width: 0; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:641px)/";
  width: 641px; }

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:641px) and (max-width:801px)/";
  width: 641px; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:801px)/";
  width: 801px; }

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:801px) and (max-width:1261px)/";
  width: 801px; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:1261px)/";
  width: 1261px; }

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:1261px) and (max-width:1681px)/";
  width: 1261px; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:1681px)/";
  width: 1681px; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

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

.u-inlineBlock {
  display: inline-block !important;
  max-width: 100% !important; }

.u-hidden {
  display: none !important; }

.u-hiddenVisually {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.is-srOnly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.u-textAlignCenter {
  text-align: center !important; }

.u-textAlignLeft {
  text-align: left !important; }

.u-textAlignRight {
  text-align: right !important; }

.u-textBreak {
  word-wrap: break-word !important; }

.u-textInheritColor {
  color: inherit !important; }

.u-textKern {
  text-rendering: optimizeLegibility !important;
  font-feature-settings: "kern" 1 !important;
  font-kerning: normal !important; }

.u-textLead {
  line-height: 1.6 !important;
  font-size: 1.1em !important; }

.u-textNoWrap {
  white-space: nowrap !important; }

.u-textTruncate {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

.u-fontSmoothing {
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-font-smoothing: antialiased !important; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

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

html,
body {
  height: 100%; }

body {
  background: white;
  color: #050505;
  cursor: auto;
  margin: 0;
  padding: 0;
  position: relative; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

a:hover {
  cursor: pointer; }

figure {
  margin: 0 0 1.5rem; }

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

img {
  -ms-interpolation-mode: bicubic; }

button {
  background: none;
  border: 0; }
  button:active, button:focus {
    box-shadow: none;
    outline: none; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

html {
  font-size: 12px; }
  @media (min-width: 641px) {
    html {
      font-size: 12px; } }
  @media (min-width: 801px) {
    html {
      font-size: 12px; } }
  @media (min-width: 1261px) {
    html {
      font-size: 12px; } }

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5; }

a {
  color: #050505;
  line-height: inherit;
  text-decoration: underline; }
  a:hover, a:focus {
    color: #373737; }

p {
  margin-bottom: 1.5rem; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #050505;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.25px;
  margin-bottom: 0.75rem; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #373737;
    font-size: 60%;
    line-height: 0; }

h1 {
  font-size: 28px; }

h2 {
  font-size: 22px; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 16px; }

h5 {
  font-size: 13px; }

h6 {
  font-size: 12px; }

.subheader {
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0.75rem; }

hr {
  border: solid #ebebeb;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 2rem 0 1.91667rem; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: 700;
  line-height: inherit; }

small {
  font-size: 60%;
  line-height: inherit; }

ul,
ol,
dl {
  list-style-position: outside;
  margin-bottom: 1.5rem; }

ul ul,
ul ol,
ol ul,
ol ol {
  margin-left: 1.2rem;
  margin-bottom: 0; }

ul {
  margin-left: 1.15rem; }

ol {
  margin-left: 1.15rem; }

dl dt {
  font-weight: 700;
  margin-bottom: 0.41667rem; }

dl dd {
  margin-bottom: 1.5rem; }

abbr,
acronym {
  border-bottom: 1px dotted #cccccc;
  color: #050505;
  cursor: help;
  font-size: 90%;
  text-transform: uppercase; }

abbr {
  text-transform: none; }

blockquote { }

blockquote,
blockquote p {
  font-size: 18px;
  line-height: 29px; }

cite {
  color: #999999;
  display: block;
  font-size: 1rem; }

.icon {
  height: 1.33333rem;
  width: 1.33333rem;
  display: inline-block;
  vertical-align: middle; }
  .icon svg {
    display: inline-block;
    fill: #373737;
    height: 100%;
    vertical-align: top;
    width: 100%; }

/*doc
---
title: Lists
name: lists
category: Elements
---

*/
/*doc
---
title: Inline List
name: inline_list
category: Elements
parent: lists
---


```html_example
<ul class="inlineList">
    <li><a href="#">Link 1</a></li>
    <li><a href="#">Link 2</a></li>
    <li><a href="#">Link 3</a></li>
    <li><a href="#">Link 4</a></li>
    <li><a href="#">Link 5</a></li>
</ul>
```
##### Inline list settings
```sass_file_example
src/settings/foundation/inlineList/_settings.scss
```

*/
.inlineList {
  list-style: none;
  margin-top: 0;
  margin-bottom: 1.41667rem;
  margin-left: -1.83333rem;
  margin-right: 0;
  overflow: hidden;
  padding: 0; }
  .inlineList > li {
    display: block;
    float: left;
    list-style: none;
    margin-left: 1.83333rem; }
    .inlineList > li > * {
      display: block; }

/*doc
---
title: Tables
name: tables
category: Elements
---


```html_example
<table class="table">
    <thead class="table-thead">
        <tr>
            <th>Table Header</th>
            <th>Table Header</th>
            <th class="table-header--numericData" scope="column">Totals</th>
        </tr>
    </thead>
    <tbody class="table-tbody">
        <tr>
            <td>Content Goes Here</td>
            <td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
            <td class="table-cell--numericData">$10</td>
        </tr>
    </tbody>
    <tfoot class="table-tfoot">
        <tr>
            <td class="table-cell--numericData" colspan="2">Subtotal:</td>
            <td class="table-cell--numericData"><strong>$60</strong></td>
        </tr>
    </tfoot>
</table>
```
##### Tables settings
```sass_file_example
src/settings/foundation/tables/_settings.scss
```

*/
.table {
  border: solid 1px #ebebeb;
  margin-bottom: 2rem;
  table-layout: auto;
  width: 100%; }
  .table thead {
    background: #e5e5e5; }
    .table thead tr th,
    .table thead tr td {
      font-size: 1rem;
      font-weight: 700;
      padding: 0.75rem 1.5rem; }
  .table tr th,
  .table tr td {
    padding: 0.75rem 1.5rem;
    text-align: left; }
  .table thead tr th,
  .table tfoot tr th,
  .table tfoot tr td,
  .table tbody tr th,
  .table tbody tr td,
  .table tr td {
    display: table-cell; }
  .table th.table-header--numericData,
  .table td.table-cell--numericData {
    text-align: right; }

.table-thead {
  border: 1px solid #ebebeb; }

.table-tfoot {
  border: 1px solid #ebebeb; }

.table-tbody tr {
  border-bottom: 1px solid #ebebeb; }
  .table-tbody tr:last-child {
    border-bottom: 0; }

/*doc
---
title: Buttons
name: button
category: Components
---

These are all the button

```sass_file_example
src/settings/foundation/buttons/_settings.scss
```

```html_example
<button class="button">Button</button>

<input type="submit" class="button" value="Button">

<a class="button" role="button" href="#">Button</a>
```

*/
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  border-color: #050505;
  color: #050505;
  font-size: 1rem;
  padding: 0.91667rem 2.25rem;
  border-radius: 4px;
  outline: none;
  vertical-align: middle; }
  .button:hover, .button:focus, .button.is-active, .button.active {
    background-color: transparent;
    border-color: #373737;
    color: #373737; }
  .button:active {
    background-color: transparent;
    border: 1px solid #050505;
    color: #050505; }
  .button:focus, .button.is-active, .button.active {
    outline: none; }
  @media (min-width: 481px) {
    .button + .button {
      margin-left: 0.75rem; } }

/*doc
---
title: Button states
name: button_states
category: Components
parent: button
---

```html_example
<button class="button button--primary">Primary Button</button>

<button class="button">Secondary / Default Button</button>

<button class="button button--tertiary">Tertiary Button</button>

<button class="button button--action">Call-to-Action Button</button>
```
    */
.button--primary {
  background-color: #232b2e;
  border-color: #232b2e;
  color: white; }
  .button--primary:hover, .button--primary:focus, .button--primary.is-active, .button--primary.active {
    background-color: #232b2e;
    border-color: #232b2e;
    color: white; }
  .button--primary:active {
    background-color: #232b2e;
    border: 1px solid #232b2e;
    color: white; }

.button[disabled] {
  background-color: #cccccc;
  border-color: rgba(0, 0, 255, 0);
  color: white;
  cursor: default; }

/*doc
---
title: Button sizes
name: button_sizes
category: Components
parent: button
---

```html_example
<button class="button button--large">Large</button>

<button class="button">Default</button>

<button class="button button--small">Small</button>

<button class="button button--tiny">Tiny</button>
```

And a special case, slab, which takes the full width of it's container and any
size modifier

```html_example
<button class="button button--slab">Slab</button>

<button class="button button--slab button--large">Slab</button>
```

*/
.button--large {
  font-size: 13px; }

.button--small {
  font-size: 12px;
  padding: 0.58333rem 1.5rem; }

.button--tiny { }

.button--slab {
  display: block;
  width: 100%; }
  .button + .button--slab {
    margin-left: 0; }

.button--icon {
  font-size: 1rem;
  padding: 0.75rem 0.75rem; }
  .button--icon svg {
    fill: #757575; }

/*doc
---
title: Button Groups
name: button_groups
category: Components
parent: button
---


```html_example
<div class="buttonGroup">
    <button class="button">Button1</button>
    <button class="button">Button2</button>
    <button class="button">Button3</button>
</div>
```
##### Button group settings
```sass_file_example
src/settings/bigcommerce/buttonGroup/_settings.scss
```

*/
.buttonGroup {
  display: inline-block; }
  .buttonGroup > .button {
    border-radius: 0;
    border-right-width: 0;
    float: left;
    margin-left: 0; }
    .buttonGroup > .button:first-child {
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .buttonGroup > .button:last-child {
      border-bottom-right-radius: 4px;
      border-right-width: 1px;
      border-top-right-radius: 4px; }

/*doc
---
title: Dropdowns
name: dropdown
category: Components
---

Dropdowns are simple lists that can appear next to any element that can trigger a click event.
They can be used by buttons, icons, links and other similar items.

```sass_file_example
src/settings/foundation/dropdown/_settings.scss
```
```html_example
<ul class="dropdown-menu" style="display:block; left: 0;">
    <li class="dropdown-menu-item"><a href="#" ng-click="$event.preventDefault()">One</a></li>
    <li class="dropdown-menu-item"><a href="#" ng-click="$event.preventDefault()">Two</a></li>
    <li class="dropdown-menu-item"><a href="#" ng-click="$event.preventDefault()">Three</a></li>
</ul>
```
*/
.dropdown-menu {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #e5e5e5;
  font-size: 1rem;
  height: auto;
  width: 100%;
  z-index: 89;
  max-width: 200px; }
  .dropdown-menu.open {
    display: block; }
  .dropdown-menu > *:first-child {
    margin-top: 0; }
  .dropdown-menu > *:last-child {
    margin-bottom: 0; }

.dropdown-menu--content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #e5e5e5;
  font-size: 1rem;
  height: auto;
  padding: 0.75rem;
  width: 100%;
  z-index: 89;
  max-width: 200px; }
  .dropdown-menu--content.open {
    display: block; }
  .dropdown-menu--content > *:first-child {
    margin-top: 0; }
  .dropdown-menu--content > *:last-child {
    margin-bottom: 0; }

.dropdown-menu-item {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0.41667rem 0.83333rem; }
  .dropdown-menu-item a {
    display: block;
    padding: 0.41667rem; }
  .dropdown-menu-item a {
    margin: -0.41667rem; }

/*doc
---
title: Forms
name: forms
category: Forms
---

##### Foundation Forms settings
```sass_file_example
src/settings/foundation/forms/_settings.scss
```

##### Citadel Forms settings
```sass_file_example
src/settings/foundation/forms/_settings.scss
```

*/
/*doc
---
title: Form basics
name: 01forms_basics
category: Forms
parent: forms
---

Citadel comes with styling for most form input types and some custom ones. To start
things off a basic, semantic mark-up structure should be adhered too, including
the `form`, `fieldset` and `legend` elements where ever possible.

```html_example
<form action="#" class="form">
    <fieldset class="form-fieldset">
        <legend class="form-legend">Form legend</legend>
    </fieldset>
</form>
```

*/
.form {
  margin: 0 0 1.5rem; }

.form-fieldset {
  border-width: 0;
  margin: 0;
  padding: 0; }

.form-legend {
  background: transparent;
  border: solid #999999;
  border-width: 0 0 1px;
  display: block;
  line-height: 32px;
  margin-bottom: 0.75rem;
  padding: 0;
  width: 100%; }

/*doc
---
title: Form labels and inputs
name: 03forms_basics
category: Forms
parent: forms
---

Inputs of all types should be associated with a label which has a `for` attribute

```html_example
<div class="form-field">
    <label class="form-label" for="input1">Input Label</label>
    <input class="form-input" id="input1" type="text" placeholder="Placeholder text">
</div>
<div class="form-field">
    <label class="form-label" for="input2">Number Label</label>
    <input class="form-input" id="input2" type="number" placeholder="Number input">
</div>
<div class="form-field">
    <label class="form-label" for="input3">Textarea Label <small>additional context</small></label>
    <textarea class="form-input" id="input3" placeholder="Placeholder text" rows="3"></textarea>
</div>
```
*/
.form-label {
  color: #373737;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem; }
  .form-label small {
    color: #373737;
    font-size: 0.83333rem;
    text-transform: uppercase;
    vertical-align: bottom; }

.form-input {
  appearance: none;
  background-color: white;
  border-color: #ebebeb;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  color: #050505;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  height: 3rem;
  margin: 0;
  padding: 0.75rem 1rem;
  transition: border-color 100ms ease-out;
  width: 100%;
  /*doc
---
title: Disabled inputs
name: 04forms_basics
category: Forms
parent: forms
---

```html_example
<div class="form-field">
    <label class="form-label" for="disabled_input1">Input Label</label>
    <input class="form-input" id="disabled_input1" disabled type="text" value="Disabled text">
</div>

<div class="form-field">
    <label class="form-label" for="disabled_input2">Input Label</label>
    <input class="form-input" id="disabled_input2" readonly type="text" value="Readonly text">
</div>
```
*/ }
  .form-input:disabled {
    background-color: #e5e5e5;
    color: #999999;
    cursor: not-allowed; }
  .form-input[readonly] {
    background-color: #ebebeb;
    border-color: #999999;
    color: #757575;
    cursor: text; }
  .form-input:focus {
    border-color: #373737;
    outline: none; }
  .form-input[rows] {
    height: auto; }
  .form-input[type="search"] {
    box-sizing: border-box; }
  .form-input::-webkit-input-placeholder {
    color: #999999; }
  .form-input::-ms-clear {
    height: 0;
    width: 0; }
  .form-input::-moz-placeholder {
    color: #999999; }
  .form-input:-ms-input-placeholder {
    color: #999999; }

/*doc
---
title: Selects
name: 05forms_basics
category: Forms
parent: forms
---

```html_example
<div class="form-field">
    <label class="form-label" for="select1">Native Select label</label>
    <select class="form-select" name="select1" id="select1">
        <option>Please select a value</option>
        <option value="1">Option 1</option>
        <option value="2">Option 2</option>
    </select>
</div>
```
*/
.form-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: white;
  border-radius: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #ebebeb;
  color: #050505;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  padding: 0.75rem;
  border-radius: 0;
  cursor: pointer;
  height: 3rem;
  margin: 0;
  outline: 0; }
  .form-select::-ms-expand {
    display: none; }
  .form-select.radius {
    border-radius: 4px; }
  .form-select:focus {
    border-color: #373737; }
  .form-select:disabled {
    background-color: #e5e5e5;
    cursor: not-allowed; }
  .form-select:focus {
    border-color: #373737; }

/*doc
---
title: Form Panels and Layouts
name: 13forms_layouts
category: Forms
parent: forms
---

We provide a couple of component styles to layout forms.

The more `form-field` components you place in the `form-row`, the smaller the columns gets.
Columns are equal length, and calculated automatically by Flexbox by default.

It's the same mark-up but depending on your browser support needs, you can switch
between a flexbox layout or a more traditional grid based layout by setting
`$formRow-modernBrowsers` to `false`.

The grid based layout of `form-feilds` will require the use of modifiers to calculate
the correct widths. We support `form-field--half`, `form-field--third` and
`form-field--quarter`

```html_example
<form action="#" class="form">
    <fieldset class="form-fieldset">
        <legend class="form-legend">Form legend</legend>
        <div class="form-body">
            <div class="form-row">
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
            </div>
            <div class="form-row">
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
                <div class="form-field">
                    <label class="form-label" for="input4">Prefixed Label</label>
                    <div class="form-prefixPostfix">
                        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">KG</span>
                        <input class="form-input form-prefixPostfix-input" id="input4" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
                    </div>
                </div>
            </div>
            <div class="form-row">
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
                <div class="form-field">
                    <label class="form-label" for="input4">Prefixed Label</label>
                    <div class="form-prefixPostfix">
                        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">KG</span>
                        <input class="form-input form-prefixPostfix-input" id="input4" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
                    </div>
                </div>
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
            </div>
            <div class="form-row">
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
                <div class="form-field">
                    <label class="form-label" for="input4">Prefixed Label</label>
                    <div class="form-prefixPostfix">
                        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">KG</span>
                        <input class="form-input form-prefixPostfix-input" id="input4" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
                    </div>
                </div>
                <div class="form-field">
                    <label class="form-label" for="input12">Input Label</label>
                    <input class="form-input" id="input12" type="text" placeholder="Placeholder text">
                </div>
                <div class="form-field">
                    <label class="form-label" for="input4">Prefixed Label</label>
                    <div class="form-prefixPostfix">
                        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">KG</span>
                        <input class="form-input form-prefixPostfix-input" id="input4" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
                    </div>
                </div>
            </div>
        </div>
    </fieldset>
</form>
```
*/
.form-body {
  background-color: white;
  border: 1px solid #999999;
  box-shadow: 0 1px 2px rgba(5, 5, 5, 0.13);
  margin-bottom: 1.5rem;
  max-width: none;
  padding: 1.5rem; }

.form-row {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto; }
  .form-row:before, .form-row:after {
    content: " ";
    display: table; }
  .form-row:after {
    clear: both; }
  .form-row .form-field {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    float: left;
    max-width: none; }
  @media (min-width: 641px) {
    .form-row--half .form-field {
      width: 50%; }
    .form-row--third .form-field {
      width: 33.33333%; }
    .form-row--quarter .form-field {
      width: 25%; } }

/*doc
---
title: Form Fields
name: 02forms_basics
category: Forms
parent: forms
---

Each form input should be wrapped in a `form-field`

```html_example
<div class="form-field">
</div>
```
*/
.form-field {
  display: block;
  margin: 0 0 2rem;
  max-width: none; }
  .form-field:before, .form-field:after {
    content: " ";
    display: table; }
  .form-field:after {
    clear: both; }

/*doc
---
title: Selects [multiple]
name: 06forms_basics
category: Forms
parent: forms
---

Styling of the select element with the multiple attribute

```html_example
<div class="form-field">
    <label class="form-label" for="multiselect1">Native Select Multiple label</label>
    <select class="form-select" multiple name="multiselect1" id="multiselect1">
        <option>Please select a value</option>
        <option value="1">Option 1</option>
        <option value="2">Option 2</option>
        <option value="3">Option 3</option>
        <option value="4">Option 4</option>
    </select>
</div>
```
*/
.form-select[multiple] {
  height: auto; }
  .form-select[multiple] option {
    padding: 5px; }

/*doc
---
title: Radios and Checkbox
name: 07forms_basics
category: Forms
parent: forms
---

```html_example
<div class="form-field">
    <label class="form-label">Field label</label>
    <input class="form-checkbox" type="checkbox" id="check1">
    <label class="form-label" for="check1">Checkbox 1 label</label>
    <input class="form-checkbox" type="checkbox" id="check2">
    <label class="form-label" for="check2">Checkbox 2 label</label>
</div>
```

```html_example
<div class="form-field">
    <label class="form-label">Field label</label>
    <input class="form-radio" type="radio" name="radio_example" id="radio1">
    <label class="form-label" for="radio1">Radio 1 label</label>
    <input class="form-radio" type="radio" name="radio_example" id="radio2">
    <label class="form-label" for="radio2">Radio 2 label</label>
</div>
```
*/
.form-checkbox,
.form-radio {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .form-checkbox + .form-label,
  .form-radio + .form-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.41667rem;
    padding-left: 1.91667rem;
    position: relative;
    vertical-align: baseline;
    width: 100%; }
    .form-checkbox + .form-label::before, .form-checkbox + .form-label::after,
    .form-radio + .form-label::before,
    .form-radio + .form-label::after {
      content: "";
      display: block;
      position: absolute;
      transition: all 50ms ease-out; }
    .form-checkbox + .form-label::before,
    .form-radio + .form-label::before {
      background-color: white;
      border: solid #999999;
      border-width: 1px;
      height: 1.33333rem;
      left: 0;
      top: 0;
      width: 1.33333rem; }
    .form-checkbox + .form-label::after,
    .form-radio + .form-label::after {
      height: 1.16667rem;
      left: 1px;
      opacity: 0;
      top: 1px;
      transform: scale(0);
      width: 1.16667rem; }

.form-checkbox:checked + .form-label::after,
.form-radio:checked + .form-label::after {
  opacity: 1;
  transform: scale(1); }

.form-checkbox[disabled] + .form-label,
.form-radio[disabled] + .form-label {
  cursor: default; }
  .form-checkbox[disabled] + .form-label::before,
  .form-radio[disabled] + .form-label::before {
    background-color: #e5e5e5; }

.form-checkbox + .form-label::before {
  border-radius: 4px; }

.form-checkbox + .form-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(55, 55, 55, 0.999)' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  color: rgba(55, 55, 55, 0.999);
  content: "";
  font-size: 1.16667rem;
  line-height: 1;
  text-align: center; }

.form-radio + .form-label::before {
  border-radius: 50%; }

.form-radio + .form-label::after {
  background: rgba(55, 55, 55, 0.999);
  border: 3px solid white;
  border-radius: 1.16667rem; }

/*doc
---
title: Inputs with Extras
name: 08forms_inputextras
category: Forms
parent: forms
---

Sometimes inputs need inline actions. An inline button for a search box for example.

```html_example
<div class="form-field">
    <label class="form-label" for="input9">Input with action</label>
    <input class="form-input has-action" type="search" id="input9">
    <button class="button button--icon button--inputAction">
        <span class="u-hiddenVisually">Search</span>
        <icon glyph="ic-search" class="icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></icon>
    </button>
</div>
```
*/
.form-input.has-action {
  float: left;
  padding-right: 2.83333rem; }
  .form-input.has-action + .button--inputAction {
    background: transparent;
    border: 0;
    border-radius: 0 0 0 0;
    float: left;
    height: 2.83333rem;
    margin: 0.08333rem 0 0 -2.91667rem;
    width: 2.83333rem; }

/*doc
---
title: Inputs with Icons
name: 09forms_inputicons
category: Forms
parent: forms
---

Sometimes inputs need to display an informative icon to convey a certain meaning, like secure.

```html_example
<div class="form-field">
    <label class="form-label" for="input99">Input with icon</label>
    <input class="form-input has-icon" type="search" id="input9">
    <icon glyph="ic-lock" class="icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"></path></svg></icon>
</div>
```
*/
.form-input.has-icon {
  float: left;
  padding-right: 3rem; }
  .form-input.has-icon + .icon {
    height: 3rem;
    margin-left: -3rem;
    width: 1.66667rem; }

/*doc
---
title: Form PrefixPostfix
name: 10forms_prefixpostfix
category: Forms
parent: forms
---

PrefixPostfix

```html_example
<div class="form-field">
    <label class="form-label" for="input4">Prefixed Label <small>(Inc. tax)</small></label>
    <div class="form-prefixPostfix">
        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">AUD $</span>
        <input class="form-input form-prefixPostfix-input" id="input4" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
    </div>
</div>

<div class="form-field">
    <label class="form-label" for="input5">Postfixed Label</label>
    <div class="form-prefixPostfix">
        <input class="form-input form-prefixPostfix-input" id="input5" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc2">
        <span class="form-prefixPostfix-label form-prefixPostfix-label--postfix" id="prefixDesc2">KG</span>
    </div>
</div>
```

### PrefixPostfix with a button

```html_example
<div class="form-field">
    <label class="form-label" for="input6">Prefixed Button</label>
    <div class="form-prefixPostfix">
        <input class="button form-prefixPostfix-button--prefix" type="submit" value="Save">
        <input class="form-input" id="input6" type="text" placeholder="Placeholder text">
    </div>
</div>

<div class="form-field">
    <label class="form-label" for="input7">Postfixed Button</label>
    <div class="form-prefixPostfix">
        <input class="form-input" id="input7" type="text" placeholder="Placeholder text">
        <input class="button form-prefixPostfix-button--postfix" type="submit" value="Save">
    </div>
</div>
```
*/
.form-prefixPostfix {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .form-prefixPostfix .form-input {
    flex: 1; }
  .form-prefixPostfix .button {
    height: 3rem; }

.form-prefixPostfix-input {
  border-radius: 0 0 0 0; }

.form-prefixPostfix-label {
  background-color: white;
  border: solid #999999;
  border-width: 1px;
  flex: 1;
  font-weight: 300;
  height: 3rem;
  line-height: normal;
  max-width: 7.5rem;
  padding: 0.75rem;
  text-align: center; }

.form-prefixPostfix-label--prefix {
  border-radius: 0 0 0 0;
  border-width: 1px 0 1px 1px; }
  .form-prefixPostfix-label--prefix + .form-input {
    border-radius: 0 0 0 0; }

.form-prefixPostfix-label--postfix {
  border-radius: 0 0 0 0;
  border-width: 1px 1px 1px 0; }

.form-prefixPostfix-button--prefix {
  margin: 0 0.75rem 0 0; }

.form-prefixPostfix-button--postfix {
  margin: 0 0 0 0.75rem; }

/*doc
---
title: Form Switch
name: 11forms_switch
category: Forms
parent: forms
---

Switch

```html_example
<div class="form-field">
    <switch>
        <div class="switch">
            <input class="switch-checkbox" type="checkbox" id="switch-1" aria-describedby="switch-ariaDescription-2">
            <label class="switch-toggle" for="switch-1">
            </label>
            <span id="switch-ariaDescription-2" class="switch-ariaDescription">
                Switching this setting off will...
            </span>
        </div>
    </switch>
</div>

<div class="form-field">
    <switch>
        <div class="switch switch--checked">
            <input class="switch-checkbox" type="checkbox" id="switch-1" aria-describedby="switch-ariaDescription-2">
            <label class="switch-toggle" for="switch-1">
            </label>
            <span id="switch-ariaDescription-2" class="switch-ariaDescription">
                Switching this setting off will...
            </span>
        </div>
    </switch>
</div>

<div class="form-field">
    <switch>
        <div class="switch switch--checked">
            <input class="switch-checkbox" type="checkbox" id="switch-3" aria-describedby="switch-ariaDescription-4">
            <label class="switch-toggle" for="switch-3">
                <span class="switch-label">On</span>
            </label>
            <span id="switch-ariaDescription-4" class="switch-ariaDescription">
                Switching this setting off will...
            </span>
        </div>
    </switch>
</div>

<div class="form-field">
    <switch>
        <div class="switch">
            <input class="switch-checkbox" type="checkbox" id="switch-3" aria-describedby="switch-ariaDescription-4">
            <label class="switch-toggle" for="switch-3">
                <span class="switch-label">Off</span>
            </label>
            <span id="switch-ariaDescription-4" class="switch-ariaDescription">
                Switching this setting off will...
            </span>
        </div>
    </switch>
</div>

<div class="form-field">
    <switch>
        <div class="switch switch--important">
            <span class="switch-description--off">Down for Maintenance</span>
            <input class="switch-checkbox" type="checkbox" id="switch-7" aria-describedby="switch-ariaDescription-8">
            <label class="switch-toggle" for="switch-7">
            </label>
            <span class="switch-description--on">Open</span>
            <span id="switch-ariaDescription-8" class="switch-ariaDescription">
                Switching this setting to off will enter your store into maintenance mode.
            </span>
        </div>
    </switch>
</div>

<div class="form-field">
    <switch>
        <div class="switch switch--important switch--checked">
            <span class="switch-description--off">Down for Maintenance</span>
            <input class="switch-checkbox" type="checkbox" id="switch-7" aria-describedby="switch-ariaDescription-8">
            <label class="switch-toggle" for="switch-7">
            </label>
            <span class="switch-description--on">Open</span>
            <span id="switch-ariaDescription-8" class="switch-ariaDescription">
                Switching this setting to off will enter your store into maintenance mode.
            </span>
        </div>
    </switch>
</div>
```
*/
.switch-checkbox {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .switch-checkbox:focus + .switch-toggle {
    border-color: #757575;
    box-shadow: 0 0 4px rgba(117, 117, 117, 0.4); }

.switch-toggle {
  background-color: #757575;
  border: 1px solid #757575;
  border-radius: 2.33333rem;
  cursor: pointer;
  display: inline-block;
  height: 2.33333rem;
  position: relative;
  transition: all 100ms ease-out;
  vertical-align: middle;
  width: 5rem; }
  .switch--important .switch-toggle {
    background-color: #f1a500;
    border-color: #f1a500; }
  .switch--checked .switch-toggle {
    background-color: #008a06;
    border-color: #008a06; }
  .switch--disabled .switch-toggle {
    background-color: #e5e5e5;
    border-color: #999999;
    cursor: default; }

.switch-toggle::before {
  background: white;
  border-radius: 1.6667rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  content: "";
  height: 1.6667rem;
  left: 0.24998rem;
  position: absolute;
  top: 0.24998rem;
  transition: all 100ms ease-out;
  width: 1.6667rem; }
  .switch--checked .switch-toggle::before {
    left: 2.91665rem; }

.switch-label {
  color: white;
  height: 26px;
  line-height: 2.25;
  position: absolute;
  right: 0.5rem;
  text-transform: uppercase;
  transition: all 100ms ease-out; }
  .switch--checked .switch-label {
    font-weight: 600;
    left: 0.5rem;
    right: auto; }
  .switch--disabled .switch-label {
    color: #757575; }

.switch-label--icon.icon {
  height: 2.16667rem;
  width: 2.16667rem; }
  .switch-label--icon.icon svg {
    height: 2.16667rem;
    width: 2.16667rem;
    fill: white; }
    .switch--disabled .switch-label--icon.icon svg {
      fill: #757575; }

.switch-description--off {
  color: #050505;
  margin-right: 5px; }
  .switch--checked .switch-description--off {
    color: #757575; }

.switch-description--on {
  color: #757575;
  margin-left: 5px; }
  .switch--checked .switch-description--on {
    color: #050505; }

.switch-ariaDescription {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*doc
---
title: Form Actions
name: 14forms_actions
category: Forms
parent: forms
---

Forms require actions to submit or cancel (or what ever action a user should perform).
Form actions come in 2 flavours; normal and fixed.

```html_example
<div class="form-actions">
    <a href="#">Cancel</a>
    <button class="button">Reset</button>
    <button class="button button--primary">Submit</button>
</div>
```

### Form Actions --fixed

```html_example
<div class="form-actions form-actions--fixed">
    <a href="#">Cancel</a>
    <button class="button">Reset</button>
    <button class="button button--primary">Submit</button>
</div>
```
*/
.form-actions {
  background: none;
  border: 0;
  text-align: center; }
  @media (min-width: 481px) {
    .form-actions {
      text-align: left; } }

.form-actions > * {
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%; }
  @media (min-width: 481px) {
    .form-actions > * {
      vertical-align: baseline;
      width: auto; } }

@media (min-width: 481px) {
  .form-actions--fixed {
    background: white;
    border-top: 1px solid #999999;
    bottom: 0;
    left: 0;
    padding: 1.5rem 2rem;
    position: fixed;
    right: 0;
    text-align: right;
    z-index: 20; } }

/*doc
---
title: Form Errors
name: 12forms_errors
category: Forms
parent: forms
---

Form inline errors

```html_example
<div class="form-field form-field--success">
    <label class="form-label" for="valid_simple">Valid field</label>
    <input class="form-input" id="valid_simple" type="text" value="Some Valid text">
    <icon class="form-input-indicator icon ng-isolate-scope" glyph="ic-check-circle" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path></svg></icon>
</div>

<div class="form-field form-field--error">
    <label class="form-label" for="invalid_simple">Invalid field</label>
    <input class="form-input" id="invalid_simple" type="text" value="Some Invalid text">
    <icon class="form-input-indicator icon ng-isolate-scope" glyph="ic-error" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path></svg></icon>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_simple">
                This is not a valid email address
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--warning">
    <label class="form-label" for="warning_simple">Warning field</label>
    <input class="form-input" id="warning_simple" type="text" value="Text that generated a Warning">
    <icon class="form-input-indicator icon ng-isolate-scope" glyph="ic-error" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path></svg></icon>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="warning_simple">
                Did you mean…
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label" for="invalid_select">Select label</label>
    <select class="form-select" name="invalid_select" id="invalid_select">
        <option value="Please select a value">Please select a value</option>
        <option value="1">Option 1</option>
        <option value="2">Option 2</option>
    </select>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_select">
                You must select a value
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label">Checkbox label</label>
    <input class="form-checkbox" type="checkbox" id="invalid_check1">
    <label class="form-label" for="invalid_check1">Checkbox 1 label</label>
    <input class="form-checkbox" type="checkbox" id="invalid_check2">
    <label class="form-label" for="invalid_check2">Checkbox 2 label</label>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage">
                Please select one or more
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label">Radio label</label>
    <input class="form-radio" type="radio" name="invalid_radio_example" id="invalid_radio1">
    <label class="form-label" for="invalid_radio1">Radio 1 label</label>
    <input class="form-radio" type="radio" name="invalid_radio_example" id="invalid_radio2">
    <label class="form-label" for="invalid_radio2">Radio 2 label</label>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage">
                Please select an option
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label" for="invalid_prefix">Prefixed Label <small>(Inc. tax)</small></label>
    <div class="form-prefixPostfix">
        <span class="form-prefixPostfix-label form-prefixPostfix-label--prefix" id="prefixDesc1">AUD $</span>
        <input class="form-input form-prefixPostfix-input" id="invalid_prefix" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc1">
        <icon class="form-input-indicator icon ng-isolate-scope" glyph="ic-error" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path></svg></icon>
    </div>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_prefix">
                Please input a dollar amount
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label" for="invalid_postfix">Postfixed Label</label>
    <div class="form-prefixPostfix">
        <input class="form-input form-prefixPostfix-input" id="invalid_postfix" type="text" placeholder="Placeholder text" aria-describedby="prefixDesc2">
        <span class="form-prefixPostfix-label form-prefixPostfix-label--postfix" id="prefixDesc2">KG</span>
    </div>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_postfix">
                Please enter the weight in kilograms
            </label>
        </li>
    </ul>
</div>

<div class="form-field form-field--error">
    <label class="form-label" for="invalid_postfix_button">Postfixed Button</label>
    <div class="form-prefixPostfix">
        <input class="form-input" id="invalid_postfix_button" type="text" placeholder="Placeholder text">
        <input class="button form-prefixPostfix-button--postfix" type="submit" value="Save">
    </div>
    <ul class="form-field-errors">
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_postfix_button">
                This is a really long error message to give alot
                more detail to the user about what is wrong with this field.
            </label>
        </li>
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_postfix_button">
                Something else was wrong
            </label>
        </li>
        <li class="form-field-error">
            <label class="form-inlineMessage" for="invalid_postfix_button">
                You really messed up here
            </label>
        </li>
    </ul>
</div>
```
*/
.form-input-indicator {
  height: 1.83333rem;
  width: 1.83333rem;
  float: left;
  margin: 0 0 0 -2.5rem;
  position: relative;
  top: 0.83333rem; }
  .form-prefixPostfix .form-input-indicator {
    top: 0; }
  .form-input-indicator > svg {
    fill: #008a06; }

.form-field-errors {
  list-style: none;
  margin-left: 0;
  margin-left: 0;
  clear: both;
  margin-bottom: 0;
  margin-top: 0.16667rem; }
  .form-field-errors ul,
  .form-field-errors ol {
    list-style: none;
    margin-bottom: 0; }

.form-inlineMessage {
  display: inline-block;
  line-height: 24px;
  margin: 0.41667rem 0 -0.5rem;
  width: 100%; }

.form-field--success .form-input,
.form-field--error .form-input,
.form-field--warning .form-input {
  float: left; }

.form-field--success .form-input,
.form-field--success .form-select,
.form-field--success .form-checkbox + .form-label::before,
.form-field--success .form-radio + .form-label::before,
.form-field--success .form-prefixPostfix-label {
  border-color: #008a06; }

.form-field--success .form-field-error,
.form-field--success .form-inlineMessage {
  color: #008a06; }

.form-field--success .form-input-indicator > svg {
  fill: #008a06; }

.form-field--error .form-input,
.form-field--error .form-select,
.form-field--error .form-checkbox + .form-label::before,
.form-field--error .form-radio + .form-label::before,
.form-field--error .form-prefixPostfix-label {
  border-color: #cc4749; }

.form-field--error .form-field-error,
.form-field--error .form-inlineMessage {
  color: #cc4749; }

.form-field--error .form-input-indicator > svg {
  fill: #cc4749; }

.form-field--warning .form-input,
.form-field--warning .form-select,
.form-field--warning .form-checkbox + .form-label::before,
.form-field--warning .form-radio + .form-label::before,
.form-field--warning .form-prefixPostfix-label {
  border-color: #f1a500; }

.form-field--warning .form-field-error,
.form-field--warning .form-inlineMessage {
  color: #f1a500; }

.form-field--warning .form-input-indicator > svg {
  fill: #f1a500; }

/*doc
---
title: Panels
name: panel
category: Components
---

Panels are a simple container which is relatively positioned within the document which helps you section
your content. Panels may also have a header, which contains a related title to describe the contents.

```sass_file_example
src/settings/foundation/panels/_settings.scss
```
```html_example
<div class="panel">
    <div class="panel-header">
        <h2 class="panel-title">Panel Title</h2>
    </div>
    <div class="panel-body">
        <h2>Some Panel Content</h2>
        <p>Should be able to handle any type of content.</p>
    </div>
</div>
```
*/
.panel {
  position: relative; }

.panel-header {
  background-color: #e5e5e5;
  margin: 0;
  padding: 1.5rem 2rem 0; }

.panel-title {
  line-height: 1.5;
  margin: 0; }

.panel-body {
  margin-bottom: 1.5rem;
  padding: 1rem 2rem 1.5rem;
  background: #e5e5e5; }
  .panel-body > :first-child {
    margin-top: 0; }
  .panel-body > :last-child {
    margin-bottom: 0; }
  .panel-body > :last-child {
    margin-bottom: 0; }

.breadcrumbs {
  display: block;
  list-style: none;
  margin-left: 0;
  overflow: hidden; }

.breadcrumb {
  color: #373737;
  float: left;
  font-size: 12px;
  line-height: 12px;
  margin: 0;
  line-height: 1.5; }
  .breadcrumb a {
    color: #373737; }
  .breadcrumb.current {
    color: #373737;
    cursor: default; }
    .breadcrumb.current a {
      color: #373737;
      cursor: default; }
    .breadcrumb.current:hover, .breadcrumb.current:hover a, .breadcrumb.current:focus, .breadcrumb.current:focus a {
      text-decoration: none; }
  .breadcrumb.unavailable {
    color: #999999; }
    .breadcrumb.unavailable a {
      color: #999999; }
    .breadcrumb.unavailable:hover,
    .breadcrumb.unavailable:hover a, .breadcrumb.unavailable:focus,
    .breadcrumb.unavailable a:focus {
      color: #999999;
      cursor: not-allowed;
      text-decoration: none; }
  .breadcrumb:before {
    color: #373737;
    content: "/";
    margin: 0;
    position: relative;
    top: 1px; }
  .breadcrumb:first-child:before {
    content: " ";
    margin: 0; }
  .breadcrumb::before {
    margin: 0 0.5rem; }
    @media (min-width: 481px) {
      .breadcrumb::before {
        margin: 0 0.5rem; } }

.breadcrumb-label {
  cursor: pointer; }
  .breadcrumb-label:hover {
    color: dimgray;
    text-decoration: none; }
  .breadcrumb.is-active > .breadcrumb-label {
    color: #373737;
    cursor: default; }
  .breadcrumb.is-unavailable > .breadcrumb-label {
    color: #999999;
    cursor: default; }

.tabs {
  border-bottom: 1px solid #ebebeb;
  margin: 0; }
  .tabs:before, .tabs:after {
    content: " ";
    display: table; }
  .tabs:after {
    clear: both; }

.tab {
  border-bottom: white;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative; }
  @media (min-width: 641px) {
    .tab {
      float: left; } }

.tab-title {
  color: #373737;
  display: block;
  font-size: 13px;
  padding: 0.75rem 1.5rem; }
  .tab-title:hover {
    color: #050505; }

.tab.is-active .tab-title {
  color: #050505;
  font-weight: 700; }

@media (min-width: 641px) {
  .tabs--vertical {
    border-bottom: 0;
    float: left;
    margin: 0 0 1.5rem;
    max-width: 20%;
    width: 20%; } }

.tabs--vertical .tab {
  float: none; }

.tabs-contents {
  margin-bottom: 1.5rem; }
  .tabs-contents:before, .tabs-contents:after {
    content: " ";
    display: table; }
  .tabs-contents:after {
    clear: both; }

@media (min-width: 641px) {
  .tabs-contents--vertical {
    float: left;
    max-width: 80%;
    padding-left: 1.5rem;
    width: 80%; }
    .tabs-contents--vertical > .tab-content {
      padding: 0 1.5rem; } }

.tab-content {
  display: none;
  padding: 1.5rem 0; }
  .tab-content.is-active {
    display: block; }

.no-js .tab-content {
  display: block;
  float: none; }

/*doc
---
title: Navigation
name: nav
category: Components
---

The navigation pattern holds a list of links wrapped in a navigation element. The links can help you navigate
the document, or the information architecture. Each link should modify the URL in some way.

```sass_file_example
src/settings/bigcommerce/nav/_settings.scss
```
We generate our own navigation abstractions through a `nav()` mixin. The mixin works as follows:

```scss_example
nav($style: "navBar", $wrapper: "nav")
```
Where:

 - `$style` - The type of navigation (a bar or list)
 - `$wrapper` - The wrapper of the navigation (usually nav, ul or ol)

There is also a `nav-action()` mixin, which when used will set the styles for any actionable items in your navigation list.

```scss_example
nav-action($color, $fontFamily, $fontSize, $padding)
```

*/
/*doc
---
title: Navigation Bar
name: navBar
parent: nav
category: Components
---

The Navigation Bar is a horizontal navigation component, useful for page navigation or any other primary content navigation.

```html_example
<nav class="navBar navBar--internal">
    <ul class="navBar-section">
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 1</a>
        </li>
        <li class="navBar-item is-active">
            <a class="navBar-action" href="#">Item 2</a>
        </li>
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 3</a>
        </li>
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 4</a>
        </li>
    </ul>
    <ul class="navBar-section navBar-section--alt">
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 5</a>
        </li>
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 6</a>
        </li>
        <li class="navBar-item">
            <a class="navBar-action" href="#">Item 7</a>
        </li>
    </ul>
</nav>
```

You can create a navigation bar abstraction with the following mixin:

```scss_example
.pageNavigation {
    @include nav("navBar", "nav");
    @include nav-action($navBar-action-color, $navBar-action-fontFamily, $navBar-action-fontSize, $navBar-action-padding);
}
```

*/
.navBar:before, .navBar:after {
  content: " ";
  display: table; }

.navBar:after {
  clear: both; }

.navBar ul,
.navBar ol {
  list-style: none;
  margin-left: 0;
  margin: 0;
  padding: 0; }
  .navBar ul ul,
  .navBar ul ol,
  .navBar ol ul,
  .navBar ol ol {
    list-style: none;
    margin-bottom: 0; }
  .navBar ul li,
  .navBar ol li {
    margin: 0;
    padding: 0; }

.navBar-section {
  float: left; }
  .navBar-section:before, .navBar-section:after {
    content: " ";
    display: table; }
  .navBar-section:after {
    clear: both; }

.navBar-section--alt {
  float: right;
  margin-left: 1.5rem; }

.navBar-section + .navBar-section {
  margin-left: 1.5rem; }

@media (min-width: 641px) {
  .navBar-item {
    float: left; } }

.navBar-item, .navBar-action {
  display: block; }

.navBar-action {
  color: #050505;
  font-size: 13px;
  padding: 0.75rem; }

/*doc
---
title: Navigation List
name: navList
parent: nav
category: Components
---

The Navigation List is a vertical navigation component, useful for secondary navigation like a list of child pages.

```html_example
<nav class="navList navList--aside">
    <ul class="navList-section">
        <li class="navList-item">
            <a class="navList-action" href="#">Item 1</a>
        </li>
        <li class="navList-item is-active">
            <a class="navList-action" href="#">Item 2</a>
            <ul class="navList-subSection">
                <li class="navList-item">
                    <a class="navList-action" href="#">Sub-item 1</a>
                </li>
                <li class="navList-item is-active">
                    <a class="navList-action" href="#">Sub-item 2</a>
                </li>
                <li class="navList-item">
                    <a class="navList-action" href="#">Sub-item 3</a>
                </li>
                <li class="navList-item">
                    <a class="navList-action" href="#">Sub-item 4</a>
                </li>
            </ul>
        </li>
        <li class="navList-item">
            <a class="navList-action" href="#">Sub-item 3</a>
        </li>
        <li class="navList-item">
            <a class="navList-action" href="#">Sub-item 4</a>
        </li>
    </ul>
</nav>
```

You can create a navigation list abstraction with the following mixin:

```scss_example
.subPagesList {
    @include nav("navList", "ul");
    @include nav-action($navBar-action-color, $navBar-action-fontFamily, $navBar-action-fontSize, $navBar-action-padding);
}
```

*/
.navList:before, .navList:after {
  content: " ";
  display: table; }

.navList:after {
  clear: both; }

.navList ul,
.navList ol {
  list-style: none;
  margin-left: 0;
  margin: 0;
  padding: 0; }
  .navList ul ul,
  .navList ul ol,
  .navList ol ul,
  .navList ol ol {
    list-style: none;
    margin-bottom: 0; }
  .navList ul li,
  .navList ol li {
    margin: 0;
    padding: 0; }

.navList-section:before, .navList-section:after {
  content: " ";
  display: table; }

.navList-section:after {
  clear: both; }

.navList-section--alt {
  float: right;
  margin-left: 1.5rem; }

.navList-section + .navList-section {
  margin-top: 1.5rem; }

.navList-item, .navList-action {
  display: block; }

.navList-action {
  color: #050505;
  font-size: 13px;
  padding: 0.16667rem 0; }

.pagination-list {
  display: block;
  margin-left: 0; }
  .pagination-list li {
    color: #373737;
    font-size: 1rem;
    margin-left: 0.41667rem; }
    .pagination-list li a, .pagination-list li button {
      border-radius: 4px;
      transition: background-color 300ms ease-out;
      background: none;
      color: #373737;
      display: block;
      font-size: 1em;
      font-weight: normal;
      line-height: inherit;
      padding: 0.33333rem 0.5rem; }
  .pagination-list li {
    display: block; }

li.pagination-item {
  cursor: pointer; }
  li.pagination-item:first-child {
    margin-left: 0; }
  li.pagination-item a:hover {
    color: #050505; }

li.pagination-item--current a, li.pagination-item--current button {
  color: #050505;
  cursor: default; }

/*doc
---
title: Alerts
name: alerts
category: Components
---

Alerts can be used to inform users about the actions they perform, whether it's a successful message, a warning, error, or just information.
They can be displayed at a page level or inside a specific container. They will take the full width of their containers.

```sass_file_example
src/settings/foundation/alerts/_settings.scss
```

The alert box consists of three `alertBox-column`s: The `alertBox-icon` which contains the icon for the type of alert,
the `alertBox-message` which can contain the heading and text for the alert message, and `alertBox-close` which holds the close button.
You can set the vertical alignment of the columns in the setting variables.

```html_example
<div class="alertBox">
    <div class="alertBox-column alertBox-icon">
        <icon class="icon" aria-hidden="true">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
                <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"></path>
            </svg>
        </icon>
    </div>
    <div class="alertBox-column alertBox-message">
        <span>Generic alert</span>
    </div>
    <a class="alertBox-column alertBox-close" tabindex="0" href="#">
        <icon glyph="ic-close" class="icon" aria-hidden="true">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
                <path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path>
            </svg>
        </icon>
    </a>
</div>
```
*/
.alertBox {
  border-style: none;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.16667rem 0.75rem 1.16667rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: white; }
  .alertBox .icon {
    height: 1.66667rem;
    width: 1.66667rem; }
  .alertBox .button {
    margin: 0 0 0 0.75rem; }

.alertBox--info {
  background-color: #f1a500;
  border-color: #f1a500;
  color: #050505; }
  .alertBox--info svg {
    fill: #fffdea; }

.alertBox--success {
  background-color: #d5ffd8;
  border-color: #d5ffd8;
  color: white; }
  .alertBox--success svg {
    fill: #008a06; }

.alertBox--warning {
  background-color: #fffdea;
  border-color: #fffdea;
  color: white; }
  .alertBox--warning svg {
    fill: #f1a500; }

.alertBox--error {
  background-color: #ffdddd;
  border-color: #ffdddd;
  color: white; }
  .alertBox--error svg {
    fill: #cc4749; }

.alertBox-column {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.alertBox-icon {
  padding-right: 1.16667rem; }

.alertBox-message {
  margin: 0;
  text-align: left;
  width: 100%; }

.alertBox-heading {
  margin: 0; }

.alertBox-close {
  cursor: pointer;
  padding-left: 1.16667rem; }
  .alertBox-close .icon {
    height: 1.66667rem;
    width: 1.66667rem; }
  .alertBox-close svg {
    fill: #999999; }

/*doc
---
title: Accordion
name: accordion
category: Components
---
```html_example
<section class="accordion">
    <article heading="Dynamic Group Header - 1" class="is-open">
        <h2 class="accordion-navigation is-open">
            <a href="javascript:void(0)" class="accordion-title">
                Dynamic Group Header - 1
                <icon class="accordion-indicator icon" glyph="ic-remove" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 13H5v-2h14v2z"></path></svg></icon>
            </a>
        </h2>
        <div class="accordion-content is-open">
            Dynamic Group Body - 1
        </div>
    </article>
    <article heading="Dynamic Group Header - 2">
        <h2 class="accordion-navigation">
            <a href="javascript:void(0)" class="accordion-title">
                Dynamic Group Header - 2
                <icon class="accordion-indicator icon" glyph="ic-remove" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 13H5v-2h14v2z"></path></svg></icon>
            </a>
        </h2>
    </article>
<article heading="Dynamic Group Header - 3">
        <h2 class="accordion-navigation accordion-navigation--error">
            <a href="javascript:void(0)" class="accordion-title">
                Dynamic Group Header - 3
                <icon class="accordion-indicator icon" glyph="ic-remove" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 13H5v-2h14v2z"></path></svg></icon>
            </a>
        </h2>
    </article>
</section>
```

```sass_file_example
src/settings/foundation/accordion/_settings.scss
```
*/
.accordion {
  margin-bottom: 0;
  border: #ebebeb solid;
  border-width: 1px;
  box-shadow: 0 1px 2px rgba(5, 5, 5, 0.13);
  margin: 0 0 1.5rem; }
  .accordion:before, .accordion:after {
    content: " ";
    display: table; }
  .accordion:after {
    clear: both; }

.accordion-navigation {
  display: block;
  margin-bottom: 0 !important;
  border: #ebebeb solid;
  border-width: 1px 0;
  cursor: pointer; }
  .accordion-navigation.is-open > a {
    background: white;
    color: #050505; }
  .accordion-navigation > a {
    background: white;
    color: #050505;
    padding: 1.91667rem;
    display: block;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 1rem; }
    .accordion-navigation > a:hover {
      background: #e5e5e5; }
  .accordion-navigation .accordion-title {
    padding: 1.5rem 1.91667rem; }

.accordion-title {
  font-weight: 700;
  line-height: 24px; }

.accordion-content {
  display: none;
  padding: 2rem;
  border: #ebebeb solid;
  border-width: 0 0 1px; }
  .accordion-content.is-open {
    display: block; }

.accordion-navigation--success .accordion-title,
.accordion-navigation--success.is-open > a {
  color: #008a06; }

.accordion-navigation--error .accordion-title,
.accordion-navigation--error.is-open > a {
  color: #cc4749; }

.accordion-navigation--warning .accordion-title,
.accordion-navigation--warning.is-open > a {
  color: #f1a500; }

body.has-activeModal {
  overflow: hidden; }

.modal-background {
  background: #050505;
  background: rgba(55, 55, 55, 0.95);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0; }
  .has-activeModal .modal-background {
    display: block; }

.modal {
  border-radius: 0;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
  background-color: white;
  padding: 2.25rem 2.25rem;
  border: solid 0 #ebebeb;
  box-shadow: none;
  max-height: 80%;
  overflow: auto;
  position: fixed; }
  @media only screen and (max-width: 641px) {
    .modal {
      min-height: 100vh; } }
  .modal .column, .modal .columns {
    min-width: 0; }
  .modal > :first-child {
    margin-top: 0; }
  .modal > :last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 641px) {
    .modal {
      left: 0;
      margin: 0 auto;
      max-width: 80%;
      right: 0;
      width: 900px; } }
  @media only screen and (min-width: 641px) {
    .modal {
      top: 50% !important; } }
  @media (min-width: 641px) {
    .modal {
      transform: translateY(-50%); } }

.modal--large {
  max-height: 90%;
  width: 1280px; }

.modal--small {
  width: 500px; }

.modal-header {
  border-bottom: 1px solid #ebebeb;
  padding: 1rem 0;
  position: relative; }

.modal-header-title {
  margin: 0; }

.modal-body {
  padding: 3rem 0; }
  .modal-body > :last-child {
    margin-bottom: 0; }

.modal-footer {
  border-top: 1px solid #ebebeb;
  padding: 0.75rem 1.5rem;
  text-align: center; }
  @media (min-width: 481px) {
    .modal-footer {
      text-align: right; } }
  .modal-footer .button {
    display: block; }
    @media (min-width: 481px) {
      .modal-footer .button {
        display: inline-block;
        margin-bottom: 0; } }

.modal-footer-link {
  display: inline-block;
  font-size: 13px;
  margin: 0 0 0.75rem; }
  @media (min-width: 481px) {
    .modal-footer-link {
      display: inline;
      margin: 1.5rem; } }

.modal-close {
  color: dimgray;
  cursor: pointer;
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 1.05rem;
  right: 0.75rem;
  transform: translateY(none); }
  .modal-close .icon {
    height: 1.66667rem;
    width: 1.66667rem; }

@media print {
  .modal {
    background: #FFFFFF !important;
    display: none; } }

.loadingNotification {
  left: 50%;
  position: fixed;
  text-align: center;
  top: 3rem;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  transition: all 200ms ease-out;
  z-index: 500; }
  .loadingNotification.ng-hide-remove, .loadingNotification.ng-hide-add-active {
    opacity: 0;
    top: 3.6rem;
    transform: scale(0.9) translateX(-50%); }
  .loadingNotification.ng-hide-remove-active {
    opacity: 1;
    top: 3rem;
    transform: scale(1) translateX(-50%); }

.loadingNotification-label {
  background: dimgray;
  border-radius: 4px;
  color: white;
  display: inline-block;
  font-size: 13px;
  padding: 0.41667rem 0.75rem; }

.loadingOverlay-container {
  min-height: 120px;
  position: relative; }

.loadingOverlay {
  background: rgba(55, 55, 55, 0.9);
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 250ms ease-out;
  width: 100%; }
  .loadingOverlay::before {
    height: 3.33333rem;
    width: 3.33333rem;
    border-radius: 3.33333rem;
    border: solid 2px;
    border-color: white white #999999 #999999;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transform-style: preserve-3d;
    animation: spin 500ms infinite cubic-bezier(0.69, 0.31, 0.56, 0.83); }
  .loadingOverlay.ng-enter, .loadingOverlay.ng-leave.ng-leave-active {
    opacity: 0; }
  .loadingOverlay.ng-leave, .loadingOverlay.ng-enter.ng-enter-active {
    opacity: 1; }

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg); }
  100% {
    transform: translateY(-50%) rotate(360deg); } }

/*doc
---
title: ActionBar
name: action_bar
category: Patterns
---
```html_example
<div class="actionBar">
    <div class="actionBar-section">
        <fieldset class="form-fieldset">
            <div class="actionBar-item form-field">
                <input class="form-input has-action" type="search" placeholder="Search">
                <button class="button button--icon button--inputAction">
                    <span class="is-srOnly">Search</span>
                    <icon glyph="ic-search"></icon>
                </button>
            </div>
            <a href="#" class="actionBar-item">Advanced</a>
        </fieldset>
    </div>
    <div class="actionBar-section actionBar-section--alt">
        <fieldset class="form-fieldset">
            <div class="actionBar-item form-field">
                <div class="buttonGroup">
                    <button class="button">
                        All
                    </button>
                    <button class="button">
                        Free
                    </button>
                    <button class="button">
                        Paid
                    </button>
                </div>
            </div>
            <div class="actionBar-item form-field">
                <label class="form-label" for="select1">Sort by</label>
                <select class="form-select" name="select1" id="select1">
                    <option value="1">Popular</option>
                    <option value="2">Newest</option>
                </select>
            </div>
        </fieldset>
    </div>
</div>
```

```sass_file_example
src/settings/bigcommerce/actionBar/_settings.scss
```
*/
.actionBar {
  margin: 1.5rem 0; }
  .actionBar:before, .actionBar:after {
    content: " ";
    display: table; }
  .actionBar:after {
    clear: both; }
  .actionBar .button {
    margin-bottom: 0; }
  .actionBar .buttonGroup {
    vertical-align: middle; }

.actionBar-link {
  display: block;
  padding: 0.75rem 0; }

.actionBar-section:before, .actionBar-section:after {
  content: " ";
  display: table; }

.actionBar-section:after {
  clear: both; }

@media (min-width: 641px) {
  .actionBar-section {
    float: left; }
    .actionBar-section .form-label {
      display: inline-block;
      margin: 0 0.41667rem 0 0; }
    .actionBar-section .form-select,
    .actionBar-section .form-input {
      display: inline-block;
      width: 16.66667rem; } }

@media (min-width: 641px) {
  .actionBar-section--alt {
    float: right; } }

.actionBar-item {
  margin-bottom: 1.5rem; }
  @media (min-width: 641px) {
    .actionBar-item {
      display: inline-block;
      margin-bottom: 0;
      margin-right: 1.5rem;
      vertical-align: middle; }
      .actionBar-item:last-child {
        margin-right: 0; } }

/*doc
---
title: Cards
name: cards
category: Components
---

Cards are a typical component consisting of a figure and a short snippet of descriptive text.
This could include a heading and a caption or definition, and perhaps a call to action
or other actionable functions.

```sass_file_example
src/settings/bigcommerce/cards/_settings.scss
```
```html_example
<article class="card">
    <figure class="card-figure">
        <img class="card-image" src="http://lorempixel.com/960/360/sports/" alt="Example card image">
        <figcaption class="card-figcaption">
            <a class="card-figcaption-action" href="#">
                <div class="card-figcaption-body">
                    <span class="button card-figcaption-button">Learn more</span>
                </div>
            </a>
        </figcaption>
    </figure>
    <div class="card-body">
        <h2 class="card-title">20% Off First Design Project</h2>
        <h3 class="card-subTitle">Custom Designs</h3>
        <p class="card-text">
            Be seen by customers at the very moment that
            they are searching on Google for the things you offer.
        </p>
    </div>
</article>
```
*/
.card {
  background-color: transparent;
  margin-bottom: 3rem;
  padding: 0 0; }

.card-figure {
  background-color: white;
  margin-bottom: 0;
  padding: 0 0;
  position: relative; }

.card-image {
  border: 1px solid #999999;
  width: 100%; }

.card-figcaption {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0; }
  .card-figcaption:hover {
    opacity: 1; }

.card-figcaption-action {
  display: block;
  height: 100%; }

.card-figcaption-body {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transform-style: preserve-3d; }
  .card-figcaption-body > :first-child {
    margin-top: 0; }
  .card-figcaption-body > :last-child {
    margin-bottom: 0; }
  .card-figcaption-body .card-text {
    color: #373737; }

.card-figcaption-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #050505; }
  .card-figcaption-button:hover {
    background-color: white;
    color: #050505; }

.card-body {
  padding: 0.75rem 0 0; }
  .card-body > :first-child {
    margin-top: 0; }
  .card-body > :last-child {
    margin-bottom: 0; }
  .card-body .card-text {
    color: #373737; }

.card-surTitle {
  float: right;
  margin-left: 1.5rem;
  max-width: 40%;
  text-align: right; }

.card-footer {
  background-color: transparent;
  margin: 0; }
  .card-footer:before, .card-footer:after {
    content: " ";
    display: table; }
  .card-footer:after {
    clear: both; }

.card-button {
  margin-bottom: 0; }

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 0.8; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.6; }
  .slick-prev:before,
  .slick-next:before {
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: ""; }
    [dir="rtl"] .slick-prev:before {
      content: ""; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: ""; }
    [dir="rtl"] .slick-next:before {
      content: ""; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 0.8; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 20px;
        height: 20px;
        font-family: inherit;
        font-size: 60px;
        line-height: 20px;
        text-align: center;
        color: #ebebeb;
        opacity: 0.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #373737;
      opacity: 1; }

.slick-next,
.slick-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  border: 1px solid transparent;
  height: 5.08333rem;
  margin-top: -2.5rem;
  padding: 0.83333rem;
  width: 3.33333rem; }
  .slick-next::before,
  .slick-prev::before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    height: 3.41667rem;
    width: 1.66667rem; }
  .slick-next:hover, .slick-next:focus,
  .slick-prev:hover,
  .slick-prev:focus {
    background-color: white;
    background-color: rgba(255, 255, 255, 0.2);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%; }

.slick-next {
  right: -10px; }
  @media (min-width: 1261px) {
    .slick-next {
      right: -3.41667rem; } }
  .slick-next::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M1.45679 1.00746147l21 20.02482143L1.50885 41.0074615' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }
  .slick-next:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjOTg5ODk4IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }

.slick-prev {
  left: -15px; }
  @media (min-width: 1261px) {
    .slick-prev {
      left: -3.41667rem; } }
  .slick-prev::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M22.4572074 1.00746147l-21 20.02482143 20.9479397 19.9751786' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }
  .slick-prev:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzk4OTg5OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg=="); }

.slick-dots {
  margin: 0; }
  .slick-dots li {
    height: 2.66667rem;
    width: 2.66667rem;
    margin: 0;
    padding: 0.41667rem; }
    .slick-dots li button,
    .slick-dots li button::before {
      height: 1.25rem;
      width: 1.25rem;
      border-radius: 50%; }
    .slick-dots li button {
      border: 1px solid #ebebeb;
      display: inline-block;
      margin: 0;
      padding: 0;
      position: relative;
      text-align: center;
      vertical-align: middle; }
      .slick-dots li button:hover::before {
        background: #ebebeb; }
    .slick-dots li button::before {
      display: block;
      left: -1px;
      top: -1px;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button::before {
      background: #373737; }

.productView .slick-dots {
  position: relative; }

.slick-disabled {
  cursor: default;
  opacity: 0.1; }

.slick-track {
  backface-visibility: hidden;
  perspective: 1000px; }

.pace {
  pointer-events: none;
  user-select: none; }

.pace-inactive {
  display: none; }

.pace-progress {
  background-color: #999999;
  height: 0.41667rem;
  position: fixed;
  right: 100%;
  top: 0;
  width: 100%;
  z-index: 2000; }

body.swal2-shown {
  overflow-y: hidden; }

body.swal2-iosfix {
  position: fixed;
  left: 0;
  right: 0; }

.swal2-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: transparent;
  z-index: 1060; }
  .swal2-container.swal2-top {
    align-items: flex-start; }
  .swal2-container.swal2-top-left {
    align-items: flex-start;
    justify-content: flex-start; }
  .swal2-container.swal2-top-right {
    align-items: flex-start;
    justify-content: flex-end; }
  .swal2-container.swal2-center {
    align-items: center; }
  .swal2-container.swal2-center-left {
    align-items: center;
    justify-content: flex-start; }
  .swal2-container.swal2-center-right {
    align-items: center;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom {
    align-items: flex-end; }
  .swal2-container.swal2-bottom-left {
    align-items: flex-end;
    justify-content: flex-start; }
  .swal2-container.swal2-bottom-right {
    align-items: flex-end;
    justify-content: flex-end; }
  .swal2-container.swal2-grow-fullscreen > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-self: stretch;
    justify-content: center; }
  .swal2-container.swal2-grow-row > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-content: center;
    justify-content: center; }
  .swal2-container.swal2-grow-column {
    flex: 1;
    flex-direction: column; }
    .swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
      align-items: center; }
    .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
      align-items: flex-start; }
    .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
      align-items: flex-end; }
    .swal2-container.swal2-grow-column > .swal2-modal {
      display: flex !important;
      flex: 1;
      align-content: center;
      justify-content: center; }
  .swal2-container:not(.swal2-top):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-left):not(.swal2-bottom-right) > .swal2-modal {
    margin: auto; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
      margin: 0 !important; } }
  .swal2-container.swal2-fade {
    transition: background-color .1s; }
  .swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0.4); }

.swal2-modal {
  flex-direction: column;
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  position: relative;
  max-width: 100%; }
  .swal2-modal:focus {
    outline: none; }
  .swal2-modal.swal2-loading {
    overflow-y: hidden; }
  .swal2-modal .swal2-title {
    color: #595959;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 0 0 .4em;
    padding: 0;
    display: block;
    word-wrap: break-word; }
  .swal2-modal .swal2-buttonswrapper {
    margin-top: 15px; }
    .swal2-modal .swal2-buttonswrapper:not(.swal2-loading) .swal2-styled[disabled] {
      opacity: .4;
      cursor: no-drop; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-confirm {
      box-sizing: border-box;
      border: 4px solid transparent;
      border-color: transparent;
      width: 40px;
      height: 40px;
      padding: 0;
      margin: 7.5px;
      vertical-align: top;
      background-color: transparent !important;
      color: transparent;
      cursor: default;
      border-radius: 100%;
      animation: rotate-loading 1.5s linear 0s infinite normal;
      user-select: none; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-cancel {
      margin-left: 30px;
      margin-right: 30px; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading :not(.swal2-styled).swal2-confirm::after {
      display: inline-block;
      content: '';
      margin-left: 5px;
      vertical-align: -1px;
      height: 15px;
      width: 15px;
      border: 3px solid #999999;
      box-shadow: 1px 1px 1px #fff;
      border-right-color: transparent;
      border-radius: 50%;
      animation: rotate-loading 1.5s linear 0s infinite normal; }
  .swal2-modal .swal2-styled {
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    padding: 10px 32px; }
    .swal2-modal .swal2-styled:focus {
      outline: none;
      box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4); }
  .swal2-modal .swal2-image {
    margin: 20px auto;
    max-width: 100%; }
  .swal2-modal .swal2-close {
    background: rgba(0, 0, 0, 0);
    border: 0;
    margin: 0;
    padding: 0;
    width: 38px;
    height: 40px;
    font-size: 36px;
    line-height: 40px;
    font-family: serif;
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    color: #cccccc;
    transition: color .1s ease; }
    .swal2-modal .swal2-close:hover {
      color: #d55; }
  .swal2-modal > .swal2-input,
  .swal2-modal > .swal2-file,
  .swal2-modal > .swal2-textarea,
  .swal2-modal > .swal2-select,
  .swal2-modal > .swal2-radio,
  .swal2-modal > .swal2-checkbox {
    display: none; }
  .swal2-modal .swal2-content {
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    position: relative;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    color: #545454;
    word-wrap: break-word; }
  .swal2-modal .swal2-input,
  .swal2-modal .swal2-file,
  .swal2-modal .swal2-textarea,
  .swal2-modal .swal2-select,
  .swal2-modal .swal2-radio,
  .swal2-modal .swal2-checkbox {
    margin: 20px auto; }
  .swal2-modal .swal2-input,
  .swal2-modal .swal2-file,
  .swal2-modal .swal2-textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
    transition: border-color .3s, box-shadow .3s; }
    .swal2-modal .swal2-input.swal2-inputerror,
    .swal2-modal .swal2-file.swal2-inputerror,
    .swal2-modal .swal2-textarea.swal2-inputerror {
      border-color: #f27474 !important;
      box-shadow: 0 0 2px #f27474 !important; }
    .swal2-modal .swal2-input:focus,
    .swal2-modal .swal2-file:focus,
    .swal2-modal .swal2-textarea:focus {
      outline: none;
      border: 1px solid #b4dbed;
      box-shadow: 0 0 3px #c4e6f5; }
    .swal2-modal .swal2-input::placeholder,
    .swal2-modal .swal2-file::placeholder,
    .swal2-modal .swal2-textarea::placeholder {
      color: #cccccc; }
  .swal2-modal .swal2-range input {
    float: left;
    width: 80%; }
  .swal2-modal .swal2-range output {
    float: right;
    width: 20%;
    font-size: 20px;
    font-weight: 600;
    text-align: center; }
  .swal2-modal .swal2-range input,
  .swal2-modal .swal2-range output {
    height: 43px;
    line-height: 43px;
    vertical-align: middle;
    margin: 20px auto;
    padding: 0; }
  .swal2-modal .swal2-input {
    height: 43px;
    padding: 0 12px; }
    .swal2-modal .swal2-input[type='number'] {
      max-width: 150px; }
  .swal2-modal .swal2-file {
    font-size: 20px; }
  .swal2-modal .swal2-textarea {
    height: 108px;
    padding: 12px; }
  .swal2-modal .swal2-select {
    color: #545454;
    font-size: inherit;
    padding: 5px 10px;
    min-width: 40%;
    max-width: 100%; }
  .swal2-modal .swal2-radio {
    border: 0; }
    .swal2-modal .swal2-radio label:not(:first-child) {
      margin-left: 20px; }
    .swal2-modal .swal2-radio input,
    .swal2-modal .swal2-radio span {
      vertical-align: middle; }
    .swal2-modal .swal2-radio input {
      margin: 0 3px 0 0; }
  .swal2-modal .swal2-checkbox {
    color: #545454; }
    .swal2-modal .swal2-checkbox input,
    .swal2-modal .swal2-checkbox span {
      vertical-align: middle; }
  .swal2-modal .swal2-validationerror {
    background-color: #f0f0f0;
    margin: 0 -20px;
    overflow: hidden;
    padding: 10px;
    color: gray;
    font-size: 16px;
    font-weight: 300;
    display: none; }
    .swal2-modal .swal2-validationerror::before {
      content: '!';
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: #fff;
      line-height: 24px;
      text-align: center;
      margin-right: 10px; }

@supports (-ms-accelerator: true) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

.swal2-icon {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-radius: 50%;
  margin: 20px auto 30px;
  padding: 0;
  position: relative;
  box-sizing: content-box;
  cursor: default;
  user-select: none; }
  .swal2-icon.swal2-error {
    border-color: #f27474; }
    .swal2-icon.swal2-error .swal2-x-mark {
      position: relative;
      display: block; }
    .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
      position: absolute;
      height: 5px;
      width: 47px;
      background-color: #f27474;
      display: block;
      top: 37px;
      border-radius: 2px; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        transform: rotate(45deg);
        left: 17px; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        transform: rotate(-45deg);
        right: 16px; }
  .swal2-icon.swal2-warning {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f8bb86;
    border-color: #facea8;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-info {
    font-family: 'Open Sans', sans-serif;
    color: #3fc3ee;
    border-color: #9de0f6;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-question {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #87adbd;
    border-color: #c9dae1;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-success {
    border-color: #a5dc86; }
    .swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
      border-radius: 50%;
      position: absolute;
      width: 60px;
      height: 120px;
      transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        transform: rotate(-45deg);
        transform-origin: 60px 60px; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        transform: rotate(-45deg);
        transform-origin: 0 60px; }
    .swal2-icon.swal2-success .swal2-success-ring {
      width: 80px;
      height: 80px;
      border: 4px solid rgba(165, 220, 134, 0.2);
      border-radius: 50%;
      box-sizing: content-box;
      position: absolute;
      left: -4px;
      top: -4px;
      z-index: 2; }
    .swal2-icon.swal2-success .swal2-success-fix {
      width: 7px;
      height: 90px;
      position: absolute;
      left: 28px;
      top: 8px;
      z-index: 1;
      transform: rotate(-45deg); }
    .swal2-icon.swal2-success [class^='swal2-success-line'] {
      height: 5px;
      background-color: #a5dc86;
      display: block;
      border-radius: 2px;
      position: absolute;
      z-index: 2; }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
        width: 25px;
        left: 14px;
        top: 46px;
        transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
        width: 47px;
        right: 8px;
        top: 38px;
        transform: rotate(-45deg); }

.swal2-progresssteps {
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0; }
  .swal2-progresssteps li {
    display: inline-block;
    position: relative; }
  .swal2-progresssteps .swal2-progresscircle {
    background: #3085d6;
    border-radius: 2em;
    color: #fff;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
    z-index: 20; }
    .swal2-progresssteps .swal2-progresscircle:first-child {
      margin-left: 0; }
    .swal2-progresssteps .swal2-progresscircle:last-child {
      margin-right: 0; }
    .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
      background: #3085d6; }
      .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
        background: #add8e6; }
      .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
        background: #add8e6; }
  .swal2-progresssteps .swal2-progressline {
    background: #3085d6;
    height: .4em;
    margin: 0 -1px;
    z-index: 10; }

[class^='swal2'] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7); }
  45% {
    transform: scale(1.05); }
  80% {
    transform: scale(0.95); }
  100% {
    transform: scale(1); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.5);
    opacity: 0; } }

.swal2-show {
  animation: showSweetAlert .3s; }
  .swal2-show.swal2-noanimation {
    animation: none; }

.swal2-hide {
  animation: hideSweetAlert .15s forwards; }
  .swal2-hide.swal2-noanimation {
    animation: none; }

@keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg); } }

.swal2-animate-success-line-tip {
  animation: animate-success-tip .75s; }

.swal2-animate-success-line-long {
  animation: animate-success-long .75s; }

.swal2-success.swal2-animate-success-icon .swal2-success-circular-line-right {
  animation: rotatePlaceholder 4.25s ease-in; }

@keyframes animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    opacity: 1; } }

.swal2-animate-error-icon {
  animation: animate-error-icon .5s; }

@keyframes animate-x-mark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.swal2-animate-x-mark {
  animation: animate-x-mark .5s; }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.swal2-modal {
  background-color: white !important;
  border-radius: 4px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif; }
  .swal2-modal .swal2-title {
    color: #050505;
    font-size: 2.5rem; }
  .swal2-modal .swal2-content {
    color: #050505;
    font-size: 1.16667rem; }
  .swal2-modal .swal2-file,
  .swal2-modal .swal2-input,
  .swal2-modal .swal2-textarea {
    border: 1px solid #ebebeb;
    color: #050505; }
  .swal2-modal .swal2-checkbox,
  .swal2-modal .swal2-select {
    color: #050505; }
  .swal2-modal .swal2-buttonswrapper {
    margin: 25px 0 0; }
  .swal2-modal .swal2-styled {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    border-color: #050505;
    color: #050505;
    font-size: 1rem;
    padding: 0.91667rem 2.25rem;
    border-radius: 4px;
    line-height: 1rem;
    outline: none;
    transition: all 0.15s ease;
    vertical-align: middle; }
    .swal2-modal .swal2-styled:hover, .swal2-modal .swal2-styled:focus, .swal2-modal .swal2-styled.is-active, .swal2-modal .swal2-styled.active {
      background-color: transparent;
      border-color: #373737;
      color: #373737; }
    .swal2-modal .swal2-styled:active {
      background-color: transparent;
      border: 1px solid #050505;
      color: #050505; }
  .swal2-modal .swal2-styled:focus {
    outline: none; }
  .swal2-modal .swal2-confirm {
    background-color: #232b2e;
    border-color: #232b2e;
    color: white; }
  .swal2-modal .swal2-confirm:focus,
  .swal2-modal .swal2-confirm:hover {
    background-color: #232b2e;
    border-color: #232b2e;
    color: white; }
  .swal2-modal .swal2-confirm:active {
    background-color: #232b2e;
    border-color: #232b2e;
    color: white; }
  .swal2-modal .swal2-cancel {
    background-color: transparent;
    border-color: #050505;
    color: #050505; }
  .swal2-modal .swal2-cancel:focus,
  .swal2-modal .swal2-cancel:hover {
    background-color: transparent;
    border-color: #373737;
    color: #373737; }
  .swal2-modal .swal2-cancel:active {
    background-color: transparent;
    border-color: #050505;
    color: #050505; }
  .swal2-modal .button + .button {
    margin-left: 0.75rem; }

html,
body {
  height: auto; }

body {
  padding-top: 55px; }
  @media (min-width: 801px) {
    body {
      padding-top: 0; } }

figure {
  margin-bottom: 2rem;
  margin-top: 2rem; }
  figure > figcaption {
    margin-bottom: -0.5rem; }

figcaption {
  color: #999999;
  margin-top: 0.75rem; }

body {
  font-size: 1rem;
  font-weight: 400; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-top: 2.25rem; }

h5,
h6 {
  text-transform: uppercase; }

a {
  transition: color 0.15s ease; }

cite {
  line-height: 1.5;
  margin: 0.5rem 0 0; }

.page-heading {
  margin: 0 0 3rem;
  text-align: center; }

h1 {
  font-size: 28px; }

h2 {
  font-size: 22px; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 16px; }

h5 {
  font-size: 13px; }

h6 {
  font-size: 12px; }

.definitionList:before, .definitionList:after {
  content: " ";
  display: table; }

.definitionList:after {
  clear: both; }

.definitionList-key {
  color: #373737;
  float: left;
  font-weight: 400;
  margin: 0 0.41667rem 0 0; }

.definitionList-value {
  margin: 0; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(5, 5, 5, 0.999)' /%3E%3C/svg%3E");
  background-position: right 0.58333rem top 0.66667rem;
  border-radius: 4px;
  padding: 0.75rem 3rem 0.75rem 1rem; }

.form-label small {
  float: right;
  margin-top: 0.41667rem; }

.form-label--inlineSmall small {
  color: #373737;
  float: none;
  font-size: inherit;
  font-weight: 400;
  margin-left: 0.41667rem;
  text-transform: none; }

.table {
  margin-top: 2rem; }
  .table td + td {
    border-left: 1px solid #ebebeb; }
  .table .table-alignCenter {
    text-align: center; }
  .table .table-alignRight {
    text-align: right; }

.table-actions {
  margin: 1.5rem;
  text-align: center; }
  .table-actions .form {
    margin-bottom: 0; }
  .table-actions .button {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%; }
    @media (min-width: 641px) {
      .table-actions .button {
        display: inline-block;
        margin-bottom: 0;
        width: auto; } }
    @media (min-width: 641px) {
      .table-actions .button + .button {
        margin-left: 0.41667rem; } }

.table--line {
  border-color: #ebebeb;
  border-width: 0 0 1px; }
  .table--line .table-thead {
    background-color: white;
    border-color: #ebebeb;
    border-width: 0 0 1px; }
    .table--line .table-thead tr th {
      padding-left: 0;
      padding-right: 0; }
      @media (min-width: 641px) {
        .table--line .table-thead tr th {
          text-align: center; }
          .table--line .table-thead tr th:first-child {
            text-align: left; }
          .table--line .table-thead tr th:last-child {
            text-align: right; } }
      .table--line .table-thead tr th + th {
        padding-left: 1.5rem; }
  .table--line tr {
    border-color: 1px solid #ebebeb; }
    .table--line tr td {
      display: block;
      padding-left: 0;
      padding-right: 0; }
      @media (min-width: 641px) {
        .table--line tr td {
          text-align: center; }
          .table--line tr td:first-child {
            text-align: left; }
          .table--line tr td:last-child {
            text-align: right; } }
      .table--line tr td + td {
        padding-left: 1.5rem; }
  .table--line td + td {
    border-left: 0; }

.dropdown {
  left: -9999px;
  outline: none;
  position: absolute; }

.dropdown-menu.is-loading .loadingOverlay {
  background: none;
  padding: 4.5rem 0;
  position: relative; }

.dropdown-menu.is-open {
  display: block; }

.dropdown-menu-item {
  text-align: left; }
  .dropdown-menu-item:first-child > a {
    padding-top: 0.75rem; }
  .dropdown-menu-item:last-child > a {
    padding-bottom: 1rem; }
  .dropdown-menu-item > a {
    margin: 0;
    padding: 0.25rem 1.16667rem;
    text-decoration: none; }

.form-wishlist {
  position: relative; }

.dropdown-menu-button {
  width: 100%; }
  .dropdown-menu-button.is-open {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }
  .dropdown-menu-button .icon {
    float: right;
    margin-left: 10px; }

#wishlist-dropdown.is-open {
  background: transparent;
  left: auto !important;
  max-width: none !important;
  width: 100% !important; }
  @media (min-width: 641px) {
    #wishlist-dropdown.is-open {
      padding-right: 20px; } }
  @media (min-width: 801px) {
    #wishlist-dropdown.is-open {
      padding-right: 0px; } }
  @media (min-width: 1261px) {
    #wishlist-dropdown.is-open {
      padding-right: 11px; } }
  #wishlist-dropdown.is-open:focus {
    outline: none; }
  #wishlist-dropdown.is-open [data-wishlist] {
    border-top: none;
    margin-bottom: 0px;
    width: 100%; }
  #wishlist-dropdown.is-open .button {
    background-color: white;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    width: 100%; }
  #wishlist-dropdown.is-open .button--has-items {
    font-weight: 700; }
  #wishlist-dropdown.is-open li:not(:last-child) .button {
    border-bottom: none;
    border-radius: 0px;
    border-top: none;
    margin-bottom: 0px; }

.modal {
  left: 50%;
  margin: 0 auto;
  max-height: 90%;
  max-width: 95%;
  min-height: 240px;
  outline: none;
  overflow: hidden;
  padding: 0;
  right: 0;
  top: 50% !important;
  transform: translate(-50%, -50%); }

@media (min-width: 1261px) {
  .modal--large {
    width: 1280px; } }

.modal-header {
  padding-left: 2.25rem;
  padding-right: 3.41667rem; }

.modal-header-title {
  font-size: 18px;
  text-align: center; }
  @media (min-width: 801px) {
    .modal-header-title {
      font-size: 22px; } }

.modal-close {
  height: 2.66667rem;
  width: 2.66667rem;
  color: #373737;
  font-size: 26px;
  line-height: 2.66667rem;
  padding: 0;
  position: absolute;
  text-align: center;
  text-decoration: none;
  z-index: 50; }
  @media (min-width: 801px) {
    .modal-close {
      font-size: 32px; } }
  .modal-close:hover {
    color: #050505; }

.modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.25rem 2.25rem; }

.breadcrumbs {
  display: none;
  font-size: 0;
  text-align: center; }
  @media (min-width: 641px) {
    .breadcrumbs {
      display: block; } }

.breadcrumb {
  display: inline-block;
  float: none; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text; }

.breadcrumb-label {
  text-decoration: none; }

.panel-title {
  font-size: 16px; }

.panel--large .panel-body {
  margin-bottom: 2rem;
  padding: 2rem; }

.pagination-list {
  font-size: 0;
  margin-bottom: 1.5rem;
  text-align: center; }
  .pagination-list:before, .pagination-list:after {
    content: " ";
    display: table; }
  .pagination-list:after {
    clear: both; }
  .pagination-list .pagination-item {
    display: inline-block; }

.pagination-item {
  border: 1px solid transparent;
  line-height: 1; }
  .pagination-item .pagination-link {
    text-decoration: none;
    transition: all 0.2s ease; }
    .pagination-item .pagination-link:hover {
      color: dimgray; }
  .pagination-item.pagination-item--current {
    border-color: #ebebeb;
    border-radius: 4px;
    margin: 0 0.41667rem 0 0.75rem; }
  .pagination-item.pagination-item--previous > a, .pagination-item.pagination-item--next > a {
    color: #050505; }
    .pagination-item.pagination-item--previous > a:hover, .pagination-item.pagination-item--next > a:hover {
      color: #373737; }
      .pagination-item.pagination-item--previous > a:hover .icon > svg, .pagination-item.pagination-item--next > a:hover .icon > svg {
        fill: #373737; }

.pagination-item--previous .icon,
.pagination-item--next .icon {
  height: 1.66667rem;
  margin-top: -0.16667rem;
  width: 1.66667rem; }

.pagination-item--previous .icon {
  margin-left: -1rem; }

.pagination-item--next .icon {
  margin-right: -1rem; }

.pagination-list--small {
  position: relative; }
  .pagination-list--small .pagination-item {
    color: #373737;
    cursor: inherit;
    line-height: 1.5; }
  .pagination-list--small .pagination-link {
    padding: 0 0.41667rem; }
  .pagination-list--small .pagination-item--previous,
  .pagination-list--small .pagination-item--next {
    position: absolute;
    top: 0; }
  .pagination-list--small .pagination-item--previous {
    left: 0; }
  .pagination-list--small .pagination-item--next {
    right: 0; }

.button {
  line-height: 1rem;
  transition: all 0.15s ease; }
  .button + .button {
    margin-left: 0; }
    @media (min-width: 801px) {
      .button + .button {
        margin-left: 0.75rem; } }

.button[disabled] {
  cursor: not-allowed; }

.button--icon svg {
  fill: #050505; }

.tab {
  border-top: 1px solid #ebebeb;
  float: none; }
  @media (min-width: 801px) {
    .tab {
      border-top-color: white;
      float: left; } }
  .tab.is-active {
    border-left-color: white;
    border-right-color: white; }
    @media (min-width: 641px) {
      .tab.is-active {
        margin-bottom: -1px; } }
    @media (min-width: 801px) {
      .tab.is-active {
        border: 1px solid #ebebeb;
        border-bottom: 1px solid white; } }

.tab-title {
  padding: 1.16667rem 0;
  text-align: center;
  text-decoration: none; }
  @media (min-width: 641px) {
    .tab-title {
      text-align: left; } }
  @media (min-width: 801px) {
    .tab-title {
      padding: 0.75rem 1.5rem; } }

.tab-content.has-jsContent {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  visibility: hidden; }
  .tab-content.has-jsContent.is-active {
    height: auto;
    overflow: visible;
    padding: 1.5rem 0;
    visibility: visible; }

.accordion {
  border-radius: 4px;
  box-shadow: none; }
  .accordion .navList {
    margin-bottom: 0; }

.accordion-content {
  border: 0; }
  .accordion-content .form:only-child {
    margin-bottom: 0; }

.accordion-title {
  margin: 0; }

.accordion-navigation {
  margin-top: -1px;
  position: relative;
  text-decoration: none; }

@media (min-width: 801px) {
  .accordion--navList {
    border: 0; } }

@media (min-width: 801px) {
  .sidebarBlock + .accordion--navList {
    margin-top: 2rem; } }

@media (min-width: 801px) {
  .accordion--navList .accordion-block {
    margin-top: 2rem; } }

.accordion--navList .accordion-content {
  padding: 1rem; }
  @media (min-width: 801px) {
    .accordion--navList .accordion-content {
      padding: 0; } }

@media (min-width: 801px) {
  .accordion--navList .accordion-navigation {
    background-position: right 0 top 50%;
    border: 0; } }

.accordion--navList .accordion-title {
  font-weight: normal;
  padding: 1rem;
  text-decoration: none;
  text-transform: inherit; }
  @media (min-width: 801px) {
    .accordion--navList .accordion-title {
      margin-bottom: 0.75rem;
      margin-top: 0;
      padding: 0; } }

.accordion--navList .accordion-indicator {
  fill: #999999; }

.accordion--navList .accordion-navigation-actions {
  right: 1rem;
  top: 1.16667rem; }
  @media (min-width: 801px) {
    .accordion--navList .accordion-navigation-actions {
      right: 0;
      top: 0; } }

.accordion-block:first-child {
  margin-top: 0; }
  .accordion-block:first-child .accordion-navigation {
    border-radius: 4px 4px 0 0; }

.accordion-block:last-child .accordion-navigation,
.accordion-block:last-child .accordion-content {
  border-radius: 0 0 4px 4px; }

.accordion-block:last-child .accordion-navigation {
  border-bottom-width: 0; }
  .accordion-block:last-child .accordion-navigation.is-open {
    border-bottom-width: 1px;
    border-radius: 0; }

.accordion-navigation-actions {
  position: absolute;
  right: 1.91667rem;
  top: 1.5rem; }
  .accordion-navigation-actions > a {
    color: #373737;
    vertical-align: middle; }
    .accordion-navigation-actions > a:hover {
      color: dimgray; }

.inlineList--labels {
  margin-bottom: 0;
  margin-left: -0.75rem; }
  .inlineList--labels > li {
    margin-bottom: 0.75rem;
    margin-left: 0.75rem; }

.alertBox {
  border-radius: 4px;
  background: #fffdea;
  color: #f1a500; }
  .alertBox svg {
    fill: #f1a500; }

.alertBox-icon .icon {
  height: 2.08333rem;
  width: 2.08333rem; }

.alertBox--error {
  background: #ffdddd;
  color: #cc4749; }
  .alertBox--error svg {
    fill: #cc4749; }

.alertBox--success {
  background: #d5ffd8;
  color: #008a06; }
  .alertBox--success svg {
    fill: #008a06; }

.alertBox--warning {
  background: #fffdea;
  color: #f1a500; }
  .alertBox--warning svg {
    fill: #f1a500; }

.alertBox--info {
  background: #fffdea;
  color: #f1a500; }
  .alertBox--info svg {
    fill: #f1a500; }

.lazyload, .lazyloading {
  height: 100%; }

.form--hiddenLabels .form-label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.form-inlineMessage {
  display: block; }

.form-field--error .form-input {
  float: none; }

.form-field--error .form-inlineMessage:before {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z' fill='rgba(204, 71, 73, 0.999)' /%3E%3C/svg%3E") no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 1.16667rem;
  left: -0.16667rem;
  margin-right: 0.08333rem;
  position: relative;
  top: 0.25rem;
  width: 1.16667rem; }

.form-field--success .form-input[type="text"] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(0, 138, 6, 0.999)' /%3E%3C/svg%3E");
  background-position: right 0.66667rem center;
  background-repeat: no-repeat;
  padding-right: 3rem; }

.form-checkbox + .form-label:last-child,
.form-radio + .form-label:last-child {
  display: block;
  margin-bottom: -0.33333rem; }

.form-checkbox + .form-label::after,
.form-radio + .form-label::after {
  top: 0.33333rem; }

.form-checkbox + .form-label::before,
.form-radio + .form-label::before {
  top: 0.25rem; }

.form-actions {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  display: block;
  text-align: center; }
  .form-actions:before, .form-actions:after {
    content: " ";
    display: table; }
  .form-actions:after {
    clear: both; }
  @media (min-width: 641px) {
    .form-actions {
      margin-top: 1.5rem; } }
  .form-actions .button,
  .form-actions input,
  .form-actions a {
    vertical-align: top;
    width: 100%; }
    @media (min-width: 641px) {
      .form-actions .button,
      .form-actions input,
      .form-actions a {
        margin-bottom: 0;
        width: auto; } }
    .form-actions .button + .button,
    .form-actions .button + input,
    .form-actions .button + a,
    .form-actions input + .button,
    .form-actions input + input,
    .form-actions input + a,
    .form-actions a + .button,
    .form-actions a + input,
    .form-actions a + a {
      margin-top: 0.75rem; }
      @media (min-width: 641px) {
        .form-actions .button + .button,
        .form-actions .button + input,
        .form-actions .button + a,
        .form-actions input + .button,
        .form-actions input + input,
        .form-actions input + a,
        .form-actions a + .button,
        .form-actions a + input,
        .form-actions a + a {
          margin: 0 0 0 0.75rem; } }

.form-label--alternate {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin-bottom: 0.75rem; }

.form-select--date {
  width: initial; }
  .form-select--date + .form-select--date {
    margin-left: 0.41667rem; }

.form-select--small,
.form-select--date {
  background-position: right 0.5rem top 0.5rem;
  background-size: 1.5rem;
  font-size: 12px;
  height: 2.33333rem;
  line-height: 1rem;
  max-width: 20rem;
  padding: 0.58333rem 0.75rem;
  padding-right: 2rem; }

.form-select--short {
  max-width: 6rem;
  width: 4.5rem; }

.form-file {
  margin-bottom: 0.5rem; }

.form-fileDescription {
  color: #999999;
  font-size: 12px; }

.form-field-group {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 1.5rem; }

.form-column {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }
  @media (min-width: 641px) {
    .form-column {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 50%;
      float: left; } }

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

.form-prefixPostfix .form-input,
.form-prefixPostfix .button {
  display: block;
  width: 100%; }

@media (min-width: 1261px) {
  .form-prefixPostfix .form-input {
    width: auto; } }

@media (min-width: 1261px) {
  .form-prefixPostfix .button {
    width: auto; } }

.form-prefixPostfix .form-inlineMessage {
  margin-bottom: 0.41667rem; }
  @media (min-width: 1261px) {
    .form-prefixPostfix .form-inlineMessage {
      margin-bottom: 0; } }

.form-prefixPostfix-button--postfix {
  margin: 0.75rem 0 0;
  order: 1; }
  @media (min-width: 1261px) {
    .form-prefixPostfix-button--postfix {
      margin: 0 0 0 0.75rem;
      order: 0; } }

.form-increment .button {
  margin: 0;
  padding: 0.25rem 0.41667rem; }

.form-input--incrementTotal {
  border: 0;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  height: auto;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  width: 2.91667rem; }

.form-option {
  border: 1px solid #ebebeb;
  color: #373737;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding: 1px;
  transition: all 0.15s ease; }
  .form-option:hover {
    border-color: #373737; }
  .form-radio:checked + .form-option {
    border-color: #373737;
    box-shadow: 0 0 0 1px #373737; }

.form-option-variant {
  display: inline-block;
  font-size: 1rem;
  min-width: 3.16667rem;
  padding: 1px 0.41667rem;
  pointer-events: none;
  text-align: center; }

.form-option-variant--color,
.form-option-variant--pattern {
  height: 1.83333rem;
  width: 1.83333rem;
  min-width: initial;
  padding: 0; }
  @media (min-width: 641px) {
    .form-option-variant--color,
    .form-option-variant--pattern {
      pointer-events: inherit; } }

.form-option-variant--pattern {
  background-position: center;
  background-repeat: no-repeat; }

.form-input--small {
  font-size: 12px;
  height: 2.33333rem;
  line-height: 1rem;
  padding: 0.58333rem 0.75rem; }

.form-minMaxRow {
  margin-left: -0.375rem;
  margin-right: -0.375rem; }
  .form-minMaxRow:before, .form-minMaxRow:after {
    content: " ";
    display: table; }
  .form-minMaxRow:after {
    clear: both; }
  .form-minMaxRow .form-field {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 33.33333%;
    float: left;
    margin-bottom: 0;
    padding-left: 0.375rem;
    padding-right: 0.375rem; }
  .form-minMaxRow .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%; }

@media (min-width: 641px) {
  .form-row--half > .form-field:nth-child(odd) {
    clear: left; } }

[data-product-attribute] .form-option {
  overflow: hidden;
  position: relative; }
  [data-product-attribute] .form-option.unavailable {
    background-color: #ddd;
    opacity: 0.3; }
    [data-product-attribute] .form-option.unavailable:before {
      background-color: #000;
      content: "";
      height: 2px;
      left: -5px;
      position: absolute;
      top: 11px;
      transform: rotate(-45deg);
      width: 141%; }

[data-product-attribute="set-radio"] .unavailable,
[data-product-attribute="product-list"] .unavailable {
  opacity: 0.6;
  text-decoration: line-through; }

.card-figure {
  margin-top: 0;
  position: relative; }
  .card-figure:hover .card-figcaption {
    opacity: 1; }

.card-img-container {
  max-width: 500px; }
  .card-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.card-figcaption {
  display: none;
  margin: 0;
  pointer-events: none; }
  @media (min-width: 801px) {
    .card-figcaption {
      display: block; } }

.card-figcaption-body {
  display: inline-block;
  pointer-events: all;
  transform: translate3d(0, -50%, 0); }

.card-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 0;
  width: auto;
  max-height: 100%;
  object-fit: contain; }

.card-title {
  font-size: 13px;
  margin: 0 0 0.25rem; }
  .card-title > a {
    color: #050505;
    text-decoration: none; }
    .card-title > a:hover {
      color: #373737; }

.card-text {
  margin-bottom: 0.16667rem; }
  .card-text abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.card-figcaption-button {
  border: none;
  display: block;
  margin: 0.41667rem 0 0; }
  .card-figcaption-button:active {
    background-color: white;
    border: none; }
  .card-figcaption-button + .card-figcaption-button {
    margin: 0.41667rem 0 0; }

.card-body {
  text-align: center; }
  @media (min-width: 641px) {
    .card-body {
      text-align: left; } }

.card--alternate {
  border: 3px solid white;
  transition: all 0.15s ease; }
  .card--alternate .card-body {
    background-color: white;
    padding: 0.75rem;
    transition: all 0.15s ease; }
    @media (min-width: 641px) {
      .card--alternate .card-body {
        padding: 1.5rem; } }
  .card--alternate:hover {
    border-color: #757575; }
    .card--alternate:hover .card-body {
      background-color: #757575; }
      .card--alternate:hover .card-body .card-text {
        color: white; }
    .card--alternate:hover .card-title > a {
      color: white; }

.navList,
.navBar {
  margin-left: 0; }

.navList-action,
.navBar-action {
  text-decoration: none; }

.navList-action.is-active {
  font-weight: 700; }

.navList-action--checkbox {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.41667rem;
  padding-left: 1.91667rem;
  position: relative;
  vertical-align: baseline;
  width: 100%; }
  .navList-action--checkbox::before, .navList-action--checkbox::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 50ms ease-out; }
  .navList-action--checkbox::before {
    background-color: white;
    border: solid #999999;
    border-width: 1px;
    height: 1.33333rem;
    left: 0;
    top: 0;
    width: 1.33333rem; }
  .navList-action--checkbox::after {
    height: 1.16667rem;
    left: 1px;
    opacity: 0;
    top: 1px;
    transform: scale(0);
    width: 1.16667rem; }
  .navList-action--checkbox::before {
    border-radius: 4px; }
  .navList-action--checkbox::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(55, 55, 55, 0.999)' /%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgba(55, 55, 55, 0.999);
    content: "";
    font-size: 1.16667rem;
    line-height: 1;
    text-align: center; }
  .navList-action--checkbox:before, .navList-action--checkbox:after {
    top: 50%; }
  .navList-action--checkbox:before {
    margin-top: -0.66667rem; }
  .navList-action--checkbox:after {
    margin-top: -0.58333rem; }
  .navList-action--checkbox.is-disabled {
    cursor: default; }
    .navList-action--checkbox.is-disabled::before {
      background-color: #e5e5e5; }
  .navList-action--checkbox.is-checked::after, .navList-action--checkbox.is-selected::after {
    opacity: 1;
    transform: scale(1); }

.navList-action-close {
  background: #e5e5e5;
  border-radius: 100%;
  display: inline-block;
  float: right;
  line-height: 0;
  opacity: 0;
  padding: 0.25rem;
  transition: opacity 0.3s ease;
  visibility: hidden; }
  .navList-action-close .icon {
    height: 1.08333rem;
    width: 1.08333rem;
    fill: #050505; }
  .navList-action.is-selected:hover .navList-action-close {
    opacity: 1;
    visibility: visible; }

.navBar--sub {
  margin-bottom: 4.5rem;
  text-align: center; }
  .navBar--sub .navBar-section {
    float: none; }
  .navBar--sub .navBar-item {
    float: none;
    margin: 0 0.75rem; }
    @media (min-width: 801px) {
      .navBar--sub .navBar-item {
        display: inline-block; } }
    @media (min-width: 801px) {
      .navBar--sub .navBar-item.is-active {
        border-bottom: 1px solid #050505; } }
    .navBar--sub .navBar-item.is-active > .navBar-action {
      color: dimgray; }
    @media (min-width: 801px) {
      .navBar--sub .navBar-item.navBar-item--separate {
        border-left: 1px solid #373737;
        margin: 0;
        padding-left: 0.75rem; } }
  .navBar--sub .navBar-action {
    color: #373737;
    font-size: 1rem;
    padding: 0; }
    .navBar--sub .navBar-action:hover {
      color: dimgray; }

.loadingOverlay {
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  z-index: 20; }

.icons-svg-sprite {
  display: none; }

.icon,
.icon svg {
  transition: all 0.15s ease; }

.actionBar-section .form-field {
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden; }
  .actionBar-section .form-field:hover {
    border-color: #373737; }

.actionBar-section .form-label {
  color: #373737;
  font-size: 12px;
  line-height: 2.16667rem;
  margin-bottom: 0;
  padding-left: 0.75rem; }

.actionBar-section .form-input,
.actionBar-section .form-select {
  border: 0;
  padding-left: 0.16667rem;
  width: auto; }

.actionBar-section .form-label,
.actionBar-section .form-input,
.actionBar-section .form-select {
  display: inline-block; }

.actionBar-section .form-select {
  color: #050505;
  height: 2.16667rem; }

.has-ribbon {
  position: relative; }

.ribbon {
  background-color: #373737;
  color: white;
  cursor: default;
  font-weight: 700;
  margin: -0.91667rem -0.91667rem 0 0;
  padding: 0.08333rem 1rem;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 1; }

.navUser {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
  width: 100%;
  z-index: 5; }
  .navUser:before, .navUser:after {
    content: " ";
    display: table; }
  .navUser:after {
    clear: both; }
  .navUser ul,
  .navUser ol {
    list-style: none;
    margin-left: 0;
    margin: 0;
    padding: 0; }
    .navUser ul ul,
    .navUser ul ol,
    .navUser ol ul,
    .navUser ol ol {
      list-style: none;
      margin-bottom: 0; }
    .navUser ul li,
    .navUser ol li {
      margin: 0;
      padding: 0; }
  .navUser-section {
    float: left; }
    .navUser-section:before, .navUser-section:after {
      content: " ";
      display: table; }
    .navUser-section:after {
      clear: both; }
  .navUser-section--alt {
    float: right;
    margin-left: 1.5rem; }
  .navUser-section + .navUser-section {
    margin-left: 1.5rem; }
  @media (min-width: 641px) {
    .navUser-item {
      float: left; } }
  .navUser-item, .navUser-action {
    display: block; }
  @media (min-width: 801px) {
    .navUser {
      padding: 0 1.5rem;
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      z-index: 50; } }
  .navUser .dropdown-menu {
    background-color: white;
    border: 1px solid #ebebeb;
    box-shadow: 0 1px 2px rgba(5, 5, 5, 0.13);
    position: absolute; }
    .navUser .dropdown-menu.is-open:before {
      border: inset 10px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #ebebeb transparent;
      border-bottom-style: solid;
      bottom: 100%;
      left: 0.75rem;
      position: absolute; }
    .navUser .dropdown-menu.is-open:after {
      border: inset 8px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent white transparent;
      border-bottom-style: solid;
      bottom: 100%;
      left: 0.91667rem;
      position: absolute; }

.navUser-action {
  color: #373737;
  font-weight: 700;
  padding: 1rem 0.5rem;
  text-decoration: none;
  text-transform: uppercase; }
  .navUser-action:hover, .navUser-action.is-open {
    color: dimgray; }
    .navUser-action:hover svg, .navUser-action.is-open svg {
      fill: dimgray;
      stroke: dimgray; }
  .navUser-action .icon {
    height: 0.66667rem;
    width: 0.66667rem;
    margin: -1px 0 0 0.16667rem; }
  .navUser-action svg {
    fill: #373737;
    stroke: #373737;
    transition: all 0.15s ease; }

.navUser-action--storeCredit + .dropdown-menu {
  max-width: 25rem;
  padding: 1.5rem; }
  .navUser-action--storeCredit + .dropdown-menu:before {
    left: 11.66667rem !important; }
  .navUser-action--storeCredit + .dropdown-menu:after {
    left: 11.83333rem !important; }

.navUser-action-divider {
  border-right: 1px solid #ebebeb;
  color: #373737;
  display: inline-block;
  padding: 0 1.66667rem 0 0;
  text-decoration: none; }

.navUser-item {
  display: none; }
  @media (min-width: 801px) {
    .navUser-item {
      display: block; }
      .navUser-item.navUser-item--social {
        margin-top: 0.41667rem;
        padding-right: 0.41667rem; }
      .navUser-item.navUser-item--divider {
        font-size: 2.08333rem;
        margin-top: 0.66667rem;
        padding-left: 0.16667rem; } }

.navUser-item--cart {
  display: block; }
  .navUser-item--cart .navUser-action {
    color: #373737;
    padding-right: 1.5rem; }
    .navUser-item--cart .navUser-action:hover, .navUser-item--cart .navUser-action.is-open {
      color: dimgray; }
    @media (min-width: 801px) {
      .navUser-item--cart .navUser-action {
        padding-right: 0; } }
  .navUser-item--cart .dropdown-menu {
    max-width: 26.66667rem; }
    .navUser-item--cart .dropdown-menu.is-open:before, .navUser-item--cart .dropdown-menu.is-open:after {
      left: auto; }
    .navUser-item--cart .dropdown-menu.is-open:before {
      right: 0.75rem; }
    .navUser-item--cart .dropdown-menu.is-open:after {
      right: 0.91667rem; }

.navUser-item-cartLabel {
  display: inline; }
  .navUser-item-cartLabel .cartLabel {
    display: none; }
    @media (min-width: 641px) {
      .navUser-item-cartLabel .cartLabel {
        display: inline; } }

.navUser-item--compare {
  display: none; }
  .navUser-item--compare.show {
    display: block; }

.navUser-item--account .user-icon .navUser-or + .navUser-action {
  margin-right: -0.5rem; }

.navUser-item--account .user-icon .navUser-action {
  display: inline-block; }

.navUser-or {
  color: #373737;
  cursor: default;
  display: inline-block;
  margin: 0 -1rem;
  padding: 0 10px;
  position: relative;
  z-index: 1; }

.navUser-action--quickSearch.is-open {
  position: relative; }
  .navUser-action--quickSearch.is-open:before {
    border: inset 10px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent #e5e5e5 transparent;
    border-bottom-style: solid;
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%); }

.dropdown--quickSearch {
  background-color: #e5e5e5;
  padding: 1.5rem 0; }
  @media (min-width: 641px) {
    .dropdown--quickSearch {
      padding: 3rem; } }
  .dropdown--quickSearch.is-open {
    left: 0 !important;
    outline: none;
    right: 0 !important;
    width: 100% !important;
    z-index: 50; }
  .dropdown--quickSearch .form {
    margin: auto;
    max-width: 30rem; }
  .dropdown--quickSearch .form,
  .dropdown--quickSearch .form-field {
    margin-bottom: 0; }
  .dropdown--quickSearch .form-input {
    font-size: 16px;
    height: unset; }
  .dropdown--quickSearch .productGrid {
    padding: 1.5rem 0 0; }
    @media (min-width: 641px) {
      .dropdown--quickSearch .productGrid {
        padding: 3rem 0 0; } }

.countPill {
  background-color: #6b3418;
  border-radius: 50%;
  color: white;
  display: none;
  font-size: 10px;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  margin-left: 0.16667rem;
  text-align: center;
  width: 20px; }

.countPill--positive {
  display: inline-block; }

.countPill--alt {
  background-color: #cccccc;
  color: #373737; }

.navPages .navPage-subMenu-list, .navPage-childList {
  border-left: 1px solid #cccccc;
  margin: 0.41667rem 0.75rem;
  padding-left: 0.75rem; }

.has-activeNavPages {
  overflow: hidden;
  -webkit-overflow-scrolling: auto; }

.navPages-container {
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  right: 0;
  z-index: 10; }
  @media (min-width: 801px) {
    .navPages-container {
      background: transparent;
      display: block;
      height: auto;
      padding: 0;
      position: relative; } }
  .navPages-container.is-open {
    display: block;
    padding-top: 55px;
    z-index: 0; }

.navPages {
  background-color: #e5e5e5;
  height: 100%;
  overflow-y: auto;
  padding: 1.5rem; }
  @media (min-width: 801px) {
    .navPages {
      margin: 0 auto;
      max-width: 150rem;
      width: 100%;
      background: none;
      font-size: 0;
      overflow-y: visible;
      padding: 0;
      text-align: center; }
      .navPages:before, .navPages:after {
        content: " ";
        display: table; }
      .navPages:after {
        clear: both; }
      .navPages:before, .navPages:after {
        content: " ";
        display: table; }
      .navPages:after {
        clear: both; }
      .navPages ul,
      .navPages ol {
        list-style: none;
        margin-left: 0;
        margin: 0;
        padding: 0; }
        .navPages ul ul,
        .navPages ul ol,
        .navPages ol ul,
        .navPages ol ol {
          list-style: none;
          margin-bottom: 0; }
        .navPages ul li,
        .navPages ol li {
          margin: 0;
          padding: 0; }
      .navPages-section {
        float: left; }
        .navPages-section:before, .navPages-section:after {
          content: " ";
          display: table; }
        .navPages-section:after {
          clear: both; }
      .navPages-section--alt {
        float: right;
        margin-left: 1.5rem; }
      .navPages-section + .navPages-section {
        margin-left: 1.5rem; } }
  @media (min-width: 801px) and (min-width: 641px) {
    .navPages-item {
      float: left; } }
  @media (min-width: 801px) {
      .navPages-item, .navPages-action {
        display: block; } }
  .navPages ul {
    list-style: none; }
  .navPages .navPage-subMenu-list {
    border-left: 0;
    list-style: none;
    margin-left: 0;
    padding-left: 0; }
    @media (min-width: 801px) {
      .navPages .navPage-subMenu-list {
        margin: 0 auto;
        max-width: 150rem;
        width: 100%;
        border-left: 0;
        margin: auto;
        padding-left: 0; }
        .navPages .navPage-subMenu-list:before, .navPages .navPage-subMenu-list:after {
          content: " ";
          display: table; }
        .navPages .navPage-subMenu-list:after {
          clear: both; } }

.navPages-list {
  margin: 0; }
  @media (min-width: 801px) {
    .navPages-list {
      display: inline-block;
      float: none; } }
  .navPages-list + .navPages-list {
    border-top: 1px solid #cccccc;
    margin-top: 0.75rem;
    padding-top: 0.75rem; }

.navPages-list-depth-max.subMenu-is-open .is-hidden {
  display: none; }
  @media (min-width: 801px) {
    .navPages-list-depth-max.subMenu-is-open .is-hidden {
      display: inline-block; } }

.navPages-list-depth-max.subMenu-is-open .navPages-item-page {
  display: none; }
  @media (min-width: 801px) {
    .navPages-list-depth-max.subMenu-is-open .navPages-item-page {
      display: inline-block; } }

@media (min-width: 801px) {
  .navPages-action-depth-max.has-subMenu.is-root.is-open .navPages-action-moreIcon {
    transform: rotate(0); } }

.navPages-action-depth-max.has-subMenu.is-open {
  border-bottom: 1px solid #cccccc;
  text-align: center; }
  @media (min-width: 801px) {
    .navPages-action-depth-max.has-subMenu.is-open {
      border-bottom: 0;
      text-align: left; } }
  .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
    border: solid 1px #d6cdc0;
    border-radius: 4px;
    float: left;
    height: 35px;
    margin-top: -10px;
    padding: 11.7px;
    transform: rotate(90deg);
    width: 35px; }
    @media (min-width: 801px) {
      .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
        height: 0.66667rem;
        width: 0.66667rem;
        border: 0;
        border-radius: 0;
        float: none;
        margin-top: 0;
        padding: 0;
        transform: rotate(-90deg); } }
  .navPages-action-depth-max.has-subMenu.is-open svg {
    height: 9.6px;
    width: 9.6px; }
    @media (min-width: 801px) {
      .navPages-action-depth-max.has-subMenu.is-open svg {
        height: 100%;
        width: 100%; } }

.navPages-action {
  color: white;
  display: block;
  font-size: 13px;
  font-weight: 700;
  padding: 0.75rem 0;
  text-decoration: none;
  text-transform: uppercase; }
  @media (min-width: 801px) {
    .navPages-action {
      display: inline-block;
      padding: 0.75rem 1.16667rem 1.16667rem; }
      .navPages-action.is-open {
        background-color: #e5e5e5; }
        .navPages-action.is-open svg {
          fill: #ebebeb;
          stroke: #ebebeb; } }
  .navPages-action:hover {
    color: #ebebeb; }
    .navPages-action:hover svg {
      fill: #ebebeb;
      stroke: #ebebeb; }
  .navPages-action svg {
    fill: white;
    stroke: white;
    transition: all 0.15s ease; }

.navPages-action--storeCredit {
  color: #373737; }

.navPages-action--compare {
  display: none; }
  .navPages-action--compare.show {
    display: block; }

.navPages-action-moreIcon {
  height: 0.66667rem;
  width: 0.66667rem;
  margin-left: 0.41667rem;
  transform: rotate(-90deg); }
  @media (min-width: 801px) {
    .navPages-action-moreIcon {
      transform: none; } }
  .has-subMenu.is-open .navPages-action-moreIcon {
    transform: rotate(0); }

.navPage-childList {
  display: none; }
  @media (min-width: 801px) {
    .navPage-childList {
      border: 0;
      display: block; } }
  .navPage-childList.is-open {
    display: block; }

.navPage-subMenu {
  display: none;
  outline: 0; }
  @media (min-width: 801px) {
    .navPage-subMenu {
      background-color: #e5e5e5;
      padding: 1.5rem 1.5rem 2.25rem !important;
      position: absolute;
      text-align: left; }
      .navPage-subMenu.is-open {
        display: block;
        left: 0;
        width: 100%; }
      .navPage-subMenu .navPages-action-moreIcon {
        display: none; } }
  .navPage-subMenu.is-open {
    display: block; }

@media (min-width: 801px) {
  .has-subMenu.is-root + .navPage-subMenu-horizontal {
    border-left: 0;
    height: auto;
    left: inherit;
    margin: auto;
    top: inherit;
    width: 20rem; } }

@media (min-width: 801px) {
  .navPage-subMenu-horizontal.is-open {
    border-left: 1px solid #cccccc;
    display: inherit;
    height: auto;
    margin-left: 20rem;
    padding: 0 !important;
    top: 0;
    width: 21rem; } }

@media (min-width: 801px) {
  .navPage-subMenu-horizontal .navPages-action-moreIcon {
    display: inline-block;
    transform: rotate(-90deg); } }

@media (min-width: 801px) {
  .navPage-subMenu-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 25%;
    float: left;
    padding: 0 0.75rem !important; }
    .navPage-subMenu-item .navPages-action {
      text-transform: none;
      width: 100%; }
    .navPage-subMenu-item > .navPage-subMenu-action {
      border-bottom: 1px solid #cccccc;
      margin-bottom: 1.16667rem; } }

.navPage-subMenu-item-child,
.navPage-subMenu-item-parent {
  width: 100%; }
  @media (min-width: 801px) {
    .navPage-subMenu-item-child .navPage-subMenu-action,
    .navPage-subMenu-item-parent .navPage-subMenu-action {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      width: 100%; }
    .navPage-subMenu-item-child .navPage-subMenu-action.is-open,
    .navPage-subMenu-item-child .navPage-subMenu-action:hover,
    .navPage-subMenu-item-parent .navPage-subMenu-action.is-open,
    .navPage-subMenu-item-parent .navPage-subMenu-action:hover {
      background: #c8bdb2;
      color: #000;
      font-weight: 500; } }

.navPage-subMenu-action {
  padding: 0.75rem 0; }
  @media (min-width: 801px) {
    .navPage-subMenu-action {
      padding: 0.75rem 0 1.16667rem; } }

.navPage-childList-action {
  font-weight: 400;
  padding: 0 0 0.41667rem; }

.navPages-quickSearch {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 0.75rem; }
  @media (min-width: 801px) {
    .navPages-quickSearch {
      display: none; } }
  .navPages-quickSearch > .container {
    padding: 0; }
  .navPages-quickSearch .form {
    margin: 0; }
  .navPages-quickSearch .form-field {
    margin-bottom: 0; }

@media (min-width: 801px) {
  .navPages-list--user {
    display: none; } }

.navPages-list--user #currencySelection2 {
  background-color: white;
  border: 1px solid #ebebeb; }
  .navPages-list--user #currencySelection2 .dropdown-menu-item {
    padding: 0; }
    .navPages-list--user #currencySelection2 .dropdown-menu-item:not(:last-child) {
      border-bottom: 1px solid #ebebeb; }
  .navPages-list--user #currencySelection2 a {
    padding: 0.75rem 1.5rem; }

.tags {
  list-style: none;
  margin-left: 0;
  font-size: 0;
  text-align: center; }
  .tags ul,
  .tags ol {
    list-style: none;
    margin-bottom: 0; }

.tag {
  display: inline-block;
  font-size: 1rem; }
  .tag a {
    color: #373737;
    display: inline-block;
    padding: 0.41667rem 0.5rem;
    text-decoration: none; }
    .tag a:hover {
      color: dimgray; }

.socialLinks {
  list-style: none;
  margin-left: 0;
  margin: 0;
  padding: 0;
  line-height: 37px; }
  .socialLinks:before, .socialLinks:after {
    content: " ";
    display: table; }
  .socialLinks:after {
    clear: both; }
  .socialLinks ul,
  .socialLinks ol {
    list-style: none;
    margin-bottom: 0; }
  .socialLinks li {
    margin: 0;
    padding: 0; }
  .socialLinks .icon {
    height: 1.66667rem;
    width: 1.66667rem;
    margin: 0;
    text-decoration: none; }
    .socialLinks .icon:hover svg {
      fill: #050505; }
    .socialLinks .icon svg {
      fill: #373737;
      transition: all 0.15s ease; }

.google_plusone_iframe_widget {
  width: inherit !important; }

.socialLinks-item--pinterest {
  width: 25px; }

.pin_it_iframe_widget {
  display: none; }

.socialLinks-item {
  display: inline-block;
  font-size: 0; }
  .socialLinks .socialLinks-item {
    margin-bottom: 0.41667rem;
    margin-right: 0.75rem; }
    .socialLinks .socialLinks-item:last-child {
      margin-right: 0; }

.socialLinks--alt .icon {
  height: 1.75rem;
  width: 1.75rem; }

.socialLinks--alt svg {
  fill: #373737; }

.heroCarousel {
  margin-bottom: 4.5rem;
  margin-top: -1.5rem; }
  @media (min-width: 801px) {
    .heroCarousel {
      margin-top: -2.5rem; } }
  .heroCarousel.slick-initialized {
    max-height: 83.33333rem;
    opacity: 1; }
  .heroCarousel:not(.slick-initialized) :not(.heroCarousel-slide--first).heroCarousel-slide {
    display: none; }
  .heroCarousel .slick-next,
  .heroCarousel .slick-prev {
    top: 50%; }
  .heroCarousel .slick-next {
    right: 15px; }
    @media (min-width: 801px) {
      .heroCarousel .slick-next {
        right: 25px; } }
  .heroCarousel .slick-prev {
    left: 15px; }
    @media (min-width: 801px) {
      .heroCarousel .slick-prev {
        left: 25px; } }
  .heroCarousel .slick-dots {
    bottom: 0.5rem; }
    @media (min-width: 801px) {
      .heroCarousel .slick-dots {
        bottom: 1.5rem; } }
    .heroCarousel .slick-dots li {
      background-color: white;
      background-color: rgba(255, 255, 255, 0.9); }

.heroCarousel-slide {
  position: relative; }
  .heroCarousel-slide a {
    text-decoration: none; }
  @media (min-width: 801px) {
    .heroCarousel-slide .heroCarousel-image {
      object-fit: cover;
      max-height: 50rem;
      width: 100%; } }
  @media (min-width: 801px) {
    .heroCarousel-slide .heroCarousel-image-wrapper {
      max-height: 50rem; } }
  .heroCarousel-slide.compat-object-fit {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat; }
    @media (min-width: 1261px) {
      .heroCarousel-slide.compat-object-fit.stretch {
        background-size: 100% 100%; } }
    .heroCarousel-slide.compat-object-fit .heroCarousel-image {
      opacity: 0; }

.heroCarousel-content {
  background-color: #232b2e;
  padding: 0.75rem 1.5rem 3rem;
  text-align: center; }
  @media (min-width: 801px) {
    .heroCarousel-content {
      background-color: #232b2e;
      background-color: rgba(35, 43, 46, 0.9);
      background-color: rgba(35, 43, 46, 0.9);
      left: 0;
      margin: 0 auto;
      padding: 2.25rem;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 58.33333rem; }
      .heroCarousel-content.heroCarousel-content--empty {
        background-color: transparent; } }

.heroCarousel-title {
  color: white;
  font-size: 22px;
  margin-top: 0; }
  @media (min-width: 801px) {
    .heroCarousel-title {
      font-size: 50px; } }

.heroCarousel-description {
  color: white; }

.heroCarousel-action {
  margin: 0; }
  @media (min-width: 801px) {
    .heroCarousel-action {
      margin-top: 1.5rem; } }

@media (min-width: 801px) {
  .writeReview-productDetails {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 50%;
    float: left; } }

.writeReview-productDetails .product-brand {
  color: #999999;
  margin: 0; }

.writeReview-productDetails .product-title {
  margin-top: 0; }

@media (min-width: 801px) {
  .writeReview-form {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 50%;
    float: left; } }

.writeReview-productImage-container {
  position: relative; }
  .writeReview-productImage-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
  .writeReview-productImage-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.account--addReturn .table {
  display: block;
  margin-bottom: 3rem; }
  @media (min-width: 641px) {
    .account--addReturn .table {
      display: table;
      margin-bottom: 6rem; } }
  .account--addReturn .table tr {
    display: block;
    padding: 1.5rem 0; }
    @media (min-width: 641px) {
      .account--addReturn .table tr {
        display: table-row;
        padding: 0; } }
  .account--addReturn .table th,
  .account--addReturn .table td {
    display: block;
    padding: 0; }
    @media (min-width: 641px) {
      .account--addReturn .table th,
      .account--addReturn .table td {
        display: table-cell;
        padding-bottom: 0.75rem;
        padding-top: 0.75rem; } }
    .account--addReturn .table th + th,
    .account--addReturn .table th + td,
    .account--addReturn .table td + th,
    .account--addReturn .table td + td {
      padding-left: 0; }
      @media (min-width: 641px) {
        .account--addReturn .table th + th,
        .account--addReturn .table th + td,
        .account--addReturn .table td + th,
        .account--addReturn .table td + td {
          padding-left: 1.5rem; } }
  .account--addReturn .table .return-itemTitle + .definitionList {
    margin-top: 0.16667rem; }
  @media (min-width: 641px) {
    .account--addReturn .table .return-itemPrice {
      text-align: center; } }
  @media (min-width: 641px) {
    .account--addReturn .table .return-itemQuantity {
      text-align: right; } }

.account--addReturn .table-thead {
  display: none; }
  @media (min-width: 641px) {
    .account--addReturn .table-thead {
      display: table-header-group; } }
  .account--addReturn .table-thead th {
    font-size: 13px; }
  .account--addReturn .table-thead th:first-child {
    width: 60%; }

.account--addReturn .table-tbody {
  display: block; }
  @media (min-width: 641px) {
    .account--addReturn .table-tbody {
      display: table-row-group; } }

.return-itemName {
  font-size: 13px;
  font-weight: 700; }
  @media (min-width: 641px) {
    .return-itemName {
      font-size: 1rem;
      font-weight: 400; } }

.return-itemPrice {
  color: #999999;
  margin-bottom: 0.41667rem; }
  @media (min-width: 641px) {
    .return-itemPrice {
      color: inherit;
      margin-bottom: 0;
      text-align: center; } }

.return-itemQuantity .form-label {
  display: inline;
  margin-right: 0.41667rem; }
  @media (min-width: 641px) {
    .return-itemQuantity .form-label {
      border: 0;
      clip: rect(1px, 1px, 1px, 1px);
      height: 1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; } }

.account--addReturn-row {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  margin: 0 -1rem; }
  .account--addReturn-row:before, .account--addReturn-row:after {
    content: " ";
    display: table; }
  .account--addReturn-row:after {
    clear: both; }

.account--addReturn-column {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  padding: 0 1rem; }
  @media (min-width: 641px) {
    .account--addReturn-column {
      width: 50%; } }

.productCarousel {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto; }
  .productCarousel:before, .productCarousel:after {
    content: " ";
    display: table; }
  .productCarousel:after {
    clear: both; }

.productCarousel-slide {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 50%;
  float: left; }
  @media (min-width: 641px) {
    .productCarousel-slide {
      width: 33.33333%; } }
  @media (min-width: 801px) {
    .productCarousel-slide {
      width: 25%; } }
  @media (min-width: 1261px) {
    .productCarousel-slide {
      width: 16.66667%; } }
  .productCarousel-slide .card {
    margin-bottom: 0; }
    .productCarousel-slide .card .card-title {
      overflow-wrap: break-word; }

.quickView:before, .quickView:after {
  content: " ";
  display: table; }

.quickView:after {
  clear: both; }

.productReviews-list {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .productReviews-list ul,
  .productReviews-list ol {
    list-style: none;
    margin-bottom: 0; }
  .productReviews-list:before, .productReviews-list:after {
    content: " ";
    display: table; }
  .productReviews-list:after {
    clear: both; }

.productReview {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  display: inline-block;
  float: none;
  font-size: 1rem;
  vertical-align: top; }
  @media (min-width: 801px) {
    .productReview {
      width: 50%; } }
  @media (min-width: 1261px) {
    .productReview {
      width: 33.33333%; } }

.productReview-title {
  margin: 0;
  text-transform: none; }

.productReview-author {
  color: #373737;
  margin-bottom: 1rem; }

.productReview-rating {
  display: inline-block;
  margin-bottom: 0.41667rem; }

.productReview-ratingNumber {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.productView {
  padding-top: 1rem; }

.productView-images {
  margin-bottom: 3rem; }

.productView-image {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative; }
  @media (min-width: 801px) {
    .productView-image {
      min-height: 366px;
      min-width: inherit; } }
  .productView-image + .productView-thumbnails {
    margin-top: 0.75rem; }
  @media (min-width: 320px) and (max-width: 801px) {
    .productView-image {
      pointer-events: none; } }

.productView-img-container {
  position: relative;
  margin: auto;
  max-width: 800px;
  width: 100%; }
  .productView-img-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    width: auto;
    object-fit: contain; }
  .productView-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.productView-thumbnails {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  margin-left: -0.41667rem;
  margin-right: -0.41667rem; }
  .productView-thumbnails ul,
  .productView-thumbnails ol {
    list-style: none;
    margin-bottom: 0; }
  .productView-thumbnails:before, .productView-thumbnails:after {
    content: " ";
    display: table; }
  .productView-thumbnails:after {
    clear: both; }
  .productView-thumbnails .slick-list {
    margin-left: 3.33333rem;
    margin-right: 3.33333rem; }
  .productView-thumbnails .slick-next {
    right: 0; }
  .productView-thumbnails .slick-prev {
    left: 0; }
  .productView-thumbnails img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 50px;
    max-width: 50px;
    width: auto; }

.productView-thumbnail {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 25%;
  float: left;
  padding-left: 0.41667rem;
  padding-right: 0.41667rem;
  text-align: center; }
  @media (min-width: 1261px) {
    .productView-thumbnail {
      width: 20%; } }

.productView-thumbnail-link {
  border: 1px solid #ebebeb;
  display: inline-block;
  height: 67px;
  max-width: 75px;
  padding: 2px;
  position: relative;
  text-align: center;
  width: 100%; }
  .productView-thumbnail-link:hover, .productView-thumbnail-link.is-active {
    border-color: #373737; }

.productView-details {
  margin-bottom: 2rem; }

@media (min-width: 801px) {
  .productView-product {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 2rem; } }

.productView-product > :last-child {
  margin-bottom: 0; }

.productView-title {
  font-size: 16px;
  margin: -0.75rem 0 0.41667rem; }
  @media (min-width: 801px) {
    .productView-title {
      margin-top: 1.5rem; } }
  @media (min-width: 1261px) {
    .productView-title {
      font-size: 28px; } }

.productView-brand {
  color: #373737;
  font-size: 13px;
  margin: 0 0 0.75rem; }
  @media (min-width: 1261px) {
    .productView-brand {
      font-size: 16px; } }
  .productView-brand a {
    color: #373737; }
    .productView-brand a:hover {
      color: dimgray; }

.productView-price {
  font-size: 13px;
  margin-bottom: 0.5rem; }
  @media (min-width: 801px) {
    .productView-price {
      font-size: 22px;
      margin-bottom: 1rem; } }
  .productView-price .price-section--saving {
    font-size: 13px; }
  .productView-price abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.productView-reviewLink {
  display: inline-block;
  margin: 0 0.75rem;
  vertical-align: middle; }
  .productView-reviewLink + .productView-reviewLink {
    display: block;
    margin-left: auto; }
    @media (min-width: 641px) {
      .productView-reviewLink + .productView-reviewLink {
        display: inline-block; } }
  .productView-reviewLink > a {
    color: #373737; }
    .productView-reviewLink > a:hover {
      color: dimgray; }

.productView-info {
  margin-top: 0.75rem; }
  .productView-info:before, .productView-info:after {
    content: " ";
    display: table; }
  .productView-info:after {
    clear: both; }
  @media (min-width: 641px) {
    .productView-info {
      margin-top: 0; } }
  @media (min-width: 641px) {
    .productView-info > :first-child {
      margin-top: 1.5rem; } }
  .productView-info > :last-child {
    margin-bottom: 0; }

.productView-info-name,
.productView-info-value {
  float: left; }
  @media (min-width: 641px) {
    .productView-info-name,
    .productView-info-value {
      float: none; } }

.productView-info-name {
  clear: both;
  margin-bottom: 0.16667rem;
  margin-right: 0.41667rem; }
  @media (min-width: 641px) {
    .productView-info-name {
      font-family: "Work Sans", Arial, Helvetica, sans-serif;
      font-weight: 400; } }

.productView-info-value {
  margin-bottom: 0.41667rem; }
  @media (min-width: 641px) {
    .productView-info-value {
      margin-bottom: 1rem; } }

.productView-options {
  margin-bottom: 1.5rem;
  text-align: center; }
  .productView-options:before, .productView-options:after {
    content: " ";
    display: table; }
  .productView-options:after {
    clear: both; }
  @media (min-width: 641px) {
    .productView-options {
      text-align: left; } }
  @media (min-width: 641px) {
    .productView-options .form-input[type="number"] {
      width: 16.66667%; } }
  .productView-options .form {
    display: inline; }
  .productView-options input[type="file"] {
    font-size: 12px; }
  .productView-options .form-field {
    font-size: 0;
    margin-bottom: 2rem; }
    .productView-options .form-field > .form-checkbox + .form-label,
    .productView-options .form-field > .form-radio + .form-label {
      display: inline-block;
      margin-left: 1.5rem;
      width: auto; }
      @media (min-width: 641px) {
        .productView-options .form-field > .form-checkbox + .form-label,
        .productView-options .form-field > .form-radio + .form-label {
          margin-left: 0;
          width: 100%; } }
    .productView-options .form-field > .form-label:nth-of-type(2) {
      margin-left: 0; }
  @media (min-width: 641px) {
    .productView-options .form-action {
      float: left;
      padding: 0 0.83333rem;
      width: 50%; } }
  @media (min-width: 801px) {
    .productView-options .form-action {
      float: none;
      padding: 0;
      width: auto; } }
  @media (min-width: 1261px) {
    .productView-options .form-action {
      display: inline-block;
      margin-top: 1rem; } }
  .productView-options .form-action .button {
    width: 100%; }
    @media (min-width: 1261px) {
      .productView-options .form-action .button {
        margin-right: 0.75rem;
        width: auto; } }

.productOptions-list {
  border: 1px solid #ebebeb;
  list-style: none;
  margin: 0; }

.productOptions-list-item {
  padding: 1.5rem; }
  .productOptions-list-item + .productOptions-list-item {
    border-top: 1px solid #ebebeb; }
  .productOptions-list-item .form-label {
    text-align: left;
    top: -2px; }

.productOptions-list-item-figure,
.productOptions-list-item-content {
  display: table-cell;
  vertical-align: middle; }

.productOptions-list-item-figure {
  width: 3rem; }

.productOptions-list-item-content {
  padding-left: 1.25rem; }

.shareProduct {
  text-align: center; }

.productView-image .easyzoom-flyout {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%; }
  .productView-image .easyzoom-flyout img {
    max-width: none;
    width: auto; }

.price--rrp,
.price--non-sale,
.price--discounted {
  text-decoration: line-through; }

.price-section--minor {
  color: #999999; }

.compareTable {
  border-top: 1px solid #ebebeb;
  table-layout: fixed;
  width: 100%; }

.compareTable-row {
  vertical-align: top; }
  .compareTable-row + .compareTable-row .compareTable-heading,
  .compareTable-row + .compareTable-row .compareTable-item {
    border-top: 1px solid #ebebeb; }
  .compareTable-row + .compareTable-row .compareTable-heading:empty {
    border-top: 0; }

.compareTable-heading {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 1.25rem 1rem;
  position: relative;
  text-align: right;
  width: 0; }
  @media (min-width: 801px) {
    .compareTable-heading {
      width: 25%; } }

.compareTable-headingText {
  position: absolute;
  top: 1.25rem;
  white-space: nowrap; }
  @media (min-width: 801px) {
    .compareTable-headingText {
      position: inherit;
      top: inherit; } }

.compareTable-item {
  padding: 3.25rem 1rem 1.25rem; }
  @media (min-width: 801px) {
    .compareTable-item {
      padding-top: 1.25rem; } }

.compareTable-removeProduct {
  background-color: #e5e5e5;
  border-radius: 50%;
  height: 2.5rem;
  position: absolute;
  right: -1rem;
  top: -1rem;
  transition: background-color 0.15s ease;
  width: 2.5rem; }
  .compareTable-removeProduct .icon {
    fill: #373737;
    height: 1.5rem;
    margin-top: 0.5rem;
    width: 1.5rem; }

.compareTable-product {
  font-weight: 400;
  padding: 2rem 1rem 1.25rem; }
  .compareTable-product .card {
    margin-bottom: 0; }
  .compareTable-product .card-body {
    min-height: 6rem;
    padding-top: 1rem; }

.compareTable-action {
  padding: 0 1rem 1rem; }
  .compareTable-action .button {
    display: block;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%; }

.blocker {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 500; }

.blocker-container {
  position: relative; }

.textTruncate {
  padding-bottom: 1.5rem;
  position: relative;
  transition: max-height 100ms ease-out; }

.js .textTruncate {
  max-height: 110px;
  overflow: hidden; }

.js .textTruncate--visible {
  max-height: 83.33333rem; }

.textTruncate-viewMore {
  background-color: white;
  bottom: 0;
  padding-top: 10px;
  position: absolute;
  width: 100%; }

.toggle {
  border-top: 1px solid #ebebeb;
  margin-bottom: 2.25rem; }
  .toggle:last-of-type {
    margin-bottom: 4.5rem; }

.toggle-title {
  margin-bottom: 2.25rem; }

.toggleLink {
  color: #373737; }
  .toggleLink:hover {
    color: dimgray; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }

.toggleLink-text {
  font-size: 12px;
  font-weight: 400; }

.toggleLink-text--off {
  display: inline-block; }
  .toggleLink.is-open .toggleLink-text--off {
    display: none; }

.toggleLink-text--on {
  display: none; }
  .toggleLink.is-open .toggleLink-text--on {
    display: inline-block; }

.toggle-content {
  display: none; }
  .toggle-content.is-open {
    display: block; }

.facetedSearch-toggle {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  border: #ebebeb solid;
  border-radius: 4px;
  border-width: 1px;
  display: block;
  margin-bottom: 2rem;
  padding: 1rem; }
  .facetedSearch-toggle:before, .facetedSearch-toggle:after {
    content: " ";
    display: table; }
  .facetedSearch-toggle:after {
    clear: both; }
  @media (min-width: 801px) {
    .facetedSearch-toggle {
      display: none !important; } }
  .facetedSearch-toggle.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0; }

.facetedSearch-toggle-text,
.facetedSearch-toggle-indicator {
  display: block;
  font-weight: normal; }

.facetedSearch-toggle-text {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 58.33333%;
  float: left;
  padding: 0;
  text-align: left; }

.facetedSearch-toggle-indicator {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 41.66667%;
  float: left;
  font-weight: bold;
  padding: 0;
  text-align: right; }

.facetedSearch-navList {
  display: none;
  z-index: 1; }
  @media (min-width: 801px) {
    .facetedSearch-navList {
      display: block !important; } }
  .facetedSearch-navList.is-open {
    display: block; }
    .facetedSearch-navList.is-open .accordion--navList,
    .facetedSearch-navList.is-open .accordion-block:first-child .accordion-navigation {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .facetedSearch-toggle + .facetedSearch-navList,
  .sidebarBlock + .facetedSearch-navList {
    margin-top: 2rem; }
  .facetedSearch-toggle + .facetedSearch-navList.is-open,
  .sidebarBlock + .facetedSearch-navList.is-open {
    margin-top: -1px; }
    @media (min-width: 801px) {
      .facetedSearch-toggle + .facetedSearch-navList.is-open,
      .sidebarBlock + .facetedSearch-navList.is-open {
        margin-top: 2rem; } }
  .facetedSearch-navList .navList--inner {
    margin-left: 1.5rem; }

.facet-quick-heading {
  text-transform: capitalize; }

.facetedSearch-optionColumns {
  column-count: 3;
  column-gap: 20px; }

.facetedSearch-refineFilters {
  display: none; }
  @media (min-width: 801px) {
    .facetedSearch-refineFilters {
      display: block; } }

.facetedSearch-content--rating .is-selected {
  font-weight: bold; }

.banners {
  background-color: #757575;
  color: white;
  padding: 0.75rem 0;
  text-align: center; }
  .banners p:last-child {
    margin-bottom: 0; }
  .banners a {
    color: white; }

.banner {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%; }
  .banner:before, .banner:after {
    content: " ";
    display: table; }
  .banner:after {
    clear: both; }
  .banner + .banner {
    margin-top: 1.5rem; }

.facetLabel {
  background: #e5e5e5;
  border-radius: 4px;
  padding: 0.16667rem 0.5rem 0.16667rem 0.66667rem;
  text-decoration: none; }
  .facetLabel .icon {
    height: 1rem;
    width: 1rem;
    display: inline-block;
    fill: #373737;
    position: relative;
    top: -1px; }

.cart {
  display: block;
  margin-bottom: 1.5rem;
  width: 100%; }
  @media (min-width: 801px) {
    .cart {
      display: table; } }

.cart-header {
  display: none; }
  @media (min-width: 801px) {
    .cart-header {
      display: table-header-group;
      text-align: left; } }

.cart-header-item {
  padding-bottom: 1rem; }
  .cart-header-item:last-child {
    text-align: right; }

.cart-list {
  border-top: 1px solid #ebebeb;
  display: block; }
  @media (min-width: 801px) {
    .cart-list {
      display: table-row-group; } }

.cart-item {
  border-bottom: 1px solid #ebebeb;
  clear: both;
  display: block;
  padding: 1.5rem 0; }
  @media (min-width: 641px) {
    .cart-item {
      padding-left: 25%; }
      .cart-item:before, .cart-item:after {
        content: " ";
        display: table; }
      .cart-item:after {
        clear: both; } }
  @media (min-width: 801px) {
    .cart-item {
      display: table-row;
      padding-left: 0; }
      .cart-item:before, .cart-item:after {
        display: none; } }

.cart-item-block {
  display: block; }
  @media (min-width: 801px) {
    .cart-item-block {
      display: table-cell; } }
  .cart-item-block .definitionList {
    margin-bottom: 0.41667rem; }

.cart-item-figure {
  float: left;
  height: 8.33333rem;
  margin-bottom: 1.5rem;
  width: 33.33333%;
  position: relative; }
  @media (min-width: 641px) {
    .cart-item-figure {
      margin-bottom: 0;
      margin-left: -33.33333%;
      width: 33.33333%; } }
  @media (min-width: 801px) {
    .cart-item-figure {
      float: none;
      width: 8.33333%; } }
  .cart-item-figure:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.cart-item-fixed-image {
  width: 100%; }

.cart-item-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }
  @media (min-width: 801px) {
    .cart-item-image {
      margin-left: 0; } }

.cart-item-title {
  display: table-cell;
  height: 8.33333rem;
  padding-left: 1.5rem; }
  @media (min-width: 641px) {
    .cart-item-title {
      display: block;
      height: auto;
      margin-bottom: 1.5rem;
      overflow: hidden; } }
  @media (min-width: 801px) {
    .cart-item-title {
      display: table-cell;
      padding: 1.5rem; } }

.cart-item-info {
  clear: both;
  width: 100%; }
  @media (min-width: 641px) {
    .cart-item-info {
      clear: none;
      float: left;
      overflow: hidden;
      width: 33.33333%; }
      .cart-item-info + .cart-item-info {
        margin-top: 0; } }
  @media (min-width: 801px) {
    .cart-item-info {
      float: none;
      width: 16.66667%; }
      .cart-item-info:last-child {
        text-align: right; } }
  .cart-item-info + .cart-item-info {
    margin-top: 0.75rem; }

@media (min-width: 801px) {
  .cart-header-quantity,
  .cart-item-quantity {
    text-align: center; } }

.cart-item-quantity .form-increment {
  display: inline-block;
  margin: 0 0.16667rem 1px 1.5rem;
  vertical-align: middle; }
  @media (min-width: 801px) {
    .cart-item-quantity .form-increment {
      margin-left: 0; } }

.cart-item-label {
  color: #999999;
  float: left;
  margin-bottom: 0.41667rem;
  text-align: right;
  width: 33.33333%; }
  @media (min-width: 641px) {
    .cart-item-label {
      display: block;
      padding-left: 1.5rem;
      text-align: left;
      width: 100%; } }
  @media (min-width: 801px) {
    .cart-item-label {
      display: none; } }

.cart-item-value {
  padding-left: 1.5rem; }
  @media (min-width: 801px) {
    .cart-item-value {
      padding-left: 0; } }

.cart-item-brand {
  color: #999999;
  margin-bottom: 0.16667rem; }

.cart-item-name {
  font-size: 13px;
  margin: 0; }
  .cart-item-name + .definitionList {
    margin-top: 0.41667rem; }

.cart-item-options--giftWrapping {
  margin-top: 1.16667rem; }
  .cart-item-options--giftWrapping .cart-item-option-description {
    color: #050505; }

.cart-remove {
  background-color: #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  float: right;
  height: 1.5rem;
  margin-top: 0.16667rem;
  padding: 0.16667rem;
  transition: background-color 0.15s ease;
  width: 1.5rem; }
  @media (min-width: 641px) {
    .cart-remove {
      margin-left: 1rem; } }
  .cart-remove.cart-remove--spacer {
    visibility: hidden; }
  .cart-remove > svg {
    fill: #373737; }

.cart-totals {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1.5rem;
  text-align: right;
  width: 100%; }
  .cart-totals ul,
  .cart-totals ol {
    list-style: none;
    margin-bottom: 0; }
  @media (min-width: 641px) {
    .cart-totals {
      float: right;
      width: 75%; } }
  @media (min-width: 801px) {
    .cart-totals {
      margin-bottom: 1rem;
      width: 58.33333%; } }
  @media (min-width: 1261px) {
    .cart-totals {
      width: 41.66667%; } }

.cart-total {
  border-bottom: 0; }
  .cart-total:before, .cart-total:after {
    content: " ";
    display: table; }
  .cart-total:after {
    clear: both; }
  @media (min-width: 801px) {
    .cart-total + .cart-total {
      border-top: 1px solid #ebebeb; } }
  .cart-total .form-input {
    display: inline-block;
    height: 2.66667rem;
    padding: 0.5rem;
    vertical-align: top;
    width: 75%; }
  .cart-total .form-select {
    background-position: right 0.41667rem top 0.58333rem;
    background-size: 1.66667rem 1.66667rem;
    height: 2.66667rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem; }
  .cart-total .form-inlineMessage {
    text-align: left; }

.cart-total-label {
  color: #373737;
  width: 33.33333%; }
  @media (min-width: 641px) {
    .cart-total-label {
      width: 50%; } }
  @media (min-width: 801px) {
    .cart-total-label {
      display: block;
      padding-left: 0;
      text-align: left; } }

.cart-total-value {
  text-align: left; }
  @media (min-width: 641px) {
    .cart-total-value {
      text-align: right; } }
  @media (min-width: 801px) {
    .cart-total-value {
      width: 50%; } }

.cart-total-label,
.cart-total-value {
  float: left;
  padding: 0.5rem 0 0.5rem 1.5rem; }
  @media (min-width: 801px) {
    .cart-total-label,
    .cart-total-value {
      padding: 1rem 0; } }

.cart-total-grandTotal {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding-bottom: 0.16667rem;
  padding-top: 0.16667rem;
  position: relative; }
  @media (min-width: 801px) {
    .cart-total-grandTotal {
      padding: 1rem 0;
      top: -0.25rem; } }

.coupon-code-add,
.coupon-code-cancel,
.shipping-estimate-show,
.shipping-estimate-hide,
.gift-certificate-add,
.gift-certificate-cancel {
  color: #373737;
  padding: 0;
  text-decoration: underline;
  transition: color 0.15s ease; }
  .coupon-code-add:hover,
  .coupon-code-cancel:hover,
  .shipping-estimate-show:hover,
  .shipping-estimate-hide:hover,
  .gift-certificate-add:hover,
  .gift-certificate-cancel:hover {
    color: dimgray; }

.coupon-code-cancel,
.shipping-estimate-hide {
  font-style: italic; }

.coupon-form,
.cart-gift-certificate-form {
  font-size: 0;
  margin-bottom: 1rem; }
  .coupon-form:before, .coupon-form:after,
  .cart-gift-certificate-form:before,
  .cart-gift-certificate-form:after {
    content: " ";
    display: table; }
  .coupon-form:after,
  .cart-gift-certificate-form:after {
    clear: both; }
  .coupon-form .form-input,
  .coupon-form .button,
  .cart-gift-certificate-form .form-input,
  .cart-gift-certificate-form .button {
    float: left; }
  .coupon-form .form-input,
  .cart-gift-certificate-form .form-input {
    width: 78%; }
  .coupon-form .button,
  .cart-gift-certificate-form .button {
    margin: 0 0 0 2%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 20%; }

.estimator-form {
  margin-bottom: 0; }
  .estimator-form .form-input {
    margin-bottom: 0.75rem;
    width: 100%; }
  .estimator-form .button--primary {
    width: 60%; }

.estimator-form-label {
  clear: both;
  float: left;
  font-weight: 400;
  margin-bottom: 0; }
  .estimator-form-label .form-label {
    line-height: 2.66667rem;
    margin-bottom: 0; }

.estimator-form-label-text {
  margin-left: 0.83333rem; }

.estimator-form-input {
  float: right;
  margin-bottom: 1em;
  width: 60%; }
  .estimator-form-input .form-input,
  .estimator-form-input .form-select {
    margin-bottom: 0; }

.estimator-form-input--price {
  width: 30%; }

.estimator-form-row:before, .estimator-form-row:after {
  content: " ";
  display: table; }

.estimator-form-row:after {
  clear: both; }

.estimator-form-toggleUPSRate {
  display: block;
  margin-bottom: 1em; }

.cart-actions {
  clear: both; }
  .cart-actions:before, .cart-actions:after {
    content: " ";
    display: table; }
  .cart-actions:after {
    clear: both; }
  .cart-actions .button {
    display: block;
    margin-bottom: 0; }
    @media (min-width: 641px) {
      .cart-actions .button {
        display: inline-block;
        float: right; } }
  .cart-actions .checkoutMultiple {
    clear: right;
    display: block;
    float: right;
    padding-top: 0.41667rem; }

.cart-additionalCheckoutButtons:before, .cart-additionalCheckoutButtons:after {
  content: " ";
  display: table; }

.cart-additionalCheckoutButtons:after {
  clear: both; }

.cart-additionalCheckoutButtons .FloatRight:before, .cart-additionalCheckoutButtons .FloatRight:after {
  content: " ";
  display: table; }

.cart-additionalCheckoutButtons .FloatRight:after {
  clear: both; }

.cart-additionalCheckoutButtons .FloatRight p {
  float: none !important;
  margin: 0.5rem 0;
  text-align: right; }

.cart-additionalCheckoutButtons .FloatRight div {
  float: right; }

.cart-additionalCheckoutButtons .CheckoutButton {
  margin-bottom: 1rem; }
  .cart-additionalCheckoutButtons .CheckoutButton:first-child {
    margin-top: 1.5rem; }
  .cart-additionalCheckoutButtons .CheckoutButton:last-child {
    margin-bottom: 1.5rem; }

.previewCartList {
  list-style: none;
  margin-left: 0;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  display: table;
  table-layout: fixed;
  width: 100%; }
  .previewCartList ul,
  .previewCartList ol {
    list-style: none;
    margin-bottom: 0; }
  .previewCartList li {
    margin: 0;
    padding: 0; }

.previewCartItem {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  display: table-row;
  line-height: 19px; }
  .previewCartItem:before, .previewCartItem:after {
    content: " ";
    display: table; }
  .previewCartItem:after {
    clear: both; }
  .previewCartItem + .previewCartItem {
    border-top: 1px solid #ebebeb; }

.previewCartItem-image,
.previewCartItem-content {
  display: table-cell;
  vertical-align: middle; }

.previewCartItem-image {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 33.33333%;
  padding: 0;
  text-align: center;
  position: relative; }
  .previewCartItem-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
  .previewCartItem-image:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.previewCartItem-content {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 66.66667%;
  padding-left: 0; }

.previewCartItem-name {
  margin: 0;
  text-transform: none; }
  .previewCartItem-name > a {
    text-decoration: none; }

.previewCartItem-brand,
.previewCartItem-name {
  margin-bottom: 0.16667rem; }

.previewCartItem-brand,
.previewCartItem-price {
  color: #373737;
  display: inline-block;
  font-size: 12px; }

.previewCartAction {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  border-top: 1px solid #ebebeb;
  display: block;
  padding: 1.5rem 0.75rem; }
  .previewCartAction:before, .previewCartAction:after {
    content: " ";
    display: table; }
  .previewCartAction:after {
    clear: both; }
  .previewCartAction .button {
    margin: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%; }

.previewCartAction-checkout,
.previewCartAction-viewCart {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 50%;
  float: left; }
  .previewCartAction-checkout.previewCartAction-viewCart--sole,
  .previewCartAction-viewCart.previewCartAction-viewCart--sole {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 50%;
    float: left;
    margin-left: auto;
    margin-right: auto;
    float: none; }

.previewCartAction-checkout {
  padding-right: 0.41667rem; }

.previewCartAction-checkoutMultiple {
  clear: both;
  padding-left: 0.75rem;
  padding-top: 0.41667rem; }

.previewCartAction-viewCart {
  padding-left: 0.41667rem; }

.previewCart-emptyBody {
  padding: 3rem;
  text-align: center; }

.addressList {
  font-size: 0;
  list-style: none;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }

.address {
  display: inline-block;
  padding: 0 0.75rem;
  vertical-align: top;
  width: 100%; }
  @media (min-width: 641px) {
    .address {
      width: 50%; } }
  @media (min-width: 1261px) {
    .address {
      width: 33.33333%; } }

.panel--address {
  font-size: 1rem;
  position: relative; }
  .panel--address .panel-body {
    min-height: 20.83333rem;
    padding: 1.5rem; }
    @media (min-width: 641px) {
      .panel--address .panel-body {
        padding: 1.5rem 1.5rem 4.5rem; } }
  .panel--address .form-actions {
    margin-bottom: -0.75rem;
    margin-top: 1.5rem;
    text-align: left; }
    @media (min-width: 641px) {
      .panel--address .form-actions {
        bottom: 1.5rem;
        position: absolute;
        width: auto; } }
    .panel--address .form-actions .button {
      margin-bottom: 0.75rem; }
      .panel--address .form-actions .button + .button {
        margin-left: 0;
        margin-top: 0; }
        @media (min-width: 641px) {
          .panel--address .form-actions .button + .button {
            margin-left: 0.41667rem; } }

.address-title {
  margin: 0 0 0.75rem;
  text-transform: none; }

.address-details {
  list-style: none;
  margin: 0 0 0.75rem; }

.address-details--postal {
  font-size: 13px; }

.address-label,
.address-description {
  display: inline-block;
  font-size: 1rem;
  margin: 0; }

.address-label {
  color: #373737;
  font-weight: 400; }

.panel--newAddress {
  display: block;
  text-align: center;
  text-decoration: none; }
  .panel--newAddress:hover .address-title {
    color: #373737; }
  .panel--newAddress .panel-body {
    background-color: transparent;
    border: 1px solid #ebebeb;
    display: block; }
  .panel--newAddress .address-title {
    margin-bottom: 0;
    transition: all 0.15s ease; }

.address-addNew {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-55%); }

.address-symbol {
  font-size: 50px;
  line-height: 1; }

.videoGallery-main {
  height: 0;
  margin-bottom: 1.33333rem;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 2.08333rem;
  position: relative;
  margin-bottom: 1.91667rem; }
  .videoGallery-main.widescreen {
    padding-bottom: 56.34%; }
  .videoGallery-main.vimeo {
    padding-top: 0; }
  .videoGallery-main iframe,
  .videoGallery-main object,
  .videoGallery-main embed,
  .videoGallery-main video {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0; }

.videoGallery-list {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .videoGallery-list ul,
  .videoGallery-list ol {
    list-style: none;
    margin-bottom: 0; }
  .videoGallery-list:before, .videoGallery-list:after {
    content: " ";
    display: table; }
  .videoGallery-list:after {
    clear: both; }

.videoGallery-item {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  display: inline-block;
  float: none;
  vertical-align: top; }
  @media (min-width: 801px) {
    .videoGallery-item {
      width: 50%; } }

.video {
  display: block;
  margin-bottom: 1.91667rem;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 100ms ease-out; }
  .video:before, .video:after {
    content: " ";
    display: table; }
  .video:after {
    clear: both; }
  .video-figure {
    float: left;
    margin-right: 0.75rem; }
    .video-figure > img {
      display: block; }
  .video-figure--opposite {
    float: right;
    margin-left: 0.75rem;
    margin-right: 0; }
  .video-body:before, .video-body:after {
    content: " ";
    display: table; }
  .video-body:after {
    clear: both; }
  @media (min-width: 801px) {
    .video {
      margin-bottom: 1.91667rem; } }
  .video:hover, .video.is-active {
    color: #373737;
    opacity: 1; }

.video-figure {
  margin-right: 1.91667rem; }

.video-title {
  margin-bottom: 0;
  margin-top: 0;
  text-transform: none; }

.video-description {
  font-size: 1rem;
  margin-bottom: 0; }

.previewCart {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%; }
  .previewCart:before, .previewCart:after {
    content: " ";
    display: table; }
  .previewCart:after {
    clear: both; }
  @media (min-width: 801px) {
    .previewCart .productView {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 75%;
      float: left;
      display: flex;
      margin: 0;
      padding-bottom: 0;
      padding-top: 0; }
    .previewCart .productView-image {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 58.33333%;
      float: left;
      display: flex;
      flex-direction: column; }
    .previewCart .productView-image--cart {
      align-self: flex-start;
      margin: 0 auto;
      width: auto; }
    .previewCart .productView-details {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 41.66667%;
      float: left; } }
  .previewCart .productView-title {
    margin-top: 0; }

.previewCartCheckout {
  background: #e5e5e5;
  padding: 1rem;
  text-align: center; }
  @media (min-width: 801px) {
    .previewCartCheckout {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 25%;
      float: right;
      padding: 1.5rem; } }
  .previewCartCheckout .button {
    display: block;
    margin: 0;
    width: 100%; }
    .previewCartCheckout .button + .button,
    .previewCartCheckout .button + p {
      margin-top: 0.75rem; }

.previewCartCheckout-price {
  display: block;
  font-size: 28px;
  font-weight: bold;
  text-align: center; }

.previewCartCheckout-subtotal {
  display: block;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem; }

.previewCartCheckout-additionalCheckoutButtons p {
  float: none !important;
  margin: 0.5rem 0; }

.previewCartCheckout-additionalCheckoutButtons .CheckoutButton {
  margin-bottom: 1rem; }
  .previewCartCheckout-additionalCheckoutButtons .CheckoutButton:first-child {
    margin-top: 1.5rem; }
  .previewCartCheckout-additionalCheckoutButtons .CheckoutButton:last-child {
    margin-bottom: 1.5rem; }

.suggestiveCart {
  display: none;
  text-align: center; }
  @media (min-width: 801px) {
    .suggestiveCart {
      display: block; } }

.maintenanceNotice {
  background-color: #fffdea;
  box-shadow: 0 0 5px #999999;
  color: #373737;
  left: 1.16667rem;
  padding: 1rem 1.33333rem;
  position: fixed;
  top: 1.16667rem;
  width: 24rem;
  z-index: 500; }
  .maintenanceNotice > :last-child {
    margin-bottom: 0; }
  .maintenanceNotice a {
    color: #373737; }

.maintenanceNotice-header {
  font-family: "Work Sans";
  margin: 0 0 0.75rem; }

body.hasAdminBar {
  padding-top: 101px; }
  @media (min-width: 801px) {
    body.hasAdminBar {
      padding-top: 0; }
      body.hasAdminBar .banners {
        margin-top: 46px; }
      body.hasAdminBar .header {
        padding-top: 0; } }
  body.hasAdminBar .header {
    padding-top: 46px; }
  body.hasAdminBar .navPages-container.is-open {
    padding-top: 101px; }

.adminBar {
  background-color: white;
  box-shadow: 0 0.16667rem 0.58333rem 0 rgba(0, 0, 0, 0.2);
  color: #626568;
  float: left;
  font-family: "Source Sans Pro", arial, "sans serif", sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 46px;
  left: 0;
  position: fixed;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 10000; }

.adminBar-logo {
  background-color: #273a8a;
  float: left;
  height: 46px;
  width: 45px; }
  .adminBar-logo svg {
    height: 100%;
    padding: 7px 10px 11px 7px;
    width: 100%; }

.adminBar-content {
  align-items: center;
  display: flex;
  height: 46px;
  justify-content: space-between;
  margin-left: 45px;
  padding: 17px 20.5px 14px 20px; }
  .adminBar-content a {
    color: #4b71fc;
    font-weight: 600;
    text-decoration: none; }

.adminBar-private {
  float: right;
  text-align: right; }
  .adminBar-private span {
    white-space: nowrap; }

.preview {
  font-weight: 400;
  padding-left: 9px; }

.cookieMessage {
  background: #e5e5e5;
  color: #373737;
  display: none; }
  .cookieMessage .button {
    width: 100%; }
    @media (min-width: 801px) {
      .cookieMessage .button {
        vertical-align: middle;
        width: 25%; } }
    @media (min-width: 1261px) {
      .cookieMessage .button {
        vertical-align: top; } }

.cookieMessage-container {
  margin: 0 auto;
  padding: 1.5rem; }
  @media (min-width: 801px) {
    .cookieMessage-container {
      width: 83.33333%; } }
  @media (min-width: 1261px) {
    .cookieMessage-container {
      width: 58.33333%; } }

@media (min-width: 801px) {
  .cookieMessage-text {
    display: inline-block;
    padding: 0 0.75rem;
    vertical-align: middle;
    width: 66.66667%; } }

.login {
  margin: 3rem auto 6rem;
  max-width: 75rem; }

.login-row {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%; }
  .login-row:before, .login-row:after {
    content: " ";
    display: table; }
  .login-row:after {
    clear: both; }
  @media (min-width: 801px) {
    .login-row {
      margin-top: 6rem; } }

.login-form {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }
  @media (min-width: 801px) {
    .login-form {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 50%;
      float: left;
      margin-top: 3rem; } }

.new-customer {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }
  @media (min-width: 801px) {
    .new-customer {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 50%;
      float: left; } }

.new-customer-intro {
  margin-bottom: 0; }

.new-customer-fact-list {
  margin-left: 3rem; }

.new-customer-fact {
  padding-left: 0.75rem; }

.search-suggestion {
  margin-bottom: 2rem; }
  .search-suggestion > :last-child {
    margin-bottom: 0; }

.suggestion-title {
  margin-top: 0;
  text-transform: inherit; }

.advancedSearch-form {
  margin-bottom: 3rem; }
  .advancedSearch-form .form-row {
    margin-bottom: -1.5rem; }

.quickSearchResults {
  margin-top: 1.5rem; }
  @media (min-width: 801px) {
    .quickSearchResults {
      margin-top: 0; } }
  .quickSearchResults .modal-close {
    display: none; }
    @media (min-width: 801px) {
      .quickSearchResults .modal-close {
        display: block; } }

.advancedSearch-separator {
  display: none; }

.advancedSearch-title {
  margin: 0 0 1.5rem;
  text-transform: inherit; }

.search-price-range label {
  display: inline; }
  .search-price-range label input {
    display: block;
    padding-left: 1.5rem; }
    @media (min-width: 641px) {
      .search-price-range label input {
        display: inline;
        width: 6rem; } }
  @media (min-width: 641px) {
    .search-price-range label span {
      display: inline;
      padding-left: 1.5rem;
      padding-right: 1.5rem; } }

.category-suggestion-list {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  list-style-type: none; }
  .category-suggestion-list:before, .category-suggestion-list:after {
    content: " ";
    display: table; }
  .category-suggestion-list:after {
    clear: both; }

.category-suggestion {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 33.33333%;
  float: left;
  font-size: 13px; }

.search-refine {
  margin-left: 1.5rem; }

.quickSearchMessage {
  font-size: 28px;
  margin: 1.5rem 0 0;
  text-align: center; }

.navBar--account {
  display: none; }
  @media (min-width: 801px) {
    .navBar--account {
      display: block; } }

.account-heading {
  border-bottom: 1px solid #ebebeb;
  margin: 0;
  padding-bottom: 1rem; }

.account-list {
  list-style: none;
  margin-left: 0; }

.account-listItem {
  border-bottom: 1px solid #ebebeb;
  padding: 1.5rem 0;
  position: relative; }
  .account-listItem img {
    width: 100%; }
  .account-listItem .account-product-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: relative; }

.account-listShipping {
  border-bottom: 1px solid #ebebeb;
  font-weight: 700;
  padding: 2rem 0; }
  .account-listShipping .account-listShipping-title {
    margin: 0;
    text-transform: inherit; }

.account-product:before, .account-product:after {
  content: " ";
  display: table; }

.account-product:after {
  clear: both; }

.account-product-figure {
  float: left;
  margin-right: 0.75rem; }
  .account-product-figure > img {
    display: block; }

.account-product-figure--opposite {
  float: right;
  margin-left: 0.75rem;
  margin-right: 0; }

.account-product-body:before, .account-product-body:after {
  content: " ";
  display: table; }

.account-product-body:after {
  clear: both; }

.account-product-figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 2rem 0 0;
  position: relative;
  width: 70px; }
  .account-product-figure:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.account-product-download {
  border-radius: 50%;
  height: 2.75rem;
  padding: 0;
  position: absolute;
  right: -0.75rem;
  top: -0.75rem;
  width: 2.75rem;
  z-index: 1; }
  .account-product-download .icon {
    height: 1.5rem;
    margin-top: 0.41667rem;
    width: 1.5rem; }
  .account-product-download svg {
    fill: white; }

.account-product-body {
  overflow: hidden;
  padding-bottom: 3.5rem;
  position: relative; }
  @media (min-width: 641px) {
    .account-product-body {
      padding-bottom: 0; } }
  .account-product-body .definitionList {
    font-size: 13px;
    margin-bottom: 0; }

.account-product-title {
  margin: 0 0 0.16667rem;
  text-transform: inherit; }
  .account-product-title > a {
    text-decoration: none; }
  .account-product-title + .definitionList {
    margin-top: 0.75rem; }

.account-product-subtitle {
  color: #999999;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  margin: -0.16667rem 0 1rem;
  text-transform: inherit; }

.account-product-price {
  float: right;
  font-size: 13px; }

.account-product-description + .definitionList {
  margin: -1.41667rem 0 1.5rem; }

.account-product-refundQty {
  color: #999999;
  margin-bottom: 0; }

.account-product-details {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto; }
  .account-product-details:before, .account-product-details:after {
    content: " ";
    display: table; }
  .account-product-details:after {
    clear: both; }

.account-product-detail {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }
  @media (min-width: 641px) {
    .account-product-detail {
      width: 33.33333%; } }
  @media (min-width: 1261px) {
    .account-product-detail {
      width: 25%; } }
  .account-product-detail + .account-product-detail {
    margin-top: 1rem; }
    @media (min-width: 641px) {
      .account-product-detail + .account-product-detail {
        margin-top: 0; } }
  @media (min-width: 641px) {
    .account-product-detail + .account-product-detail--full {
      margin-top: 1.5rem; } }

@media (min-width: 1261px) {
  .account-product-detail--large {
    width: 50%; } }

.account-product-detail--full {
  width: 100%; }

.account-product-detail-heading {
  color: #373737;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 10px;
  margin: 0 0 0.41667rem; }

.account-product--alignMiddle {
  display: table;
  width: 100%; }
  .account-product--alignMiddle .account-product-checkItem {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 2rem; }
    @media (min-width: 1261px) {
      .account-product--alignMiddle .account-product-checkItem {
        left: -2.5rem; } }
    .account-product--alignMiddle .account-product-checkItem .form-label {
      height: 1.5rem;
      margin: 0;
      padding: 0;
      width: 1.5rem; }
  .account-product--alignMiddle .account-product-figure,
  .account-product--alignMiddle .account-product-body {
    display: table-cell; }
  .account-product--alignMiddle .account-product-figure {
    float: none;
    margin-right: 0; }
    @media (min-width: 1261px) {
      .account-product--alignMiddle .account-product-figure {
        left: -2rem; } }
  .account-product--alignMiddle .account-product-body {
    padding-left: 2rem;
    vertical-align: middle; }
    @media (min-width: 1261px) {
      .account-product--alignMiddle .account-product-body {
        padding-left: 0; } }

.account-orderTotal {
  float: right;
  font-size: 13px;
  margin-top: -1.5rem;
  width: 66.66667%; }

.account-orderTotal-key,
.account-orderTotal-value {
  margin: 0;
  padding: 1.5rem 0; }

.account-orderTotal-key {
  color: #373737;
  float: left;
  font-weight: 400; }
  .account-orderTotal-key:last-of-type {
    position: relative;
    top: 0.33333rem; }

.account-orderTotal-value {
  border-bottom: 1px solid #ebebeb;
  text-align: right; }
  .account-orderTotal-value:last-child {
    border-bottom: 0;
    font-size: 16px; }

.account-orderStatus {
  bottom: 0;
  left: 0;
  position: absolute; }
  @media (min-width: 641px) {
    .account-orderStatus {
      float: right;
      position: inherit;
      text-align: right; } }

.account-orderStatus-label {
  background-color: dimgray;
  color: white;
  display: inline-block;
  font-size: 10px;
  line-height: 15px;
  margin: 0 0 0.41667rem;
  padding: 0.16667rem 0.5rem; }

.account-orderStatus-action {
  color: #373737;
  display: inline-block;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.25px;
  margin-left: 0.75rem;
  text-align: right;
  text-decoration: underline;
  vertical-align: top; }
  @media (min-width: 641px) {
    .account-orderStatus-action {
      display: block;
      margin-left: 0; } }
  .account-orderStatus-action:hover {
    color: dimgray; }

.account .pagination {
  color: #999999;
  margin-top: 3rem;
  text-align: center; }

.account-message .is-read {
  color: #999999; }

.account-sidebar-block {
  font-size: 13px; }
  .account-sidebar-block + .account-sidebar-block {
    margin-top: 3rem; }
  .account-sidebar-block .account-heading {
    margin-bottom: 1.5rem; }

.account-order-address {
  list-style: none;
  margin-left: 0; }
  .account-order-address ul,
  .account-order-address ol {
    list-style: none;
    margin-bottom: 0; }

.account-reorder-form {
  display: inline-block; }

.order-payments-description {
  color: #757575;
  font-weight: 400;
  margin-top: 1.5rem; }

.account-downloads-summary {
  border-bottom: 1px solid #ebebeb;
  font-size: 13px;
  padding-bottom: 1.5rem; }

.account-downloadsList {
  list-style: none;
  margin-left: 0; }
  .account-downloadsList ul,
  .account-downloadsList ol {
    list-style: none;
    margin-bottom: 0; }

.account-downloadsItem {
  margin-bottom: 1.5rem; }
  .account-downloadsItem > :first-child {
    margin-top: 0; }
  .account-downloadsItem > :last-child {
    margin-bottom: 0; }

.account-downloadsItem-title {
  color: #373737;
  font-size: 13px;
  margin-bottom: 0.16667rem;
  text-transform: inherit; }

.account-downloadsItem-description {
  margin-bottom: 0; }

.account-downloadsItem-availability {
  color: #373737; }

.wishlists-table {
  margin-left: auto;
  margin-right: auto;
  max-width: 150rem; }

.wishlist-header {
  display: none;
  text-align: center; }

.modal .wishlist-header {
  display: block; }

.wishlist-form {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 45.83333rem; }
  .wishlist-form:before, .wishlist-form:after {
    content: " ";
    display: table; }
  .wishlist-form:after {
    clear: both; }
  .wishlist-form .form-field {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    float: left; }

.share-wishlist {
  margin-left: auto;
  margin-right: auto;
  max-width: 54.16667rem;
  text-align: center; }

.icon--ratingEmpty svg {
  fill: #ebebeb; }

.icon--ratingFull svg {
  fill: #373737; }

.rating--small {
  display: inline-block; }
  .rating--small .icon {
    height: 1.16667rem;
    width: 1.16667rem;
    margin-top: -3px; }

.apple-pay-checkout-button {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 60%;
  border-radius: 0.33333rem;
  cursor: pointer;
  display: none;
  max-height: 5.33333rem;
  min-height: 2.66667rem;
  min-width: 11.16667rem;
  padding: 1.5rem;
  background-color: #000;
  background-image: -webkit-named-image(apple-pay-logo-white); }

.cart-additionalCheckoutButtons .apple-pay-checkout-button {
  margin-top: 0.75rem; }

.apple-pay-supported .apple-pay-checkout-button {
  display: block; }
  @media (min-width: 641px) {
    .apple-pay-supported .apple-pay-checkout-button {
      display: inline-block;
      float: right; } }

.previewCartCheckout .apple-pay-checkout-button {
  float: none;
  margin-top: 0.75rem; }

.paymentMethodList {
  font-size: 0;
  list-style: none;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }

.paymentMethodName {
  margin-top: 0;
  padding: 0 0.75rem;
  text-transform: none; }

.paymentMethod {
  display: inline-block;
  padding: 0 0.75rem;
  vertical-align: top;
  width: 100%; }
  @media (min-width: 641px) {
    .paymentMethod {
      width: 50%; } }

@media (min-width: 641px) {
  .paymentMethodForm {
    max-width: 60%; }
    .paymentMethodForm .paymentMethodForm-column {
      display: flex; }
      .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:first-child {
        width: 70%; }
      .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:last-child {
        padding-left: 1.5rem;
        width: 30%; }
    .paymentMethodForm .paymentMethodForm-column:first-child .form-field {
      margin-bottom: 0.75rem; } }

.panel--paymentMethod {
  font-size: 1rem;
  position: relative; }
  .panel--paymentMethod .panel-body {
    border: 1px solid #ebebeb;
    min-height: 19rem;
    padding: 0; }
  .panel--paymentMethod .form-actions {
    font-size: 0;
    margin-top: 0;
    text-align: left; }
    .panel--paymentMethod .form-actions .button {
      margin-top: 0; }

.paymentMethod-card,
.paymentMethod-details {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 0; }

.paymentMethod-card {
  align-items: center;
  background: white;
  padding: 0.75rem; }
  @media (min-width: 1261px) {
    .paymentMethod-card {
      padding: 1.5rem; } }

.paymentMethod-icon {
  margin-right: 0.75rem;
  width: 2.33333rem; }
  @media (min-width: 1261px) {
    .paymentMethod-icon {
      width: 3.5rem; } }

.paymentMethod-brand {
  font-size: 12px;
  font-weight: 600; }
  @media (min-width: 1261px) {
    .paymentMethod-brand {
      font-size: 1rem; } }

.paymentMethod-default {
  margin-left: 0.75rem; }
  .paymentMethod-default.icon {
    fill: dimgray;
    height: 1.5rem;
    width: 1.5rem; }
    @media (min-width: 1261px) {
      .paymentMethod-default.icon {
        height: 1.66667rem;
        width: 1.66667rem; } }

.paymentMethod-expiry {
  font-size: 13px;
  margin-left: auto;
  text-transform: capitalize; }

.paymentMethod-details {
  padding: 1.5rem; }

.paymentMethod-label,
.paymentMethod-description {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 0.75rem; }

.paymentMethod-label {
  flex: 8.33333rem;
  font-weight: 600; }

.paymentMethod-description {
  flex: calc(100% - 100px);
  padding-left: 0.75rem; }

.paymentMethod-form {
  padding: 0 1.5rem 0.75rem; }
  @media (min-width: 641px) {
    .paymentMethod-form {
      bottom: 0.75rem;
      position: absolute;
      width: auto; } }

.panel--newPaymentMethod {
  display: block;
  text-align: center;
  text-decoration: none; }
  .panel--newPaymentMethod:hover .paymentMethod-title {
    color: #373737; }
  .panel--newPaymentMethod .panel-body {
    background-color: transparent; }
  .panel--newPaymentMethod .paymentMethod-title {
    margin-bottom: 0;
    text-transform: none;
    transition: all 0.15s ease; }

.paymentMethod-addNew {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-55%); }

.paymentMethod-symbol {
  font-size: 50px;
  line-height: 1; }

.paymentMethodForm-heading {
  color: #373737;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin-top: 1.5rem;
  text-transform: capitalize; }

.paymentMethodForm-subheading {
  display: flex;
  font-weight: 600; }

@media (min-width: 641px) {
  .paymentMethodForm-cards {
    margin-left: auto; } }

.paymentMethodForm-cards-icon {
  margin-right: 0.16667rem;
  width: 2.83333rem; }

.paymentMethodForm-inputs {
  position: relative; }

.paymentMethodForm-inputs-icon {
  position: absolute;
  right: 0.75rem;
  top: 3.25rem; }
  .paymentMethodForm-inputs-icon.icon {
    fill: #999999;
    height: 1.75rem;
    width: 1.75rem; }

.paymentMethodForm-details {
  margin-bottom: 0; }
  @media (min-width: 641px) {
    .paymentMethodForm-details {
      display: inline-block;
      margin: 0 3rem 0 0; } }

.paymentMethodForm-details-term {
  font-weight: 400;
  margin-bottom: 0.75rem; }

.paymentMethodForm-details-description {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25px; }

.header {
  background-color: white;
  border-bottom: 1px solid #ebebeb;
  height: 55px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20; }
  @media (min-width: 801px) {
    .header {
      border-bottom: 1px solid #ebebeb;
      overflow: visible;
      position: relative;
      height: auto; } }
  .header.is-open {
    height: 100%; }
    @media (min-width: 801px) {
      .header.is-open {
        height: auto; } }

.header-logo {
  font-size: 0;
  height: 55px;
  margin: 0 4.58333rem;
  text-align: center; }
  @media (min-width: 641px) {
    .header-logo {
      margin-left: 6.875rem;
      margin-right: 6.875rem; } }
  @media (min-width: 801px) {
    .header-logo {
      margin: 4rem auto 4.5rem;
      padding: 0; }
      .header.fixed .header-logo {
        background-color: #e5e5e5;
        margin: 0;
        padding: 0.41667rem 0;
        position: absolute;
        top: 0;
        width: 100%; } }
  .header-logo > a {
    align-items: center;
    color: #050505;
    display: flex;
    height: inherit;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 50; }
    .header-logo > a:before, .header-logo > a:after {
      content: " ";
      display: table; }
    .header-logo > a:after {
      clear: both; }
    @media (min-width: 801px) {
      .header-logo > a {
        background: none;
        border-bottom: 0;
        display: inline-flex;
        padding: 0;
        width: auto; } }
    .header-logo > a:hover {
      color: #373737; }
    .header-logo > a:active {
      color: #373737; }

@media (min-width: 801px) {
  .header-logo--left {
    margin-left: 3.33333rem;
    text-align: left; } }

.header-logo--left .header-logo-image {
  right: unset; }

@media (min-width: 801px) {
  .header-logo--right {
    margin-right: 3.33333rem;
    text-align: right; } }

.header-logo--right .header-logo-image {
  left: unset; }

.header-logo-text {
  display: block;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.16667rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0.25rem 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap; }
  @media (min-width: 641px) {
    .header-logo-text {
      font-size: 22px;
      padding-bottom: 0;
      padding-top: 0; } }
  @media (min-width: 801px) {
    .header-logo-text {
      margin-left: 0;
      margin-right: -0.16667rem;
      max-width: none; } }
  @media (min-width: 1261px) {
    .header-logo-text {
      font-size: 28px; }
      .header.fixed .header-logo-text {
        font-size: 22px; } }

.header-logo-image-container {
  position: relative; }

.header-logo-image-container:after {
  content: '';
  display: block;
  padding-bottom: 3.08333rem; }
  @media (min-width: 801px) {
    .header-logo-image-container:after {
      padding-bottom: 50px; } }

.header-logo-image {
  max-height: 3.08333rem; }
  @media (min-width: 801px) {
    .header-logo-image {
      max-height: none;
      vertical-align: unset; } }

.header-logo-image-unknown-size {
  max-height: 3.08333rem; }
  @media (min-width: 801px) {
    .header-logo-image-unknown-size {
      max-height: none; } }

.mobileMenu-toggle {
  height: 4.58333rem;
  width: 4.58333rem;
  display: inline-block;
  font-size: 0;
  left: 0;
  overflow: hidden;
  padding-left: 1.5rem;
  position: absolute;
  z-index: 50; }
  @media (min-width: 801px) {
    .mobileMenu-toggle {
      display: none; } }
  .mobileMenu-toggle .mobileMenu-toggleIcon,
  .mobileMenu-toggle .mobileMenu-toggleIcon::before,
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    background: #373737;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform: rotate(0deg);
    transition: transform 100ms ease-in, top 100ms ease-in 150ms, bottom 100ms ease-in 150ms;
    width: 1.66667rem; }
  .mobileMenu-toggle .mobileMenu-toggleIcon {
    top: 2.25rem;
    transition: background-color 10ms ease-in 100ms; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::before {
    top: -0.5rem; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    bottom: -0.5rem; }
  .mobileMenu-toggle.is-open .mobileMenu-toggleIcon {
    background-color: transparent;
    transition-delay: 100ms; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before, .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      background-color: #373737;
      bottom: auto;
      top: auto;
      transition: transform 100ms ease-in 150ms, top 100ms ease-in, bottom 100ms ease-in; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before {
      top: 0;
      transform: rotate(45deg); }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      bottom: 0;
      transform: rotate(-45deg); }

.body {
  margin-bottom: 6rem;
  margin-top: 1.5rem; }
  @media (min-width: 801px) {
    .body {
      margin-top: 2.5rem; } }

.page {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto; }
  .page:before, .page:after {
    content: " ";
    display: table; }
  .page:after {
    clear: both; }

.page-content,
.page-content--full {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }

@media (min-width: 801px) {
  .page-content--centered {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 66.66667%;
    float: left;
    margin-left: auto;
    margin-right: auto;
    float: none; } }

.page-content--textCenter {
  text-align: center; }

.page-sidebar {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  position: relative; }
  @media (min-width: 801px) {
    .page-sidebar {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 25%;
      float: left; }
      .page-sidebar + .page-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 75%;
        float: left; } }

.footer {
  background-color: #ebebeb;
  border-top: 1px solid #ebebeb;
  padding: 3rem 0; }

.footer-info {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .footer-info:before, .footer-info:after {
    content: " ";
    display: table; }
  .footer-info:after {
    clear: both; }

.footer-info-col {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  color: #373737;
  display: inline-block;
  float: none;
  font-size: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  vertical-align: top; }
  @media (min-width: 641px) {
    .footer-info-col {
      text-align: left;
      width: 50%; } }
  @media (min-width: 801px) {
    .footer-info-col {
      width: 33.33334%; } }
  .footer-info-col > :first-child {
    margin-top: 0; }
  .footer-info-col > :last-child {
    margin-bottom: 0; }

@media (min-width: 801px) {
  .footer-info-col--small {
    width: 16.66667%; } }

.footer-info-col--social {
  width: 100%; }

@media (min-width: 641px) {
  .footer-info-col--left {
    padding: 0; } }

@media (min-width: 641px) {
  .footer-info-col--right {
    left: 50%;
    position: inherit; } }

@media (min-width: 801px) {
  .footer-info-col--right {
    left: 0;
    padding: 0;
    text-align: right; } }

.footer-info-heading {
  font-size: 1rem;
  text-transform: inherit; }

.footer-info-list {
  list-style: none;
  margin-left: 0; }
  .footer-info-list a {
    color: #373737;
    text-decoration: none; }
    .footer-info-list a:hover {
      color: dimgray; }

.footer-copyright {
  text-align: center; }
  @media (min-width: 641px) {
    .footer-copyright {
      text-align: left; } }
  .footer-copyright > .powered-by {
    color: #373737;
    font-size: 10px;
    margin: 0; }
  .footer-copyright a {
    color: #373737;
    text-decoration: none; }
    .footer-copyright a:hover {
      color: dimgray; }

.footer-payment-icons {
  height: 3.33333rem;
  margin-top: 1.5rem; }
  .footer-payment-icons .footer-payment-icon {
    height: 100%;
    margin: 0.41667rem;
    vertical-align: middle;
    width: 4.16667rem; }
  .footer-payment-icons svg {
    fill: #050505; }

@media (min-width: 641px) {
  .footer-geotrust-ssl-seal {
    bottom: 0;
    position: absolute;
    right: 16px; } }

.footer-geotrust-ssl-seal table {
  margin: auto; }

.footer-newsletter-summary {
  text-align: left; }

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 156rem;
  padding: 0 1.5rem;
  position: relative;
  width: 100%; }
  @media (min-width: 1261px) {
    .container {
      padding: 0 6rem; } }

.blog {
  margin-bottom: 1.5rem; }
  @media (min-width: 801px) {
    .blog {
      margin: auto;
      width: 100%; } }
  .blog + .blog {
    border-top: 1px solid #ebebeb;
    margin-top: 3rem;
    padding-top: 3rem; }
  .blog .tags {
    margin-top: 3rem;
    text-align: center; }
  .blog .socialLinks {
    text-align: center; }
  .blog .addthis_toolbox {
    margin-top: 3rem; }

.blog-title {
  font-size: 18px;
  margin: 0 1.5rem 0.41667rem; }
  .blog-title a {
    text-decoration: none; }

.blog-date,
.blog-author {
  color: #373737;
  text-align: center; }

.blog-author {
  margin-bottom: 2.5rem; }

.blog-post {
  text-align: left; }

.blog-thumbnail {
  margin: 0 auto 2rem;
  position: relative;
  max-width: 800px; }
  .blog-thumbnail img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
  .blog-thumbnail:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.blog-post-figure {
  display: block;
  margin: auto;
  text-align: center; }
  @media (min-width: 801px) {
    .blog-post-figure {
      width: 66.66667%; } }

.blog-post-body {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%; }
  @media (min-width: 641px) {
    .blog-post-body {
      width: 83.33333%; } }
  @media (min-width: 801px) {
    .blog-post-body {
      width: 66.66667%; } }
  @media (min-width: 1261px) {
    .blog-post-body {
      width: 50%; } }

.sidebarBlock + .sidebarBlock {
  border-top: 1px solid #ebebeb;
  margin-top: 2rem;
  padding-top: 2rem; }

.sidebarBlock-heading {
  margin-top: 0;
  text-transform: inherit; }

.brandGrid {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0;
  margin-bottom: 1.5rem; }
  .brandGrid ul,
  .brandGrid ol {
    list-style: none;
    margin-bottom: 0; }
  .brandGrid:before, .brandGrid:after {
    content: " ";
    display: table; }
  .brandGrid:after {
    clear: both; }
  .brandGrid .brand {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 50%;
    float: none;
    display: inline-block;
    font-size: 1rem;
    vertical-align: top; }
    @media (min-width: 641px) {
      .brandGrid .brand {
        width: 33.33333%; } }
    @media (min-width: 801px) {
      .brandGrid .brand {
        width: 25%; } }
    .brandGrid .brand .card-title {
      text-align: center; }

.brand-image-container {
  position: relative;
  max-width: 100px; }
  .brand-image-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
  .brand-image-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.brand .card-img-container {
  max-width: 300px; }
  .brand .card-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%; }

.productGrid {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0;
  margin-bottom: 1.5rem; }
  .productGrid ul,
  .productGrid ol {
    list-style: none;
    margin-bottom: 0; }
  .productGrid:before, .productGrid:after {
    content: " ";
    display: table; }
  .productGrid:after {
    clear: both; }
  .productGrid .product {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 50%;
    float: none;
    display: inline-block;
    font-size: 1rem;
    vertical-align: top; }
    @media (min-width: 641px) {
      .productGrid .product {
        width: 33.33333%; } }
    @media (min-width: 801px) {
      .productGrid .product {
        width: 25%; } }

@media (min-width: 641px) {
  .page-sidebar + .page-content .productGrid .product {
    width: 33.33333%; } }

.productMasonry {
  column-count: 2;
  column-fill: auto;
  column-gap: 1.66667rem;
  margin: 0 0 1.5rem;
  overflow: hidden; }
  @media (min-width: 641px) {
    .productMasonry {
      column-count: 3; } }
  @media (min-width: 801px) {
    .productMasonry {
      column-count: 4; } }
  .productMasonry .product {
    break-inside: avoid;
    page-break-inside: avoid;
    display: block;
    margin-bottom: 3rem;
    padding: 0;
    width: 100%; }
  .productMasonry .card {
    margin: 0; }

@media (min-width: 801px) {
  .no-csscolumns .productGrid--maxCol6 .product {
    width: 16.66667%; } }

@media (min-width: 801px) {
  .csscolumns .productGrid--maxCol6 {
    column-count: 6; } }

@media (min-width: 801px) {
  .no-csscolumns .productGrid--maxCol3 .product {
    width: 33.33333%; } }

@media (min-width: 801px) {
  .csscolumns .productGrid--maxCol3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    float: left;
    float: none; }
    .csscolumns .productGrid--maxCol3 .product {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 33.33333%;
      float: none; } }

.productList {
  list-style: none;
  margin-left: 0;
  margin: 0.75rem; }
  .productList ul,
  .productList ol {
    list-style: none;
    margin-bottom: 0; }
  .productList .product + .product {
    margin-top: 4rem; }

@media (min-width: 641px) {
  .listItem {
    margin: 0 -0.75rem;
    max-width: none;
    width: auto;
    display: table; }
    .listItem:before, .listItem:after {
      content: " ";
      display: table; }
    .listItem:after {
      clear: both; } }

@media (min-width: 641px) {
  .listItem-figure,
  .listItem-body {
    display: table-cell;
    vertical-align: top; } }

@media (min-width: 1261px) {
  .listItem-figure,
  .listItem-body {
    vertical-align: middle; } }

.listItem-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #050505; }
  .listItem-button:hover {
    background-color: white;
    color: #050505; }

.listItem-figure {
  margin: 0 0 1.5rem; }
  @media (min-width: 641px) {
    .listItem-figure {
      margin-bottom: 0;
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      width: 25%; } }
  @media (min-width: 1261px) {
    .listItem-figure {
      position: relative; } }
  .listItem-figure .listItem-button {
    margin: 1.5rem 0; }
    @media (min-width: 1261px) {
      .listItem-figure .listItem-button {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        margin: 0 0 1.5rem;
        pointer-events: all;
        transform-style: preserve-3d; } }

.listItem-figureBody {
  opacity: 1;
  text-align: center; }
  @media (min-width: 1261px) {
    .listItem-figureBody {
      bottom: 0;
      height: 100%;
      left: 0.75rem;
      opacity: 0;
      position: absolute;
      right: 0.75rem;
      top: 0; }
      .listItem-figureBody:hover {
        opacity: 1; } }

.listItem-image {
  width: 100%; }

@media (min-width: 641px) {
  .listItem-body {
    padding-left: 1.25rem;
    padding-right: 0.75rem;
    width: 75%; } }

@media (min-width: 1261px) {
  .listItem-content {
    display: table; } }

@media (min-width: 1261px) {
  .listItem-details,
  .listItem-actions {
    display: table-cell;
    vertical-align: top; } }

@media (min-width: 1261px) {
  .listItem-details {
    padding-right: 6rem; }
    .listItem-details > :last-child {
      margin-bottom: 0; } }

.listItem-rating {
  margin-bottom: 0.41667rem; }

.listItem-brand {
  color: #999999;
  font-size: 1rem;
  margin: 0 0 0.16667rem; }
  @media (min-width: 801px) {
    .listItem-brand {
      font-size: 13px;
      margin-bottom: 0; } }

.listItem-title {
  font-size: 13px;
  margin: 0 0 0.16667rem; }
  @media (min-width: 801px) {
    .listItem-title {
      font-size: 16px; } }
  .listItem-title > a {
    text-decoration: none; }

.listItem-price {
  margin-bottom: 1rem; }
  @media (min-width: 801px) {
    .listItem-price {
      font-size: 16px; } }

@media (min-width: 1261px) {
  .listItem-actions {
    vertical-align: middle;
    width: 22%; }
    .listItem-actions .button--compare {
      font-size: 12px;
      padding: 0.58333rem 1.5rem; } }

.listItem-actions .button {
  margin-bottom: 0; }
  @media (min-width: 1261px) {
    .listItem-actions .button {
      width: 100%; }
      .listItem-actions .button + .button {
        margin: 0.75rem 0 0; } }

@media (min-width: 1261px) {
  .page-sidebar + .page-content .productList .listItem-details {
    padding-right: 3rem; } }

@media (min-width: 1261px) {
  .page-sidebar + .page-content .productList .listItem-actions {
    width: 30%; } }

.productView {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  margin-left: -1rem;
  margin-right: -1rem; }
  .productView:before, .productView:after {
    content: " ";
    display: table; }
  .productView:after {
    clear: both; }
  .modal .productView {
    padding-bottom: 0;
    padding-top: 0; }

.productView--quickView .socialLinks-item--print {
  display: none; }

.productView-images {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem; }
  @media (min-width: 801px) {
    .productView-images {
      width: 50%; } }

.productView-details {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem; }
  @media (min-width: 801px) {
    .productView-details {
      clear: right;
      float: right;
      width: 50%; } }

.productView-description {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left;
  padding-left: 1rem;
  padding-right: 1rem; }
  @media (min-width: 1261px) {
    .productView-description {
      clear: right;
      float: right;
      width: 50%; } }
  .productView-description .productView-title {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; }
  @media (min-width: 801px) {
    .productView-description .productView-description {
      clear: both;
      float: none;
      width: 100%; } }

.sale-flag-star,
.sale-flag-star:before,
.sale-flag-star:after {
  background: #007dc6;
  content: "";
  display: block;
  height: 4.16667rem;
  left: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  transform: scaleX(1) scaleY(1) scaleZ(1);
  transform-origin: 50% 50% 0;
  width: 4.16667rem;
  z-index: 10; }

.sale-flag-star:before {
  transform: rotateZ(30deg) scaleX(1) scaleY(1) scaleZ(1); }

.sale-flag-star:after {
  transform: rotateZ(60deg) scaleX(1) scaleY(1) scaleZ(1); }

.starwrap {
  height: 4.16667rem;
  position: absolute;
  top: 10px;
  width: 4.16667rem; }

.sale-text-burst {
  color: white;
  font-weight: 600;
  line-height: 1.25rem;
  position: absolute;
  text-align: center;
  top: 20%;
  width: 4.16667rem;
  z-index: 50; }

.sale-flag-side {
  background: #007dc6;
  border-radius: 0 50px 50px 0;
  color: white;
  font-size: 15px;
  font-weight: 700;
  height: 1.66667rem;
  line-height: 1.33333rem;
  padding-left: 0.5rem;
  padding-right: 0.75rem;
  padding-top: 0.08333rem;
  position: absolute;
  transition: 800ms ease;
  z-index: 10; }

.product:hover .sale-flag-side {
  background: black;
  transition: 800ms ease; }

.sale-flag-sash {
  background: #007dc6;
  color: white;
  font-size: 15px;
  font-weight: 700;
  height: 1.66667rem;
  left: -35px;
  line-height: 1.33333rem;
  padding-top: 0.08333rem;
  position: absolute;
  text-align: center;
  top: 25px;
  transform: rotate(-45deg);
  transition: 800ms ease;
  width: 9.91667rem;
  z-index: 10; }

.product:hover .sale-flag-sash {
  background: black;
  transition: 800ms ease; }

.product {
  overflow: hidden; }

[data-product-attribute] .form-option.form-option-swatch {
  overflow: visible; }

.form-option-variant--color,
.form-option-variant--pattern {
  height: 500px;
  width: 500px; }

.form-option-expanded {
  background-color: white;
  border: 1px solid #373737;
  left: calc(100% + 55px);
  opacity: 0;
  padding: 3px;
  position: absolute;
  top: calc(100% + 5px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden; }

@media (min-width: 1261px) {
  .form-option:hover .form-option-expanded {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
    z-index: 5000; } }

.form-option-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100px;
  width: 100px; }

.account {
  margin-bottom: 1.5rem; }

@media (min-width: 801px) {
  .account--fixed {
    margin: 0 auto;
    width: 66.66667%; } }

@media (min-width: 801px) {
  .account--fixedSmall {
    margin: 0 auto;
    width: 50%; } }

@media (min-width: 801px) {
  .account--fixedLarge {
    margin: 0 auto;
    width: 75%; } }

.account-head {
  margin-bottom: 3rem;
  text-align: center; }
  .account-head .alertBox {
    padding-left: 3rem;
    padding-right: 3rem;
    text-align: left; }

.account-body {
  margin: 0 -0.75rem;
  max-width: none;
  width: auto; }
  .account-body:before, .account-body:after {
    content: " ";
    display: table; }
  .account-body:after {
    clear: both; }

.account-content {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }

@media (min-width: 801px) {
  .account-content--fixed {
    width: 66.66667%; } }

@media (min-width: 801px) {
  .account-content--fixedSmall {
    width: 50%; } }

.account-sidebar {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: left; }
  @media (min-width: 801px) {
    .account-sidebar {
      width: 33.33333%; }
      .account-content--fixedSmall + .account-sidebar {
        float: right; } }

/* jsTree default theme */
.jstree-node,
.jstree-children,
.jstree-container-ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none; }

.jstree-node {
  white-space: nowrap; }

.jstree-anchor {
  display: inline-block;
  color: black;
  white-space: nowrap;
  padding: 0 4px 0 1px;
  margin: 0;
  vertical-align: top; }

.jstree-anchor:focus {
  outline: 0; }

.jstree-anchor,
.jstree-anchor:link,
.jstree-anchor:visited,
.jstree-anchor:hover,
.jstree-anchor:active {
  text-decoration: none;
  color: inherit; }

.jstree-icon {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center; }

.jstree-icon:empty {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center; }

.jstree-ocl {
  cursor: pointer; }

.jstree-leaf > .jstree-ocl {
  cursor: default; }

.jstree .jstree-open > .jstree-children {
  display: block; }

.jstree .jstree-closed > .jstree-children,
.jstree .jstree-leaf > .jstree-children {
  display: none; }

.jstree-anchor > .jstree-themeicon {
  margin-right: 2px; }

.jstree-no-icons .jstree-themeicon,
.jstree-anchor > .jstree-themeicon-hidden {
  display: none; }

.jstree-hidden {
  display: none; }

.jstree-rtl .jstree-anchor {
  padding: 0 1px 0 4px; }

.jstree-rtl .jstree-anchor > .jstree-themeicon {
  margin-left: 2px;
  margin-right: 0; }

.jstree-rtl .jstree-node {
  margin-left: 0; }

.jstree-rtl .jstree-container-ul > .jstree-node {
  margin-right: 0; }

.jstree-wholerow-ul {
  position: relative;
  display: inline-block;
  min-width: 100%; }

.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
  cursor: pointer; }

.jstree-wholerow-ul .jstree-anchor,
.jstree-wholerow-ul .jstree-icon {
  position: relative; }

.jstree-wholerow-ul .jstree-wholerow {
  width: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.vakata-context {
  display: none; }

.vakata-context,
.vakata-context ul {
  margin: 0;
  padding: 2px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #979797;
  box-shadow: 2px 2px 2px #999999; }

.vakata-context ul {
  list-style: none;
  left: 100%;
  margin-top: -2.7em;
  margin-left: -4px; }

.vakata-context .vakata-context-right ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px; }

.vakata-context li {
  list-style: none;
  display: inline; }

.vakata-context li > a {
  display: block;
  padding: 0 2em 0 2em;
  text-decoration: none;
  width: auto;
  color: black;
  white-space: nowrap;
  line-height: 2.4em;
  text-shadow: 1px 1px 0 white;
  border-radius: 1px; }

.vakata-context li > a:hover {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1; }

.vakata-context li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
  background-position: right center;
  background-repeat: no-repeat; }

.vakata-context li > a:focus {
  outline: 0; }

.vakata-context .vakata-context-hover > a {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1; }

.vakata-context .vakata-context-separator > a,
.vakata-context .vakata-context-separator > a:hover {
  background: white;
  border: 0;
  border-top: 1px solid #e2e3e3;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: 0 0 0 2.4em;
  border-left: 1px solid #e0e0e0;
  text-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border-radius: 0; }

.vakata-context .vakata-contextmenu-disabled a,
.vakata-context .vakata-contextmenu-disabled a:hover {
  color: silver;
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0; }

.vakata-context li > a > i {
  text-decoration: none;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background: transparent;
  margin: 0 0 0 -2em;
  vertical-align: top;
  text-align: center;
  line-height: 2.4em; }

.vakata-context li > a > i:empty {
  width: 2.4em;
  line-height: 2.4em; }

.vakata-context li > a .vakata-contextmenu-sep {
  display: inline-block;
  width: 1px;
  height: 2.4em;
  background: white;
  margin: 0 0.5em 0 0;
  border-left: 1px solid #e2e3e3; }

.vakata-context .vakata-contextmenu-shortcut {
  font-size: 0.8em;
  color: silver;
  opacity: 0.5;
  display: none; }

.vakata-context-rtl ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px; }

.vakata-context-rtl li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
  background-position: left center;
  background-repeat: no-repeat; }

.vakata-context-rtl .vakata-context-separator > a {
  margin: 0 2.4em 0 0;
  border-left: 0;
  border-right: 1px solid #e2e3e3; }

.vakata-context-rtl .vakata-context-left ul {
  right: auto;
  left: 100%;
  margin-left: -4px;
  margin-right: auto; }

.vakata-context-rtl li > a > i {
  margin: 0 -2em 0 0; }

.vakata-context-rtl li > a .vakata-contextmenu-sep {
  margin: 0 0 0 0.5em;
  border-left-color: white;
  background: #e2e3e3; }

#jstree-marker {
  position: absolute;
  top: 0;
  left: 0;
  margin: -5px 0 0 0;
  padding: 0;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0; }

#jstree-dnd {
  line-height: 16px;
  margin: 0;
  padding: 4px; }

#jstree-dnd .jstree-icon,
#jstree-dnd .jstree-copy {
  display: inline-block;
  text-decoration: none;
  margin: 0 2px 0 0;
  padding: 0;
  width: 16px;
  height: 16px; }

#jstree-dnd .jstree-ok {
  background: green; }

#jstree-dnd .jstree-er {
  background: red; }

#jstree-dnd .jstree-copy {
  margin: 0 2px 0 2px; }

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background-repeat: no-repeat;
  background-color: transparent; }

.jstree-default .jstree-anchor,
.jstree-default .jstree-wholerow {
  transition: background-color 0.15s, box-shadow 0.15s; }

.jstree-default .jstree-hovered {
  background: #e7f4f9;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #cccccc; }

.jstree-default .jstree-clicked {
  background: #beebff;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #999999; }

.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
  display: none; }

.jstree-default .jstree-disabled {
  background: transparent;
  color: #666666; }

.jstree-default .jstree-disabled.jstree-hovered {
  background: transparent;
  box-shadow: none; }

.jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default .jstree-disabled > .jstree-icon {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default .jstree-search {
  font-style: italic;
  color: #8b0000;
  font-weight: bold; }

.jstree-default .jstree-no-checkboxes .jstree-checkbox {
  display: none !important; }

.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
  background: transparent;
  box-shadow: none; }

.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
  background: #e7f4f9; }

.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
  background: transparent; }

.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
  background: #e7f4f9; }

.jstree-default > .jstree-striped {
  min-width: 100%;
  display: inline-block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat; }

.jstree-default > .jstree-wholerow-ul .jstree-hovered,
.jstree-default > .jstree-wholerow-ul .jstree-clicked {
  background: transparent;
  box-shadow: none;
  border-radius: 0; }

.jstree-default .jstree-wholerow {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.jstree-default .jstree-wholerow-hovered {
  background: #e7f4f9; }

.jstree-default .jstree-wholerow-clicked {
  background: #beebff;
  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%); }

.jstree-default .jstree-node {
  min-height: 24px;
  line-height: 24px;
  margin-left: 24px;
  min-width: 24px; }

.jstree-default .jstree-anchor {
  line-height: 24px;
  height: 24px; }

.jstree-default .jstree-icon {
  width: 24px;
  height: 24px;
  line-height: 24px; }

.jstree-default .jstree-icon:empty {
  width: 24px;
  height: 24px;
  line-height: 24px; }

.jstree-default.jstree-rtl .jstree-node {
  margin-right: 24px; }

.jstree-default .jstree-wholerow {
  height: 24px; }

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default .jstree-node {
  background-position: -292px -4px;
  background-repeat: repeat-y; }

.jstree-default .jstree-last {
  background: transparent; }

.jstree-default .jstree-open > .jstree-ocl {
  background-position: -132px -4px; }

.jstree-default .jstree-closed > .jstree-ocl {
  background-position: -100px -4px; }

.jstree-default .jstree-leaf > .jstree-ocl {
  background-position: -68px -4px; }

.jstree-default .jstree-themeicon {
  background-position: -260px -4px; }

.jstree-default > .jstree-no-dots .jstree-node,
.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -4px; }

.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -4px; }

.jstree-default .jstree-disabled {
  background: transparent; }

.jstree-default .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default .jstree-checkbox {
  background-position: -164px -4px; }

.jstree-default .jstree-checkbox:hover {
  background-position: -164px -36px; }

.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default .jstree-checked > .jstree-checkbox {
  background-position: -228px -4px; }

.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default .jstree-checked > .jstree-checkbox:hover {
  background-position: -228px -36px; }

.jstree-default .jstree-anchor > .jstree-undetermined {
  background-position: -196px -4px; }

.jstree-default .jstree-anchor > .jstree-undetermined:hover {
  background-position: -196px -36px; }

.jstree-default .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default > .jstree-striped {
  background-size: auto 48px; }

.jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -132px -36px; }

.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -100px -36px; }

.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -68px -36px; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -36px; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -36px; }

.jstree-default .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -100px -68px no-repeat; }

.jstree-default .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -260px -4px no-repeat; }

.jstree-default > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default {
  line-height: 24px;
  padding: 0 4px; }

#jstree-dnd.jstree-default .jstree-ok,
#jstree-dnd.jstree-default .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default i {
  background: transparent;
  width: 24px;
  height: 24px;
  line-height: 24px; }

#jstree-dnd.jstree-default .jstree-ok {
  background-position: -4px -68px; }

#jstree-dnd.jstree-default .jstree-er {
  background-position: -36px -68px; }

.jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); }

.jstree-default.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-small .jstree-node {
  min-height: 18px;
  line-height: 18px;
  margin-left: 18px;
  min-width: 18px; }

.jstree-default-small .jstree-anchor {
  line-height: 18px;
  height: 18px; }

.jstree-default-small .jstree-icon {
  width: 18px;
  height: 18px;
  line-height: 18px; }

.jstree-default-small .jstree-icon:empty {
  width: 18px;
  height: 18px;
  line-height: 18px; }

.jstree-default-small.jstree-rtl .jstree-node {
  margin-right: 18px; }

.jstree-default-small .jstree-wholerow {
  height: 18px; }

.jstree-default-small .jstree-node,
.jstree-default-small .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default-small .jstree-node {
  background-position: -295px -7px;
  background-repeat: repeat-y; }

.jstree-default-small .jstree-last {
  background: transparent; }

.jstree-default-small .jstree-open > .jstree-ocl {
  background-position: -135px -7px; }

.jstree-default-small .jstree-closed > .jstree-ocl {
  background-position: -103px -7px; }

.jstree-default-small .jstree-leaf > .jstree-ocl {
  background-position: -71px -7px; }

.jstree-default-small .jstree-themeicon {
  background-position: -263px -7px; }

.jstree-default-small > .jstree-no-dots .jstree-node,
.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -7px; }

.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -7px; }

.jstree-default-small .jstree-disabled {
  background: transparent; }

.jstree-default-small .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default-small .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default-small .jstree-checkbox {
  background-position: -167px -7px; }

.jstree-default-small .jstree-checkbox:hover {
  background-position: -167px -39px; }

.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default-small .jstree-checked > .jstree-checkbox {
  background-position: -231px -7px; }

.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default-small .jstree-checked > .jstree-checkbox:hover {
  background-position: -231px -39px; }

.jstree-default-small .jstree-anchor > .jstree-undetermined {
  background-position: -199px -7px; }

.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
  background-position: -199px -39px; }

.jstree-default-small .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default-small > .jstree-striped {
  background-size: auto 36px; }

.jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default-small.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -135px -39px; }

.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -103px -39px; }

.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -71px -39px; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -39px; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -39px; }

.jstree-default-small .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default-small .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -103px -71px no-repeat; }

.jstree-default-small .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -263px -7px no-repeat; }

.jstree-default-small > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default-small {
  line-height: 18px;
  padding: 0 4px; }

#jstree-dnd.jstree-default-small .jstree-ok,
#jstree-dnd.jstree-default-small .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default-small i {
  background: transparent;
  width: 18px;
  height: 18px;
  line-height: 18px; }

#jstree-dnd.jstree-default-small .jstree-ok {
  background-position: -7px -71px; }

#jstree-dnd.jstree-default-small .jstree-er {
  background-position: -39px -71px; }

.jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg=="); }

.jstree-default-small.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-large .jstree-node {
  min-height: 32px;
  line-height: 32px;
  margin-left: 32px;
  min-width: 32px; }

.jstree-default-large .jstree-anchor {
  line-height: 32px;
  height: 32px; }

.jstree-default-large .jstree-icon {
  width: 32px;
  height: 32px;
  line-height: 32px; }

.jstree-default-large .jstree-icon:empty {
  width: 32px;
  height: 32px;
  line-height: 32px; }

.jstree-default-large.jstree-rtl .jstree-node {
  margin-right: 32px; }

.jstree-default-large .jstree-wholerow {
  height: 32px; }

.jstree-default-large .jstree-node,
.jstree-default-large .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default-large .jstree-node {
  background-position: -288px 0px;
  background-repeat: repeat-y; }

.jstree-default-large .jstree-last {
  background: transparent; }

.jstree-default-large .jstree-open > .jstree-ocl {
  background-position: -128px 0px; }

.jstree-default-large .jstree-closed > .jstree-ocl {
  background-position: -96px 0px; }

.jstree-default-large .jstree-leaf > .jstree-ocl {
  background-position: -64px 0px; }

.jstree-default-large .jstree-themeicon {
  background-position: -256px 0px; }

.jstree-default-large > .jstree-no-dots .jstree-node,
.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px 0px; }

.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px 0px; }

.jstree-default-large .jstree-disabled {
  background: transparent; }

.jstree-default-large .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default-large .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default-large .jstree-checkbox {
  background-position: -160px 0px; }

.jstree-default-large .jstree-checkbox:hover {
  background-position: -160px -32px; }

.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default-large .jstree-checked > .jstree-checkbox {
  background-position: -224px 0px; }

.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default-large .jstree-checked > .jstree-checkbox:hover {
  background-position: -224px -32px; }

.jstree-default-large .jstree-anchor > .jstree-undetermined {
  background-position: -192px 0px; }

.jstree-default-large .jstree-anchor > .jstree-undetermined:hover {
  background-position: -192px -32px; }

.jstree-default-large .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default-large > .jstree-striped {
  background-size: auto 64px; }

.jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default-large.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -128px -32px; }

.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -96px -32px; }

.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -64px -32px; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px -32px; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px -32px; }

.jstree-default-large .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default-large .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -96px -64px no-repeat; }

.jstree-default-large .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -256px 0px no-repeat; }

.jstree-default-large > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default-large {
  line-height: 32px;
  padding: 0 4px; }

#jstree-dnd.jstree-default-large .jstree-ok,
#jstree-dnd.jstree-default-large .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default-large i {
  background: transparent;
  width: 32px;
  height: 32px;
  line-height: 32px; }

#jstree-dnd.jstree-default-large .jstree-ok {
  background-position: 0px -64px; }

#jstree-dnd.jstree-default-large .jstree-er {
  background-position: -32px -64px; }

.jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg=="); }

.jstree-default-large.jstree-rtl .jstree-last {
  background: transparent; }

@media (max-width: 768px) {
  #jstree-dnd.jstree-dnd-responsive {
    line-height: 40px;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white; }
  #jstree-dnd.jstree-dnd-responsive > i {
    background: transparent;
    width: 40px;
    height: 40px; }
  #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
    background-image: url("../img/vendor/jstree/40px.png");
    background-position: 0 -200px;
    background-size: 120px 240px; }
  #jstree-dnd.jstree-dnd-responsive > .jstree-er {
    background-image: url("../img/vendor/jstree/40px.png");
    background-position: -40px -200px;
    background-size: 120px 240px; }
  #jstree-marker.jstree-dnd-responsive {
    border-left-width: 10px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-top: -10px; } }

@media (max-width: 768px) {
  .jstree-default-responsive {
    /*
	.jstree-open > .jstree-ocl,
	.jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }
	*/ }
  .jstree-default-responsive .jstree-icon {
    background-image: url("../img/vendor/jstree/40px.png"); }
  .jstree-default-responsive .jstree-node,
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background: transparent; }
  .jstree-default-responsive .jstree-node {
    min-height: 40px;
    line-height: 40px;
    margin-left: 40px;
    min-width: 40px;
    white-space: nowrap; }
  .jstree-default-responsive .jstree-anchor {
    line-height: 40px;
    height: 40px; }
  .jstree-default-responsive .jstree-icon,
  .jstree-default-responsive .jstree-icon:empty {
    width: 40px;
    height: 40px;
    line-height: 40px; }
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0; }
  .jstree-default-responsive.jstree-rtl .jstree-node {
    margin-left: 0;
    margin-right: 40px; }
  .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
    margin-right: 0; }
  .jstree-default-responsive .jstree-ocl,
  .jstree-default-responsive .jstree-themeicon,
  .jstree-default-responsive .jstree-checkbox {
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background: transparent; }
  .jstree-default-responsive .jstree-open > .jstree-ocl {
    background-position: 0 0px !important; }
  .jstree-default-responsive .jstree-closed > .jstree-ocl {
    background-position: 0 -40px !important; }
  .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
    background-position: -40px 0px !important; }
  .jstree-default-responsive .jstree-themeicon {
    background-position: -40px -40px; }
  .jstree-default-responsive .jstree-checkbox,
  .jstree-default-responsive .jstree-checkbox:hover {
    background-position: -40px -80px; }
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  .jstree-default-responsive .jstree-checked > .jstree-checkbox,
  .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {
    background-position: 0 -80px; }
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {
    background-position: 0 -120px; }
  .jstree-default-responsive .jstree-anchor {
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white; }
  .jstree-default-responsive > .jstree-striped {
    background: transparent; }
  .jstree-default-responsive .jstree-wholerow {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
    background: #ebebeb;
    height: 40px; }
  .jstree-default-responsive .jstree-wholerow-hovered {
    background: #e7f4f9; }
  .jstree-default-responsive .jstree-wholerow-clicked {
    background: #beebff; }
  .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {
    box-shadow: inset 0 -6px 3px -5px #666666; }
  .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {
    box-shadow: inset 0 6px 3px -5px #666666;
    border-top: 0; }
  .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {
    box-shadow: none; }
  .jstree-default-responsive .jstree-node,
  .jstree-default-responsive .jstree-icon,
  .jstree-default-responsive .jstree-node > .jstree-ocl,
  .jstree-default-responsive .jstree-themeicon,
  .jstree-default-responsive .jstree-checkbox {
    background-image: url("../img/vendor/jstree/40px.png");
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-node {
    background-position: -80px 0;
    background-repeat: repeat-y; }
  .jstree-default-responsive .jstree-last {
    background: transparent; }
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background-position: -40px -120px; }
  .jstree-default-responsive .jstree-last > .jstree-ocl {
    background-position: -40px -160px; }
  .jstree-default-responsive .jstree-themeicon-custom {
    background-color: transparent;
    background-image: none;
    background-position: 0 0; }
  .jstree-default-responsive .jstree-file {
    background: url("../img/vendor/jstree/40px.png") 0 -160px no-repeat;
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-folder {
    background: url("../img/vendor/jstree/40px.png") -40px -40px no-repeat;
    background-size: 120px 240px; }
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0;
    margin-right: 0; } }

body {
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6,
.facet-quick-heading {
  text-transform: uppercase; }

blockquote {
  border-left: 0.16667rem solid #050505;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  padding: 1.5rem; }

.cms-content ul,
.cms-content ol {
  background: rgba(5, 5, 5, 0.05);
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 3rem;
  width: 80%; }
  @media (min-width: 1261px) {
    .cms-content ul,
    .cms-content ol {
      width: 50%; } }

.button,
.form-input,
.actionBar-section .form-field,
.form-select,
.form-checkbox + .form-label::before,
.pagination-item.pagination-item--current,
.facetedSearch-toggle {
  border-radius: 0;
  border-radius: 0px; }

.button {
  text-transform: uppercase;
  border-radius: 0px; }

.table--line .table-thead tr th {
  text-transform: uppercase; }

.definitionList-label,
.definitionList-key,
.secondary-style {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 300; }

.icon svg {
  stroke: none;
  stroke-width: 0.33333; }

.alertBox {
  margin-bottom: 1.5rem; }

html,
body {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%; }
  @media (min-width: 801px) {
    html,
    body {
      overflow-x: inherit; } }

body.has-globalBanner {
  padding-top: 125px; }
  @media (min-width: 801px) {
    body.has-globalBanner {
      padding-top: 0; }
      body.has-globalBanner.has-fixed-header-simple {
        padding-top: 14.16667rem; } }

@media (min-width: 801px) {
  body.has-fixed-header-simple {
    padding-top: 10rem; } }

@media (min-width: 801px) {
  .body.has-globalBanner {
    margin: 1.5rem 0; } }

@media (min-width: 801px) {
  .body {
    margin: 1.5rem 0; } }

.content {
  margin-bottom: 1.5rem; }
  .content:before, .content:after {
    content: " ";
    display: table; }
  .content:after {
    clear: both; }

.title-separator {
  border-top: 6px;
  border-color: #050505;
  margin: 0.75rem auto 1.5rem;
  width: 5rem; }

.category-description {
  margin-bottom: 3rem; }

.hero-title-separator {
  border-top: 6px;
  border-color: white;
  margin: 0.75rem auto 1.5rem;
  width: 5rem; }
  @media (min-width: 801px) {
    .left .hero-title-separator,
    .right .hero-title-separator {
      margin-left: 0; } }

@media (min-width: 1261px) {
  .carousel-title-separator {
    display: none; } }

.title-separator--solid {
  border-style: solid; }

.title-separator--rounded {
  border-style: solid;
  border-radius: 3px; }

.title-separator--dashed {
  border-style: dashed; }

.title-separator--dotted {
  border-style: dotted; }

.title-separator--none {
  display: none; }

.modal {
  transform: translate(-50%, -51%); }

.addthis_toolbox {
  margin-top: 1.5rem; }

.breadcrumbs {
  display: block; }
  .breadcrumbs .is-active.breadcrumb--product {
    display: none; }
    @media (min-width: 801px) {
      .breadcrumbs .is-active.breadcrumb--product {
        display: inline-block; } }

.header {
  border-bottom: none;
  z-index: 200; }
  .header:before, .header:after {
    content: " ";
    display: table; }
  .header:after {
    clear: both; }

.header-top {
  position: relative;
  width: 100%; }

.header-logo {
  margin-left: auto;
  margin-right: auto;
  max-width: 70%; }
  @media (min-width: 801px) {
    .header-logo {
      max-width: 20%;
      margin: 2rem auto; } }
  @media (min-width: 1261px) {
    .header-logo {
      max-width: 200px; } }
  .header-logo-no-image .header-logo {
    max-width: 60%; }
    @media (min-width: 641px) {
      .header-logo-no-image .header-logo {
        max-width: 70%; } }
    @media (min-width: 801px) {
      .header-logo-no-image .header-logo {
        max-width: 40%; } }
    @media (min-width: 1261px) {
      .header-logo-no-image .header-logo {
        max-width: 30%; } }
    @media (min-width: 1441px) {
      .header-logo-no-image .header-logo {
        max-width: 40%; } }
    .header-logo-no-image .header-logo > a {
      padding: 1.2rem 0; }
      @media (min-width: 641px) {
        .header-logo-no-image .header-logo > a {
          padding: 0.75rem 0; } }
  .header-logo.sticky.hide-on-sticky.fixed {
    display: none; }
  @media (min-width: 801px) {
    .header-logo.header-logo--left {
      margin-left: 1.5rem; } }
  @media (min-width: 801px) {
    .header-logo.header-logo--right {
      margin-right: 1.5rem; } }

@media (min-width: 801px) {
  .header-logo-image {
    vertical-align: middle; } }

.header-logo-text {
  margin: 0;
  padding: 0; }
  .header-logo-text.with-image {
    overflow: visible; }

.sticky.fixed .header-logo-image,
.sticky.fixed .header-logo-image-unknown-size {
  max-height: 2.91667rem;
  vertical-align: middle; }

.fixed-header-simple {
  position: fixed; }

@media (min-width: 801px) {
  .header-simple {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .header-simple .header-logo {
      flex: 1;
      flex-grow: 1;
      margin: 1rem 0;
      order: 1;
      padding: 0 1.5rem;
      text-align: left;
      width: 100%;
      max-width: fit-content; }
      .header-simple .header-logo .header-logo-image {
        max-height: 80px;
        vertical-align: middle; }
      .position--left .header-simple .header-logo,
      .position--right .header-simple .header-logo {
        flex-grow: 1;
        flex-shrink: 1;
        order: 1;
        padding: 0 0.75rem; }
    .header-simple .navPages-container {
      background: transparent;
      flex-grow: 4.5;
      flex-shrink: 0;
      width: 100%;
      flex: 2 1 75%;
      order: 3; } }
    @media (min-width: 801px) and (min-width: 1261px) {
      .header-simple .navPages-container {
        flex: 1;
        order: 2; } }

@media (min-width: 801px) {
      .header-simple .navPages-container .navPages {
        text-align: left;
        margin: 0; }
      .header-simple .navPages-container .navPages-action {
        color: #373737; }
        .header-simple .navPages-container .navPages-action svg {
          fill: #373737;
          stroke: #373737; }
        .header-simple .navPages-container .navPages-action:hover, .header-simple .navPages-container .navPages-action:active {
          color: dimgray; }
          .header-simple .navPages-container .navPages-action:hover svg, .header-simple .navPages-container .navPages-action:active svg {
            fill: dimgray;
            stroke: dimgray; }
        .header-simple .navPages-container .navPages-action.is-open, .header-simple .navPages-container .navPages-action.navPage-subMenu-action {
          color: #050505; }
          .header-simple .navPages-container .navPages-action.is-open svg, .header-simple .navPages-container .navPages-action.navPage-subMenu-action svg {
            fill: #050505;
            stroke: #050505; }
          .header-simple .navPages-container .navPages-action.is-open:hover, .header-simple .navPages-container .navPages-action.is-open:active, .header-simple .navPages-container .navPages-action.navPage-subMenu-action:hover, .header-simple .navPages-container .navPages-action.navPage-subMenu-action:active {
            color: #373737; }
            .header-simple .navPages-container .navPages-action.is-open:hover svg, .header-simple .navPages-container .navPages-action.is-open:active svg, .header-simple .navPages-container .navPages-action.navPage-subMenu-action:hover svg, .header-simple .navPages-container .navPages-action.navPage-subMenu-action:active svg {
              fill: #373737;
              stroke: #373737; }
    .header-simple .navUser {
      flex: 1; }
    .header-simple .navUser.left {
      flex-grow: 1;
      order: 3;
      position: relative;
      transform: none;
      width: 100%;
      z-index: 99; } }
    @media (min-width: 801px) and (min-width: 1261px) {
      .header-simple .navUser.left {
        flex-grow: 1; } }

@media (min-width: 801px) {
    .header-simple .navUser.right {
      flex-grow: 3;
      flex-shrink: 0;
      order: 2;
      position: relative;
      transform: none;
      width: 100%;
      flex: 2 1 25%;
      margin: 1rem 0; } }
    @media (min-width: 801px) and (min-width: 1261px) {
      .header-simple .navUser.right {
        flex: 1;
        order: 3; } }

[data-content-region="header_bottom"] {
  margin: 1.5rem; }
  [data-content-region="header_bottom"]:empty {
    margin: 0; }

.dropdown--quickSearch {
  background-color: #e5e5e5;
  border: 1px solid #ebebeb;
  box-shadow: 0 1px 2px rgba(5, 5, 5, 0.13);
  position: absolute; }
  .dropdown--quickSearch .form-input {
    font-family: "Work Sans", Times, "Times New Roman", serif;
    font-style: normal; }
  .dropdown--quickSearch.is-open {
    left: auto !important;
    width: 500px !important; }
    .dropdown--quickSearch.is-open:before {
      border: inset 10px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #ebebeb transparent;
      border-bottom-style: solid;
      bottom: 100%;
      right: 0.75rem;
      position: absolute; }
    .dropdown--quickSearch.is-open:after {
      border: inset 8px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent white transparent;
      border-bottom-style: solid;
      bottom: 100%;
      right: 0.91667rem;
      position: absolute; }
    .dropdown--quickSearch.is-open .modal-close {
      bottom: 0;
      left: 100%;
      margin: auto;
      right: auto;
      top: 0; }

.resultsContainer {
  margin-top: 1rem;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto; }

.quickSearchResults {
  margin-top: 0; }
  .quickSearchResults .productGrid {
    background-color: #e5e5e5;
    margin: 0;
    padding: 0; }
    .quickSearchResults .productGrid .product {
      width: 100%; }
      .quickSearchResults .productGrid .product .card {
        border: none;
        border-bottom: 1px solid #ebebeb;
        display: table;
        margin: 0;
        padding: 1rem 0;
        width: 100%; }
  .quickSearchResults .card-body,
  .quickSearchResults .card-figure {
    display: table-cell;
    vertical-align: middle; }
  .quickSearchResults .card-figure {
    width: 25%; }
  .quickSearchResults .card-body {
    background-color: #e5e5e5;
    width: 75%; }
  .quickSearchResults .card--alternate:hover .card-body {
    background-color: #e5e5e5; }
    .quickSearchResults .card--alternate:hover .card-body .card-text {
      color: inherit; }
  .quickSearchResults .card--alternate:hover .card-title > a {
    color: inherit; }

.previewCartAction-viewCart {
  display: none; }
  @media (min-width: 641px) {
    .previewCartAction-viewCart {
      display: table; } }

.previewCartAction-checkout {
  display: table;
  width: 100%; }
  @media (min-width: 641px) {
    .previewCartAction-checkout {
      width: 50%; } }

.previewCartAction-checkout .button,
.previewCartAction-viewCart .button {
  display: table-cell; }

.navUser .previewCartList {
  margin: 0.75rem 0; }

.previewCartItem-content.item-added {
  padding-right: 0;
  text-align: center; }
  .previewCartItem-content.item-added .previewCartItem-name {
    text-align: center; }

.previewCartItem-name {
  text-transform: uppercase; }

.previewCartItem-brand {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal; }

.previewCartAction .footer-payment-icons {
  color: rgba(55, 55, 55, 0.75);
  font-size: 1.4rem;
  margin-top: 0;
  justify-content: center; }

.previewCartAction-checkoutMultiple {
  padding-left: 0;
  padding-top: 1rem;
  text-align: center; }

.has-expanded-subMenu {
  background: rgba(204, 204, 204, 0.2);
  border-top: 1px solid #cccccc; }

.expanded-subMenu {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc; }
  .expanded-subMenu .navPage-subMenu-action {
    font-weight: normal; }
    @media (min-width: 801px) {
      .expanded-subMenu .navPage-subMenu-action {
        padding-left: 2rem; } }
  .expanded-subMenu + .has-expanded-subMenu {
    border-top: none; }

.dropdown-menu {
  outline: none; }

@media (min-width: 801px) {
  .navPages-container {
    background-color: #232b2e; } }

@media (min-width: 801px) {
  .navPages-container.navPages-mobile {
    display: none; } }

.navPages-action {
  color: #6b3418;
  font-weight: 400;
  text-align: center; }
  .navPages-action svg {
    fill: #6b3418;
    stroke: #6b3418; }
  .navPages-action.is-open {
    color: #6b3418; }
    .navPages-action.is-open svg {
      fill: #6b3418;
      stroke: #6b3418; }
  .navPages-action:hover {
    color: #6b3418; }
    .navPages-action:hover svg {
      fill: #6b3418;
      stroke: #6b3418; }
  @media (min-width: 801px) {
    .navPages-action {
      color: white;
      padding: 1rem 1.5rem;
      text-align: left; }
      .navPages-action:focus {
        color: white; }
      .navPages-action svg {
        fill: white;
        stroke: white; }
      .navPages-container.sticky.fixed .navPages-action {
        color: #232b2e; }
        .navPages-container.sticky.fixed .navPages-action:hover {
          color: #373737; }
          .navPages-container.sticky.fixed .navPages-action:hover svg {
            fill: #373737;
            stroke: #373737; }
        .navPages-container.sticky.fixed .navPages-action svg {
          fill: #232b2e;
          stroke: #232b2e; }
        .navPages-container.sticky.fixed .navPages-action.is-open {
          color: #373737; }
          .navPages-container.sticky.fixed .navPages-action.is-open svg {
            fill: #373737;
            stroke: #373737; }
          .navPages-container.sticky.fixed .navPages-action.is-open:hover {
            color: #373737; }
            .navPages-container.sticky.fixed .navPages-action.is-open:hover svg {
              fill: #373737;
              stroke: #373737; }
      .navPages-action.is-open {
        color: #373737; }
        .navPages-action.is-open svg {
          fill: #373737;
          stroke: #373737; }
        .navPages-action.is-open:hover {
          color: #373737; }
          .navPages-action.is-open:hover svg {
            fill: #373737;
            stroke: #373737; }
      .navPages-action:hover {
        color: #ebebeb; }
        .navPages-action:hover svg {
          fill: #ebebeb;
          stroke: #ebebeb; } }

.navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
  margin-right: -3.5rem; }
  @media (min-width: 801px) {
    .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
      margin-right: 0; } }

@media (min-width: 801px) {
  .navPage-subMenu-item-child .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-child .navPage-subMenu-action:hover,
  .navPage-subMenu-item-parent .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-parent .navPage-subMenu-action:hover {
    background: #fafafa;
    color: #373737; }
    .navPage-subMenu-item-child .navPage-subMenu-action.is-open svg, .navPage-subMenu-item-child .navPage-subMenu-action:hover svg,
    .navPage-subMenu-item-parent .navPage-subMenu-action.is-open svg,
    .navPage-subMenu-item-parent .navPage-subMenu-action:hover svg {
      fill: #373737;
      stroke: #373737; } }

.navPage-subMenu-item .navPages-action {
  color: #050505;
  text-transform: uppercase; }
  .navPage-subMenu-item .navPages-action:hover, .navPage-subMenu-item .navPages-action:focus {
    color: #373737; }

@media (min-width: 801px) {
  .navPage-subMenu-action {
    color: #050505 !important; }
    .navPage-subMenu-action svg {
      fill: #050505 !important;
      stroke: #050505 !important; }
    .navPage-subMenu-action:hover, .navPage-subMenu-action:focus {
      color: #373737 !important; }
      .navPage-subMenu-action:hover svg, .navPage-subMenu-action:focus svg {
        fill: #373737 !important;
        stroke: #373737 !important; } }

.navPages {
  background-color: #e5e5e5; }
  @media (min-width: 801px) {
    .navPages {
      background: none; } }

.navPages-quickSearch {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; }

.navPages-container.sticky.fixed {
  background-color: white;
  bottom: auto;
  position: fixed;
  top: 0;
  z-index: 50;
  -webkit-transform: translateZ(0); }
  @media (min-width: 801px) {
    .navPages-container.sticky.fixed .navPages {
      max-width: 80%; } }

@media (min-width: 801px) {
  .header-logo.sticky.fixed {
    bottom: auto;
    display: inline-table;
    height: 3.75rem;
    margin: 0 1.5rem;
    position: fixed;
    top: 0;
    width: auto;
    z-index: 100;
    -webkit-transform: translateZ(0); }
    .header-logo.sticky.fixed > a {
      display: table-cell;
      vertical-align: middle; }
    .header-logo.sticky.fixed .header-logo-text {
      color: #232b2e;
      font-size: 1.66667rem; } }

.navUser.sticky.fixed {
  bottom: auto;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: auto;
  z-index: 500;
  -webkit-transform: translateZ(0); }
  .navUser.sticky.fixed .navUser-section {
    display: none; }
    .navUser.sticky.fixed .navUser-section .navUser-item {
      display: none; }
    .navUser.sticky.fixed .navUser-section.navUser-section--alt {
      display: block; }
      .navUser.sticky.fixed .navUser-section.navUser-section--alt .navUser-item--cart,
      .navUser.sticky.fixed .navUser-section.navUser-section--alt .navUser-item--comparison {
        display: inline-block; }
      @media (min-width: 801px) {
        .navUser.sticky.fixed .navUser-section.navUser-section--alt .navUser-item--search {
          display: inline-block; } }
  .navUser.sticky.fixed .countPill {
    background: #232b2e;
    color: white; }
  .navUser.sticky.fixed svg {
    fill: #232b2e; }
    .navUser.sticky.fixed svg:hover, .navUser.sticky.fixed svg:focus {
      fill: #373737; }
  .navUser.sticky.fixed span {
    color: #232b2e; }
    .navUser.sticky.fixed span:hover, .navUser.sticky.fixed span:focus {
      color: #373737; }

.navUser-section--alt .navUser-item--cart .dropdown-menu {
  left: auto !important;
  max-width: none;
  right: 1.41667rem;
  width: 90%; }
  @media (min-width: 641px) {
    .navUser-section--alt .navUser-item--cart .dropdown-menu {
      max-width: 29.16667rem;
      width: 29.16667rem; } }

.navPages-item {
  text-align: center; }
  @media (min-width: 801px) {
    .navPages-item {
      display: inline-block;
      float: none; } }

@media (min-width: 801px) {
  .expanded .navPages-item,
  .expanded--enclosed .navPages-item,
  .simple .navPages-item,
  .simple--enclosed .navPages-item {
    position: relative; }
  .expanded .has-subMenu.is-root + .navPage-subMenu-horizontal,
  .expanded--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal,
  .simple .has-subMenu.is-root + .navPage-subMenu-horizontal,
  .simple--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal {
    left: 0;
    top: 100%; } }

@media (min-width: 801px) {
  .expanded .navPage-subMenu-list,
  .expanded--enclosed .navPage-subMenu-list {
    max-height: 50vh;
    overflow-y: auto;
    position: static; } }

.expanded--enclosed .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
  margin-top: -6px; }
  @media (min-width: 801px) {
    .expanded--enclosed .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
      margin-top: 0; } }

@media (min-width: 801px) {
  .navPage-subMenu-horizontal.is-open {
    min-height: 100%;
    margin-left: 100%;
    width: 100%;
    z-index: 20; } }

@media (min-width: 801px) {
  .navPage-subMenu-horizontal.marketplace-popout.is-open {
    width: 33.33333vw; } }

@media (min-width: 801px) {
  .navPages-content-page,
  .marketplace--enclosed .navPages-content-page {
    position: relative; }
    .navPages-content-page .has-subMenu.is-root + .navPage-subMenu-horizontal,
    .marketplace--enclosed .navPages-content-page .has-subMenu.is-root + .navPage-subMenu-horizontal {
      left: 0;
      top: 100%;
      width: 20rem; }
      .navPages-content-page .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list,
      .marketplace--enclosed .navPages-content-page .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list {
        width: 100%; } }

.navPage-subMenu.is-open {
  z-index: 20; }

@media (min-width: 801px) {
  .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal {
    left: 0;
    top: 100%;
    width: 100%; }
    .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list {
      margin-left: 0;
      width: 20%; }
      .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open {
        margin-left: 20%;
        width: 80%; }
        .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open .navPage-subMenu-list {
          max-width: none; }
        .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open .navPage-subMenu-item .icon {
          display: none; }
        .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open .navPage-subMenu-item .navPages-action.is-open, .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open .navPage-subMenu-item .navPages-action:hover, .marketplace--enclosed .has-subMenu.is-root + .navPage-subMenu-horizontal > .navPage-subMenu-list .navPage-subMenu-horizontal.marketplace-popout.is-open .navPage-subMenu-item .navPages-action:focus {
          background-color: transparent;
          opacity: 1; } }

.navPages-container.is-open {
  z-index: 20; }

.navUser {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  text-transform: uppercase; }
  @media (min-width: 801px) {
    .navUser.left, .navUser.right {
      bottom: auto;
      height: auto;
      margin: auto;
      max-width: 40%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: auto; }
      .header-logo-no-image .navUser.left, .header-logo-no-image .navUser.right {
        max-width: fit-content; }
    .navUser.left {
      left: 0; }
      .f-topbar-fixed .navUser.left {
        display: none; }
      .position--left.header-simple .navUser.left {
        order: 3; }
    .navUser.right {
      right: 0; }
      .navUser.right .navUser-section {
        text-align: right; }
        .navUser.right .navUser-section > * {
          text-align: left; }
      .position--left.header-simple .navUser.right,
      .position--right.header-simple .navUser.right {
        flex-grow: 4;
        order: 4;
        right: auto; } }
    @media (min-width: 801px) and (min-width: 1261px) {
      .position--left.header-simple .navUser.right,
      .position--right.header-simple .navUser.right {
        flex-grow: 2; } }
  .navUser .dropdown-menu,
  .navUser .dropdown {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-style: normal; }

@media (min-width: 801px) {
  .position--left .left {
    right: 0;
    left: 0; }
  .position--right .left {
    left: 0; }
  .position--right .right {
    left: 0;
    right: auto; }
    .position--right .right .dropdown--quickSearch.is-open {
      right: auto !important; }
      .position--right .right .dropdown--quickSearch.is-open:before {
        left: 0.75rem; }
      .position--right .right .dropdown--quickSearch.is-open:after {
        left: 0.91667rem; } }

@media (min-width: 801px) {
  .navUser-item {
    display: inline-block;
    float: none; } }

.navUser-item--search {
  position: relative; }

.navUser-action {
  font-weight: 400;
  text-transform: none; }
  .navUser-action .icon {
    height: 1.5rem;
    width: 1.5rem; }

.phone .icon {
  height: 1.5rem;
  width: 1.5rem; }

.phone span {
  margin-left: 0.41667rem; }

.phone-number {
  display: none; }
  @media (min-width: 1261px) {
    .phone-number {
      display: initial; } }

.countPill {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; }

.navBar--sub {
  margin-bottom: 3rem; }

.currency-menu img {
  margin-right: 0.41667rem; }

.currency-menu .dropdown-menu {
  left: 50px !important;
  min-width: 200px;
  text-transform: uppercase; }

.currency-menu .dropdown-menu-item {
  font-size: 13px; }

.currency-menu .navUser-action {
  padding-left: 0; }

.currency-menu .icon {
  height: 0.66667rem;
  width: 0.66667rem;
  margin: -1px 0 0 0.16667rem; }

.navPages-enclosed-root > .navPages-action {
  display: none; }
  @media (min-width: 801px) {
    .navPages-enclosed-root > .navPages-action {
      display: block; } }

.navPages-enclosed-root > .navPage-subMenu {
  display: block; }
  @media (min-width: 801px) {
    .navPages-enclosed-root > .navPage-subMenu {
      display: none; }
      .navPages-enclosed-root > .navPage-subMenu.is-open {
        display: block; } }

.user-icon {
  display: none; }
  @media (min-width: 801px) {
    .user-icon {
      display: inline-block; } }
  @media (min-width: 1261px) {
    .user-icon {
      display: none; } }

.user-label {
  display: none; }
  @media (min-width: 1261px) {
    .user-label {
      display: inline-block; } }

.replace-icon {
  display: none; }
  @media (min-width: 1261px) {
    .replace-icon {
      display: inline-block; } }

.navUser-item--account {
  display: none; }
  @media (min-width: 801px) {
    .navUser-item--account {
      display: inline-flex;
      align-items: center; } }

.globalBanner {
  background-color: #ebebeb;
  color: #050505;
  padding: 1rem;
  text-align: center;
  display: flex;
  overflow-x: hidden;
  white-space: nowrap; }
  .globalBanner-marquee {
    animation: marquee 0s linear infinite;
    padding-left: 100%; }

.globalBanner-label {
  display: inline-block;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  outline: none;
  padding: 0 1rem; }
  @media (min-width: 801px) {
    .globalBanner-label + .globalBanner-label {
      border-left: 1px solid #ebebeb;
      border-color: rgba(5, 5, 5, 0.5); }
      .slick-track .globalBanner-label + .globalBanner-label {
        border: none; } }
  .globalBanner-label a {
    color: #050505;
    text-decoration: none; }
    .globalBanner-label a:hover {
      color: rgba(5, 5, 5, 0.8); }
    .globalBanner-label a:focus, .globalBanner-label a:active {
      color: rgba(5, 5, 5, 0.9); }

@keyframes marquee {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(-100%, 0); } }

.globalBanner-icon {
  margin-right: 0.41667rem; }

.globalBanner--scroll0 {
  animation: none;
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: initial;
  white-space: normal; }

.cookieMessage {
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 500; }
  .cookieMessage .button {
    margin: 0; }
    @media (min-width: 801px) {
      .cookieMessage .button {
        display: table-cell;
        width: 100%; } }

.cookieMessage-container {
  padding: 1.5rem; }
  @media (min-width: 801px) {
    .cookieMessage-container {
      display: table; } }

@media (min-width: 801px) {
  .cookieMessage-text {
    display: table-cell; } }

.cookieMessage-text p {
  font-size: 12px;
  margin: 0 0 1.5rem;
  text-align: center; }
  @media (min-width: 801px) {
    .cookieMessage-text p {
      margin: 0 0.75rem; } }

.newsletterPopup-overlay {
  background-color: rgba(55, 55, 55, 0.9);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 250ms ease-out;
  width: 100%;
  z-index: 500; }
  .newsletterPopup-overlay.is-visible {
    display: block;
    opacity: 1; }

.newsletterPopup {
  background: white;
  left: 50%;
  margin: auto;
  max-height: 90%;
  max-width: 95%;
  overflow-y: auto;
  padding: 1rem;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%; }
  @media (min-width: 801px) {
    .newsletterPopup {
      min-width: 460px;
      width: auto; } }
  @media (min-width: 1261px) {
    .newsletterPopup .form {
      margin-left: auto;
      margin-right: auto;
      max-width: 80%; } }
  .newsletterPopup .form-field {
    margin: 0; }
  .newsletterPopup .modal-close {
    background-color: white;
    color: #373737;
    right: 0.41667rem;
    top: 0.41667rem; }
  .newsletterPopup .newsletterPopup-dismiss--text {
    color: #050505;
    display: inline-block;
    font-size: 10px;
    margin-bottom: 0.75rem;
    text-transform: uppercase; }
  .newsletterPopup .newsletter-summary {
    color: rgba(5, 5, 5, 0.75);
    font-size: 10px;
    margin-top: 0.75rem; }

.newsletterPopup-title {
  color: #050505; }
  .newsletterPopup-title:after {
    border-bottom: 0.16667rem solid #050505;
    content: "";
    display: block;
    margin: 1.5rem auto;
    max-width: 70%;
    width: 6rem; }

.newsletterPopup-intro {
  color: #050505; }

.heroCarousel {
  margin-top: 1.5rem; }
  .heroCarousel .slick-prev:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M22.4572074 1.00746147l-21 20.02482143 20.9479397 19.9751786' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }
  .heroCarousel .slick-next:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M1.45679 1.00746147l21 20.02482143L1.50885 41.0074615' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }
  .heroCarousel .slick-dots {
    bottom: -2.5rem; }
  .heroCarousel .slick-dots li {
    background-color: transparent; }
  .heroCarousel a {
    text-decoration: none; }
  .heroCarousel .slick-arrow {
    display: none; }
    @media (min-width: 801px) {
      .heroCarousel .slick-arrow {
        display: block; } }

.heroStoryboard {
  margin-bottom: 3rem; }
  .heroStoryboard:before, .heroStoryboard:after {
    content: " ";
    display: table; }
  .heroStoryboard:after {
    clear: both; }
  .heroStoryboard.show--2 .heroCarousel-slide + .heroCarousel-slide {
    margin-top: 1.5rem; }
  @media (min-width: 641px) {
    .heroStoryboard.show--2 .heroCarousel-slide {
      float: left;
      width: calc(50% - 0.75rem); }
      .heroStoryboard.show--2 .heroCarousel-slide + .heroCarousel-slide {
        margin-left: 1.5rem;
        margin-top: 0; } }

.heroCarousel-slide {
  background-color: #232b2e; }
  @media (min-width: 801px) {
    .heroCarousel-slide {
      background-color: transparent; } }

.heroCarousel-slide a {
  display: block;
  height: 100%; }

.heroCarousel-content {
  padding: 3rem 1.5rem; }
  @media (min-width: 801px) {
    .heroCarousel-content {
      background-color: rgba(35, 43, 46, 0.8);
      padding: 3rem;
      width: 80%; }
      .slide--0 .heroCarousel-content,
      .slick-slide .heroCarousel-content {
        width: 40%; }
      .left .heroCarousel-content {
        left: 3rem;
        right: auto;
        text-align: left; }
        .slick-slide .left .heroCarousel-content {
          left: 9rem; }
      .right .heroCarousel-content {
        left: auto;
        right: 3rem;
        text-align: left; }
        .slick-slide .right .heroCarousel-content {
          right: 9rem; }
        .storyboard-overlap .right .heroCarousel-content {
          right: 0; } }

.heroCarousel-title {
  text-transform: uppercase; }
  @media (min-width: 801px) {
    .heroCarousel-title {
      font-size: 28px; } }

.heroCarousel-description {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 300; }

.heroCarousel-action {
  color: white;
  text-decoration: underline;
  text-transform: uppercase; }

@media (max-width: 800px) {
  .heroCarousel-content,
  .heroCarousel-image-wrapper {
    position: relative; } }

@media (min-width: 801px) {
  .heroCarousel-image {
    height: 100%; } }

.heroCarousel.slick-dotted.slick-slider {
  margin-bottom: 4.5rem; }

@media (min-width: 801px) {
  .left .storyboard-overlap-image {
    width: 95%;
    display: block;
    margin-left: auto; }
  .right .storyboard-overlap-image {
    width: 95%;
    display: block;
    margin-right: auto; } }

@media (min-width: 801px) {
  .left .storyboard-overlap-content {
    left: 0; }
  .right .storyboard-overlap-content {
    right: 0; } }

.banners {
  background-color: #ebebeb;
  color: #050505;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal; }
  .banners.banner-bottom {
    margin-bottom: 1rem; }
  .banners a {
    color: #050505; }
    .banners a:hover {
      color: rgba(5, 5, 5, 0.8); }
    .banners a:active {
      color: rgba(5, 5, 5, 0.9); }

.banner {
  padding: 0 1.5rem; }

.banners.homepage {
  margin-bottom: 3rem; }

.grid {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .grid ul,
  .grid ol {
    list-style: none;
    margin-bottom: 0; }
  .grid:before, .grid:after {
    content: " ";
    display: table; }
  .grid:after {
    clear: both; }

.gridColumn {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: none;
  display: inline-block;
  font-size: 1rem;
  overflow: hidden;
  vertical-align: top; }
  @media (min-width: 801px) {
    .gridColumn {
      width: 50%; }
      .gridColumns--3 .gridColumn {
        width: 33.33333%; } }
  @media (min-width: 1261px) {
    .gridColumn {
      width: 25%; }
      .gridColumns--2 .gridColumn {
        width: 50%; }
      .gridColumns--3 .gridColumn {
        width: 33.33333%; } }

.page-sidebar {
  width: 100%; }
  .page-sidebar + .page-content {
    width: 100%; }
    .page-sidebar + .page-content .productGrid .product {
      width: 100%; }
  @media (min-width: 481px) {
    .page-sidebar {
      width: 100%; }
      .page-sidebar + .page-content {
        width: 100%; }
        .page-sidebar + .page-content .productGrid .product {
          width: 50%; } }
  @media (min-width: 801px) {
    .page-sidebar {
      width: 25%; }
      .page-sidebar + .page-content {
        width: 75%; }
        .page-sidebar + .page-content .productGrid .product {
          width: 50%; } }
  @media (min-width: 1025px) {
    .page-sidebar {
      width: 25%; }
      .page-sidebar + .page-content {
        width: 75%; }
        .page-sidebar + .page-content .productGrid .product {
          width: 33.33333%; } }
  @media (min-width: 1260px) {
    .page-sidebar {
      width: 20%; }
      .page-sidebar + .page-content {
        width: 80%; }
        .page-sidebar + .page-content .productGrid .product {
          width: 33.33333%; } }
  @media (min-width: 1441px) {
    .page-sidebar {
      width: 20%; }
      .page-sidebar + .page-content {
        width: 80%; }
        .page-sidebar + .page-content .productGrid .product {
          width: 25%; } }

.productGrid {
  display: flex;
  flex-flow: row wrap; }
  .productGrid .product {
    margin-bottom: 1.5rem;
    width: 100%; }
    @media (min-width: 481px) {
      .productGrid .product {
        width: 50%; } }
    @media (min-width: 801px) {
      .productGrid .product {
        width: 33.33333%; } }
    @media (min-width: 1025px) {
      .productGrid .product {
        width: 25%; } }
    @media (min-width: 1441px) {
      .productGrid .product {
        width: 20%; } }

.featuredCategories {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .featuredCategories ul,
  .featuredCategories ol {
    list-style: none;
    margin-bottom: 0; }
  .featuredCategories:before, .featuredCategories:after {
    content: " ";
    display: table; }
  .featuredCategories:after {
    clear: both; }

.featuredCategory {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 50%;
  float: none;
  display: inline-block;
  font-size: 1rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
  text-align: center; }
  .featuredCategory a {
    display: block; }
  @media (min-width: 641px) {
    .featuredCategory {
      min-height: 80px; }
      .featuredCategoriesColumns--3 .featuredCategory,
      .featuredCategoriesColumns--5 .featuredCategory,
      .featuredCategoriesColumns--6 .featuredCategory {
        width: 33.33333%; } }
  @media (min-width: 801px) {
    .featuredCategoriesColumns--3 .featuredCategory,
    .featuredCategoriesColumns--6 .featuredCategory {
      width: 33.33333%; }
    .featuredCategoriesColumns--4 .featuredCategory {
      width: 25%; }
    .featuredCategoriesColumns--5 .featuredCategory {
      width: 20%; } }
  @media (min-width: 1261px) {
    .featuredCategory {
      min-height: 100px;
      width: 25%; }
      .featuredCategoriesColumns--2 .featuredCategory {
        width: 50%; }
      .featuredCategoriesColumns--3 .featuredCategory {
        width: 33.33333%; }
      .featuredCategoriesColumns--5 .featuredCategory {
        width: 20%; }
      .featuredCategoriesColumns--6 .featuredCategory {
        width: 16.66666%; } }

.featuredCategory-name {
  background-color: #232b2e;
  color: white;
  display: inline-block;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  margin: auto;
  padding: 1.5rem 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%; }
  @media (min-width: 641px) {
    .featuredCategory-name {
      font-size: 16px;
      background-color: rgba(35, 43, 46, 0.8);
      padding: 1.5rem;
      bottom: 1.5rem;
      left: 0;
      position: absolute;
      right: 0;
      width: 75%; } }

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

@media (min-width: 641px) {
  .actionBar-section {
    float: right; } }

.actionBar-section .form-field {
  text-align: center; }

.accordion--navList .accordion-title {
  font-weight: 300;
  text-transform: uppercase; }

.sidebarBlock-heading {
  text-transform: uppercase; }

.productCount {
  margin-bottom: 1rem;
  text-align: center; }
  @media (min-width: 641px) {
    .productCount {
      float: left;
      margin: 0;
      text-align: left; } }

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

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

@media (min-width: 801px) {
  .subCategory-grid .gridColumn {
    margin-bottom: 0.75rem; } }

.brand-image-container {
  max-height: 8.33333rem;
  max-width: none;
  text-align: center;
  z-index: -1; }

.alternativeProducts {
  margin-bottom: 3rem; }
  @media (min-width: 1261px) {
    .alternativeProducts .page-heading {
      background-color: #e2e2e2;
      color: #050505;
      display: table;
      float: left;
      margin: 0 1.5rem 0 0;
      width: 20%; }
      .alternativeProducts .page-heading span {
        display: table-cell;
        padding: 2rem;
        vertical-align: middle; }
        .alternativeProducts .page-heading span:after {
          display: none; }
    .alternativeProducts .productCarousel,
    .alternativeProducts .productGrid {
      display: inline-block;
      width: 80%; } }

@media (min-width: 641px) {
  .card-body {
    text-align: center; } }

.card-title {
  font-family: "Open Sans"; }

.card-figcaption {
  bottom: 1rem;
  height: auto;
  padding: 0;
  top: auto; }
  .card-figure:hover .card-figcaption {
    opacity: 0; }
  .card:hover .card-figcaption {
    background-color: none;
    opacity: 1; }

.card-figcaption-body {
  transform: none; }
  .card-figcaption-body input[type="checkbox"] {
    display: none; }
  .card-figcaption-body .button--card-button-style {
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-table;
    height: 3.33333rem;
    line-height: normal;
    margin: 0 0 1.5rem;
    padding: 0;
    width: 3.33333rem; }
    .card-figcaption-body .button--card-button-style + .button--card-button-style {
      margin-left: 0.41667rem; }
  .card-figcaption-body .button--primary {
    background-color: #232b2e;
    border-color: #232b2e;
    color: white;
    display: table-cell;
    margin-top: 0.75rem; }
    .card-figcaption-body .button--primary:hover {
      background-color: #232b2e;
      border-color: #232b2e;
      color: white; }
    .card-figcaption-body .button--primary:active {
      background-color: #232b2e;
      border-color: #232b2e;
      color: white; }
  .card-figcaption-body .icon {
    display: table-cell;
    line-height: 1; }
    .card-figcaption-body .icon svg {
      height: 1.41667rem;
      width: 1.41667rem;
      fill: #373737;
      stroke: #373737; }

.card-rating {
  margin-top: 1.5rem; }
  .card-rating .rating--small {
    background-color: rgba(255, 255, 255, 0.66666);
    padding: 0.16667rem 0.75rem; }

.brandName {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal; }

.productCarousel-slide .card,
.product .card {
  border: 1px solid white;
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 1.5rem;
  margin-bottom: 0; }
  @media (min-width: 801px) {
    .productCarousel-slide .card:hover,
    .product .card:hover {
      border: 1px solid #ebebeb; } }

.card-figure {
  background: white; }

.productCarousel-slide {
  height: auto; }

.productCarousel .slick-track {
  display: flex; }

.card, .alternativeProducts .page-heading, .relatedContent, .panel-body, .panel-header, .panel, #consent-manager * {
  border-radius: 0px; }

.featuredCategory-name {
  border-radius: 0; }
  @media (min-width: 641px) {
    .featuredCategory-name {
      border-radius: 0px; } }

.heroCarousel-content {
  border-radius: 0; }
  @media (min-width: 801px) {
    .heroCarousel-content {
      border-radius: 0px; } }

.relatedContent-thumbnail img {
  border-radius: 0px 0px 0 0; }
  @media (min-width: 801px) {
    .relatedContent-thumbnail img {
      border-radius: 0 0px 0px 0; } }

.card-text {
  margin-bottom: 0.75rem; }
  .card-text .price-flex {
    display: flex;
    justify-content: center; }
    .card-text .price-flex .price-section {
      margin-left: 0.25rem;
      margin-right: 0.25rem; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

input[type='number'] {
  -moz-appearance: textfield; }

.form-label {
  cursor: default;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 300; }
  .form-label.form-label--alternate, .form-label.cart-item-label,
  .gift-certificate-form .form-radio + .form-label {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-style: normal; }

.form-label--inlineSmall small.required-label,
.form-label small {
  color: #cc4749;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-style: normal; }

@media (min-width: 1261px) {
  .form-prefixPostfix-button--postfix {
    margin: 0; } }

.form-prefixPostfix .form-input,
.form-prefixPostfix .button,
.form-input,
.form-select,
.estimator-form-input .form-select {
  height: 4rem; }

.form-select,
.estimator-form-input .form-select {
  background-position-y: center; }

.form-select--short {
  max-width: 10rem;
  padding-right: 0; }

.footer .form-prefixPostfix .form-input {
  background-color: white;
  border-color: white; }

.form-actions .button,
.form-actions input,
.form-actions a {
  vertical-align: middle; }

.form-increment .button {
  height: auto; }

.form-input--incrementTotal {
  border-color: #ebebeb;
  border-style: solid;
  border-width: 1px;
  font-weight: 400;
  height: auto;
  max-width: 4rem;
  padding: 0.75rem;
  width: auto; }

.form-row .form-column .form-field {
  padding: 0; }
  .form-row .form-column .form-field.form-field-group {
    padding: 0.75rem; }

.form-radio + .form-label:before {
  height: 16px;
  width: 16px; }

.form-radio + .form-label:after {
  top: 4px; }

@media (min-width: 801px) {
  .form-minMaxRow .form-field {
    width: 50%; }
    .form-minMaxRow .form-field + .form-field + .form-field {
      margin-top: 0.75rem;
      width: 100%; } }

.actionBar-section .form-label {
  color: #050505; }

.form-select,
.actionBar-section .form-select {
  color: #050505; }

.actionBar-section .form-select {
  height: auto; }

.form-field > .form-checkbox + .form-label,
.form-field > .form-radio + .form-label {
  margin-left: 0;
  min-height: 2rem;
  padding-top: 0.16667rem;
  width: 100%; }

.button {
  border-width: 2px;
  font-family: "Open Sans";
  height: auto;
  padding: 1.5rem; }
  .form-increment .button {
    border: 0;
    line-height: normal; }

.navList-action--checkbox::before {
  border-radius: 0; }

.card-tags {
  position: absolute;
  top: 0;
  z-index: 5; }
  .productView-product .card-tags {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative; }
    .productView-product .card-tags + .productView-brand {
      margin-top: 1.5rem; }

.storeTag {
  display: inline-block;
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: normal;
  margin-bottom: 0.41667rem;
  padding: 0.41667rem 0.66667rem;
  text-transform: uppercase; }
  @media (min-width: 641px) {
    .storeTag {
      font-size: 13px;
      padding: 0.75rem 1rem; } }
  .storeTag.customTag {
    background-color: #6b3418;
    color: white; }
    .storeTag.customTag .icon svg {
      fill: white;
      stroke: white; }
  .storeTag.lowStock {
    background-color: #6b3418;
    color: white; }
    .storeTag.lowStock .icon svg {
      fill: white;
      stroke: white; }
  .storeTag.saleTag {
    background-color: #6b3418;
    color: white; }
    .storeTag.saleTag .icon svg {
      fill: white;
      stroke: white; }
  .storeTag .saleSavingTag {
    display: none; }
    @media (min-width: 801px) {
      .storeTag .saleSavingTag {
        display: inline; } }
  .storeTag .icon {
    height: 1.16667rem;
    width: 1.16667rem; }
  .storeTag .icon svg {
    stroke-width: 0.5; }

.footer-payment-icons {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  font-size: 2rem;
  height: auto;
  justify-content: center; }
  @media (min-width: 641px) {
    .footer-payment-icons {
      justify-content: flex-start; } }
  .footer-payment-icons span {
    height: 3.33333rem;
    margin: auto 0.41667rem;
    position: relative;
    width: 4.58333rem; }
    .footer-payment-icons span:first-child {
      margin-left: 0; }
    .footer-payment-icons span:last-child {
      margin-right: 0; }
    .footer-payment-icons span.payment-icon-square {
      margin-left: -0.41667rem;
      margin-right: -0.41667rem; }
  .footer-payment-icons svg {
    height: 100%;
    width: 100%; }

.pace-progress {
  height: 0.1rem; }

.blogPosts {
  list-style: none;
  margin-left: 0;
  margin: 0 -0.75rem;
  max-width: none;
  width: auto;
  font-size: 0; }
  .blogPosts ul,
  .blogPosts ol {
    list-style: none;
    margin-bottom: 0; }
  .blogPosts:before, .blogPosts:after {
    content: " ";
    display: table; }
  .blogPosts:after {
    clear: both; }

.blogPost {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
  float: none;
  display: inline-block;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  vertical-align: top; }
  .blogPost .card {
    display: table;
    height: 100%;
    margin-bottom: 1.5rem;
    width: 100%; }
  @media (min-width: 641px) {
    .blogPost {
      width: 50%; }
      .postColumns--3 .blogPost {
        width: 33.33333%; }
      .blogPost .card {
        padding: 1rem; } }
  @media (min-width: 801px) {
    .blogPost .card {
      border: 1px solid #ebebeb;
      margin-bottom: 0;
      padding: 1.5rem; }
    .blogPost .card-image {
      max-height: 100%;
      object-fit: cover;
      width: 100%; } }
  @media (min-width: 1261px) {
    .blogPost {
      width: 25%; }
      .postColumns--2 .blogPost {
        width: 50%; }
      .postColumns--3 .blogPost {
        width: 33.33333%; } }
  .blogPost .card-body {
    display: table-cell;
    padding: 1rem 1rem 0;
    text-align: center;
    vertical-align: middle; }
    @media (min-width: 1261px) {
      .blogPost .card-body {
        padding: 1.5rem 1.5rem 0; } }
  .blogPost .card-figure + .card-body {
    display: block; }
  .blogPost .card-img-container {
    max-height: 25rem;
    max-width: none; }
    .blogPost .card-img-container:after {
      padding-bottom: 70%; }

.blogPost-thumbnail {
  bottom: auto; }

.blogPosts-more {
  margin-bottom: 1.5rem;
  text-align: center; }

.blogPost-publishedDate,
.blogPost-author,
.blogPost-title {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 300; }

.blogPost-author {
  margin-top: 0.5rem; }

.blogPost-link {
  display: inline-block;
  margin-top: 0.5rem; }

.blogPost-title {
  font-size: 16px;
  text-transform: uppercase; }

.relatedContent,
.relatedProducts {
  display: none; }

.relatedProducts {
  counter-reset: rpcounter; }

.relatedProduct {
  position: relative; }
  .relatedProduct:before, .relatedProduct:after {
    content: " ";
    display: table; }
  .relatedProduct:after {
    clear: both; }
  .relatedProduct:before {
    height: 8.33333rem;
    width: 8.33333rem;
    background-color: white;
    border: 1px solid #ebebeb;
    content: counter(rpcounter);
    counter-increment: rpcounter;
    font-family: "Work Sans", Times, "Times New Roman", serif;
    font-size: 28px;
    font-style: normal;
    line-height: 8.33333rem;
    position: absolute; }
  .relatedProduct:after {
    border-bottom: 0.16667rem solid #050505;
    content: "";
    display: block;
    margin: 2rem auto 4.5rem;
    max-width: 70%;
    width: 6rem; }

.relatedProduct-description {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal; }
  .relatedProduct-description:before {
    content: "“";
    margin-right: -0.25rem; }
  .relatedProduct-description:after {
    content: "”";
    margin-left: -0.25rem; }

.blog-date {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal; }

.blog-post-figure {
  position: relative;
  width: 100%; }
  @media (min-width: 641px) {
    .blog-post-figure {
      width: 83.33333%; } }
  @media (min-width: 801px) {
    .blog-post-figure {
      width: 66.66667%; } }
  @media (min-width: 1261px) {
    .blog-post-figure {
      width: 50%; } }

@media (min-width: 801px) {
  .blog-cover-image {
    max-height: 50rem; } }

@media (min-width: 801px) {
  .blog-cover-image img {
    object-fit: cover;
    max-height: 50rem;
    width: 100%; } }

@media (min-width: 801px) {
  .coverImageOverlay {
    background-color: rgba(35, 43, 46, 0.8);
    bottom: auto;
    height: auto;
    left: 50%;
    margin: auto;
    padding: 1.5rem;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    vertical-align: middle;
    width: 75%; }
    .coverImageOverlay .page-heading,
    .coverImageOverlay .blog-date {
      color: white; }
    .coverImageOverlay .page-heading {
      font-family: "Work Sans", Times, "Times New Roman", serif;
      font-style: normal;
      font-weight: 300;
      text-transform: uppercase; }
      .coverImageOverlay .page-heading span:after {
        border-bottom-color: white; } }

.card-swatches .form-option-variant--color,
.card-swatches .form-option-variant--pattern {
  height: 10px;
  width: 10px; }

.card-swatches .form-option--multi {
  width: 10px; }

.card-swatches .color--duotone {
  width: 50%; }

.card-swatches .color--tritone {
  width: 33%; }
  .card-swatches .color--tritone:last-child {
    width: 34%; }

.productView-options .form-option-variant--color,
.productView-options .form-option-variant--pattern {
  height: 500px;
  width: 500px; }

.productView-options .form-option--multi {
  width: 500px; }

.productView-options .color--duotone {
  width: 50%; }

.productView-options .color--tritone {
  width: 33%; }
  .productView-options .color--tritone:last-child {
    width: 34%; }

.card-swatches,
.card-sizes {
  margin-top: 0.75rem; }
  .card-swatches .form-option,
  .card-sizes .form-option {
    cursor: auto; }
    .card-swatches .form-option:hover,
    .card-sizes .form-option:hover {
      border-color: #ebebeb; }
    .card-swatches .form-option:last-child,
    .card-sizes .form-option:last-child {
      margin-right: 0; }

.swatches--round .form-option-swatch {
  border-radius: 50%; }
  .swatches--round .form-option-swatch > .form-option-variant {
    border-radius: 50%; }
  .swatches--round .form-option-swatch .form-option--multi {
    border-radius: 50%;
    overflow: hidden; }

.swatches--round .form-option-expanded {
  border-radius: 50%; }
  .swatches--round .form-option-expanded > .form-option-image {
    border-radius: 50%; }

.form-option-expanded {
  bottom: calc(100% + 5px);
  top: auto; }

.productView-thumbs {
  list-style: none;
  margin: 1.5rem 0 0 0;
  width: 100%; }
  .productView-thumbs:before, .productView-thumbs:after {
    content: " ";
    display: table; }
  .productView-thumbs:after {
    clear: both; }
  @media (min-width: 801px) {
    .productView-thumbs {
      display: block;
      float: left;
      margin: 0;
      width: 6.25rem; } }
  .productView-thumbs .slick-next,
  .productView-thumbs .slick-prev {
    margin-top: -0.5rem; }
    @media (min-width: 801px) {
      .productView-thumbs .slick-next,
      .productView-thumbs .slick-prev {
        margin-top: -2.5rem; } }

.productView-thumb {
  float: left;
  width: 6.83333rem; }
  @media (min-width: 801px) {
    .productView-thumb {
      float: none;
      margin-bottom: 0.41667rem; } }
  .productView-thumb img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }

.productView-scrollToDescription {
  display: none; }
  @media (min-width: 801px) {
    .productView-scrollToDescription {
      display: block; } }
  .productView-scrollToDescription .icon {
    height: 0.83333rem;
    width: 0.83333rem; }

.productView-description {
  margin-bottom: 2rem; }
  @media (min-width: 1261px) {
    .productView-description {
      width: 40%; } }
  @media (min-width: 1441px) {
    .productView-description {
      width: 33.33333%; } }
  .productView-description.description-split {
    clear: both;
    float: none;
    margin: 0 -1rem 0 1rem;
    padding: 0.08333rem 0 0;
    width: calc(100% - 2rem); }
    @media (min-width: 801px) {
      .productView-description.description-split {
        border-top: 1px solid #ebebeb;
        padding: 2rem 0 0; } }
  .productView-description .productView-description {
    border-bottom: 1px solid #ebebeb;
    float: none;
    padding: 0; }
    .productView-description .productView-description.productView-extra {
      padding-bottom: 2rem; }
    .productView-description .productView-description p {
      margin-bottom: 2rem; }
  .productView-description .productView-title {
    border-bottom: none;
    font-size: 16px;
    margin: 0 0 1rem;
    padding: 0; }

@media (min-width: 801px) {
  .productView-details {
    width: 40%; } }

@media (min-width: 1441px) {
  .productView-details {
    width: 33.33333%; } }

@media (min-width: 801px) {
  .productView-images {
    width: 60%; } }

@media (min-width: 1441px) {
  .productView-images {
    width: 66.66666%; } }

@media (min-width: 801px) {
  .productView-images .productView-image.has-thumbs {
    float: right;
    width: calc(100% - 7.25rem); } }

@media (min-width: 320px) and (max-width: 801px) {
  .productView-image {
    pointer-events: all; } }

.productView-title {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  margin: 0 0 0.75rem;
  text-transform: uppercase; }
  @media (min-width: 1261px) {
    .productView-title {
      margin: 0.75rem 0; } }

.productView-brand {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  margin: -0.75rem 0 0.41667rem;
  text-transform: none; }

.productView-price {
  font-size: 16px;
  display: flex;
  flex-flow: row wrap; }
  .productView-price .price-section {
    margin-right: 0.5rem; }
  .productView-price .price-flex {
    display: flex; }
    .productView-price .price-flex .price-now-label:empty {
      display: none; }
  @media (min-width: 801px) {
    .productView-price {
      font-size: 18px; } }

.productView-info {
  margin-bottom: 0; }
  @media (min-width: 641px) {
    .productView-info > :first-child {
      margin-top: 1.5rem; }
    .productView-info .productView-info-name,
    .productView-info .productView-info-value {
      float: left;
      margin-bottom: 0;
      margin-top: 1rem; }
    .productView-info .productView-info-name:first-of-type,
    .productView-info .productView-info-value:first-of-type {
      margin-top: 0; } }

.productView-info-name {
  font-weight: 700; }

.productView-options {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 2rem;
  text-align: left; }
  .productView-options .form-field {
    margin-bottom: 1.5rem; }
  .productView-options .productView-info {
    margin-bottom: 2rem; }
    .productView-options .productView-info .productView-info-name {
      font-weight: 400; }

.productView-options .form-action .button.dropdown-menu-button-wishList {
  border: none;
  display: inline-table;
  line-height: normal;
  margin-bottom: 0;
  margin-right: 0;
  padding-left: 1rem;
  padding-right: 1rem; }
  .productView-options .form-action .button.dropdown-menu-button-wishList .icon {
    display: table-cell;
    float: none;
    margin-left: 0; }
    .productView-options .form-action .button.dropdown-menu-button-wishList .icon svg {
      fill: #373737;
      height: 1.33333rem;
      stroke: #373737;
      width: 1.5rem; }

.productView-options .form-action.form-addToCart {
  margin-top: 0.75rem;
  padding-left: 0; }
  @media (min-width: 1261px) {
    .productView-options .form-action.form-addToCart {
      margin-top: 1rem;
      width: 65%; } }
  .productView-options .form-action.form-addToCart .button {
    width: 100%; }

.productView-options.has-wishlist .form-action.form-addToCart {
  float: left;
  max-width: 460px;
  width: calc(100% - 65px); }
  @media (min-width: 641px) {
    .productView-options.has-wishlist .form-action.form-addToCart {
      width: 65%; } }

.productView-options.has-wishlist .form-action.form-wishlist {
  display: inline-block;
  margin-top: 0.75rem;
  width: 5.41667rem; }
  @media (min-width: 1261px) {
    .productView-options.has-wishlist .form-action.form-wishlist {
      margin-top: 1rem; } }
  @media (min-width: 1261px) {
    .productView-options.has-wishlist .form-action.form-wishlist .button {
      width: 100%; } }

.productView-info-bulkPricing,
.productView-availability {
  clear: both;
  text-align: left; }

.productView-availability {
  margin: 0 0 2rem; }
  .productView-availability .icon {
    margin-right: 0.75rem;
    vertical-align: inherit; }

.dropdown-menu-wishList {
  background-color: white;
  border: 1px solid #ebebeb;
  left: auto !important;
  margin: auto;
  min-width: 240px;
  padding: 1rem;
  right: 0 !important;
  text-align: center;
  width: 100% !important; }
  .dropdown-menu-wishList .button {
    border: none;
    text-transform: none; }
    .dropdown-menu-wishList .button:last-child {
      margin-bottom: 0; }
  .dropdown-menu-wishList.is-open:before {
    border: inset 10px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent #ebebeb transparent;
    border-bottom-style: solid;
    bottom: 100%;
    right: 1.83333rem;
    position: absolute; }
  .dropdown-menu-wishList.is-open:after {
    border: inset 8px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent white transparent;
    border-bottom-style: solid;
    bottom: 100%;
    right: 2rem;
    position: absolute; }

.relatedContent {
  background: #ebebeb;
  margin: 3rem 0; }
  .relatedContent:before, .relatedContent:after {
    content: " ";
    display: table; }
  .relatedContent:after {
    clear: both; }
  .relatedContent .relatedContent-feature {
    display: flex;
    flex-direction: column; }
    @media (min-width: 801px) {
      .relatedContent .relatedContent-feature {
        display: table;
        width: 100%; } }
  .relatedContent .relatedContent-figure {
    order: 1; }
    @media (min-width: 801px) {
      .relatedContent .relatedContent-figure {
        display: table-cell;
        text-align: right;
        width: 50%; } }
  .relatedContent .relatedContent-body {
    order: 2;
    padding: 2.25rem 1.5rem;
    text-align: center;
    vertical-align: middle; }
    @media (min-width: 801px) {
      .relatedContent .relatedContent-body {
        display: table-cell;
        padding: 1.5rem;
        width: 50%; } }
  .relatedContent .relatedContent-title {
    margin-top: 0; }
    .relatedContent .relatedContent-title a {
      text-decoration: none; }
  .relatedContent .relatedContent-thumbnail {
    margin: 0; }
    .relatedContent .relatedContent-thumbnail img {
      width: 100%; }
  .relatedContent .relatedContent-header .page-heading {
    margin-bottom: 1.5rem;
    color: black; }
    .relatedContent .relatedContent-header .page-heading span:after {
      border-color: black; }
  .relatedContent .relatedContent-author,
  .relatedContent .relatedContent-date,
  .relatedContent .relatedContent-body {
    font-family: "Work Sans", Times, "Times New Roman", serif;
    font-size: 13px;
    font-style: normal;
    color: black; }
    .relatedContent .relatedContent-author a,
    .relatedContent .relatedContent-date a,
    .relatedContent .relatedContent-body a {
      color: black; }
  .relatedContent .relatedContent-link {
    text-transform: uppercase; }

.productReviews,
.productView-upsell,
.videoGallery {
  border-top: 1px solid #ebebeb;
  margin-top: 2rem;
  padding-top: 3rem; }
  .relatedContent + .productReviews, .relatedContent +
  .productView-upsell, .relatedContent +
  .videoGallery {
    border-top: none;
    padding-top: 0; }

.medium-zoom-overlay,
.medium-zoom-image--open {
  z-index: 2500; }

.productReview {
  display: block;
  margin: 0 auto 3rem;
  text-align: center; }

.productReview-title {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase; }

.productView-reviewLink + .productView-reviewLink {
  display: inline-block; }

.productView.uppercaseTitles .productView-title {
  text-transform: uppercase; }

.videoGallery-content {
  margin: auto;
  width: 100%; }
  @media (min-width: 801px) {
    .videoGallery-content {
      width: 80%; } }
  @media (min-width: 1261px) {
    .videoGallery-content {
      width: 50%; } }

.videoGallery-main {
  -webkit-overflow-scrolling: touch; }

.videoGallery-item {
  width: 100%; }

.video-title {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase; }

.video-figure {
  margin-right: 2rem;
  max-width: 10rem;
  width: calc(25% - 2rem); }

.video-body {
  float: left;
  width: 75%; }
  @media (min-width: 801px) {
    .video-body {
      width: calc(100% - 12rem); } }

@media (min-width: 1261px) {
  .videoGallery-list {
    margin: auto;
    width: 75%; } }

.pricing-details--hidden {
  display: none; }

[data-content-region="product_below_price"] {
  margin-top: 0.75rem; }
  [data-content-region="product_below_price"]:empty {
    margin-top: 0; }

.cart-total .form-input {
  height: 4rem; }

@media (min-width: 1261px) {
  [data-cart-content] {
    float: left;
    width: 70%; } }

@media (min-width: 1261px) {
  .static-sidebar {
    float: right;
    width: 25%; } }

@media (min-width: 801px) {
  .cart-totals {
    width: 40%; } }

@media (min-width: 1261px) {
  .cart-totals {
    width: 100%; } }

.coupon-code-cancel,
.shipping-estimate-hide {
  font-style: normal; }

.cart-total + .cart-total {
  border-top: 1px solid #ebebeb; }

.cart-total-label,
.cart-total-value {
  padding: 1rem 0; }

.cart-total-label {
  text-align: left;
  text-transform: uppercase; }

.cart-total-value {
  text-align: right;
  width: 66.66666%; }
  @media (min-width: 641px) {
    .cart-total-value {
      width: 50%; } }

.cart-header-item {
  text-transform: uppercase; }

.cart-item-info {
  text-transform: uppercase; }

@media (min-width: 641px) {
  .cart-item-info + .cart-item-info {
    margin-top: 0; } }

.cart-item-brand {
  font-family: "Work Sans", Times, "Times New Roman", serif;
  font-style: normal; }

.cart-actions .footer-payment-icons {
  color: rgba(55, 55, 55, 0.85);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  text-align: center; }
  @media (min-width: 641px) {
    .cart-actions .footer-payment-icons {
      margin-top: 0.75rem;
      text-align: right; } }

.coupon-form .form-input,
.cart-gift-certificate-form .form-input {
  width: 80%; }

.coupon-form .button,
.cart-gift-certificate-form .button {
  margin: 0; }

.cart-additionalCheckoutButtons > div {
  margin-top: 0.75rem;
  clear: both; }

.cart-additionalCheckoutButtons .apple-pay-checkout-button {
  margin-bottom: 0.75rem; }

.new-customer .panel {
  border: 1px solid #ebebeb;
  text-align: center; }

.new-customer .panel-header,
.new-customer .panel-body {
  background-color: white; }

.new-customer .panel-header {
  padding: 2rem 6rem 0; }

.new-customer .panel-body {
  margin-bottom: 0;
  padding: 1rem 6rem 2rem; }

.new-customer .new-customer-fact-list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  text-align: left;
  width: 80%; }
  @media (min-width: 641px) {
    .new-customer .new-customer-fact-list {
      width: 40%; } }
  @media (min-width: 801px) {
    .new-customer .new-customer-fact-list {
      width: 85%; } }
  @media (min-width: 1261px) {
    .new-customer .new-customer-fact-list {
      width: 70%; } }

.new-customer .button {
  margin-bottom: 0; }

.navBar-section {
  display: block;
  flex-flow: row wrap;
  justify-content: center; }
  @media (min-width: 801px) {
    .navBar-section {
      display: flex; } }

.navBar--sub.navBar--account {
  position: relative;
  display: block;
  margin-bottom: 3rem; }
  .navBar--sub.navBar--account .dropdown-menu-button {
    padding: 1rem;
    text-align: left;
    margin-bottom: 0;
    border-width: 1px;
    color: #373737;
    font-weight: 700; }
    .navBar--sub.navBar--account .dropdown-menu-button .icon {
      height: 1.6rem; }
    @media (min-width: 801px) {
      .navBar--sub.navBar--account .dropdown-menu-button {
        display: none; } }
  .navBar--sub.navBar--account .dropdown-menu {
    text-align: left;
    max-width: none;
    border: 1px solid #373737;
    border-top: none;
    left: 0px !important;
    width: 100% !important;
    border-radius: 0;
    height: auto;
    background: white; }
    @media (min-width: 801px) {
      .navBar--sub.navBar--account .dropdown-menu {
        display: block;
        position: static !important;
        background-color: white;
        left: 0;
        top: 0;
        border: 0;
        text-align: center;
        height: auto;
        margin: auto; } }
    .navBar--sub.navBar--account .dropdown-menu .navBar-item {
      display: block;
      padding: 1rem;
      margin: 0; }
      .navBar--sub.navBar--account .dropdown-menu .navBar-item:last-child {
        border-bottom: none; }
      .navBar--sub.navBar--account .dropdown-menu .navBar-item.is-active {
        display: none; }
      @media (min-width: 801px) {
        .navBar--sub.navBar--account .dropdown-menu .navBar-item {
          display: inline-block;
          border-bottom: 1px solid;
          padding: 0;
          margin: 0.75rem; }
          .navBar--sub.navBar--account .dropdown-menu .navBar-item:last-child {
            border-bottom: 1px solid; }
          .navBar--sub.navBar--account .dropdown-menu .navBar-item.is-active {
            border-bottom: none;
            display: inline-block; } }

.navBar--sub .navBar-item {
  margin-bottom: 0.75rem; }
  .navBar--sub .navBar-item.is-active {
    color: #373737;
    border-bottom: 1px solid #373737;
    font-weight: 700; }

.navBar--account {
  display: block; }

.account-row p {
  text-align: center; }

.account-sidebar-block p {
  word-break: break-all; }

.account-message .is-read {
  color: inherit; }

.addressList {
  text-align: center; }

@media (min-width: 641px) {
  .panel--address .panel-body {
    min-height: 23.33333rem; } }

@media (min-width: 641px) {
  .panel--address .form-actions {
    left: 0;
    text-align: center;
    width: 100%; } }

.panel--address .form-actions .button {
  padding-bottom: 1rem;
  padding-top: 1rem; }

.address-title {
  text-transform: uppercase; }

.account-product-title {
  text-transform: uppercase; }
  .account-product-title > a {
    text-decoration: underline; }

.account-orderStatus-action {
  font-size: 12px;
  font-style: normal; }

@media (min-width: 801px) {
  .account-content--fixedSmall {
    width: 65%; } }

.account-product-figure:after {
  display: none; }

.account-orderTotal {
  width: 50%; }

.return-itemTitle {
  font-weight: 700;
  text-transform: uppercase; }

.table-actions .button {
  padding-bottom: 1rem;
  padding-top: 1rem; }

.wishlist--remove-item {
  text-align: center; }

address {
  font-style: normal; }

.footer {
  border-top: none;
  color: #050505;
  padding: 0; }
  .footer > .container {
    padding-top: 3rem;
    padding-bottom: 3rem; }
  .footer .button--primary {
    background-color: #050505;
    border-color: #050505;
    color: white;
    margin-left: 0;
    height: auto; }
    .footer .button--primary:hover {
      background-color: #373737;
      border-color: #373737;
      color: white; }
    .footer .button--primary:active, .footer .button--primary:focus {
      background-color: #050505;
      border-color: #050505;
      color: white; }
    @media (min-width: 1261px) {
      .footer .button--primary {
        border-radius: 0 0px 0px 0; } }
  @media (min-width: 1261px) {
    .footer .form-input {
      border-radius: 0px 0 0 0px;
      height: auto; } }

.footer-info-heading {
  color: #050505;
  font-weight: 300;
  text-transform: uppercase; }

.footer-info-list a {
  color: #373737; }
  .footer-info-list a:hover {
    color: dimgray; }
  .footer-info-list a:active, .footer-info-list a:focus {
    color: dimgray; }

.footer-info-col {
  color: #050505; }

@media (min-width: 641px) {
  .footer-info-col--small {
    width: 33.33334%; } }

@media (min-width: 801px) {
  .footer-info-col--small {
    width: 25%; } }

@media (min-width: 1261px) {
  .footer-info-col--small {
    width: 16.66667%; } }

.footer-info-col--large {
  width: 100%; }
  @media (min-width: 801px) {
    .footer-info-col--large {
      float: right;
      width: 25%; } }
  @media (min-width: 1261px) {
    .footer-info-col--large {
      width: 33.33334%; } }

.footer-copyright a,
.footer-copyright > .powered-by {
  color: #373737; }

@media (min-width: 801px) {
  .footer-phone {
    display: none; } }

.footer-newsletter-info > .footer-info-heading {
  margin-top: 0; }

.footer-newsletter-summary {
  font-size: 10px;
  margin-top: 0.75rem;
  text-align: center; }
  @media (min-width: 641px) {
    .footer-newsletter-summary {
      text-align: left; } }

.footer-simple {
  padding-top: 0; }
  .footer-simple .footer-simple-newsletter:before, .footer-simple .footer-simple-newsletter:after,
  .footer-simple .container:before,
  .footer-simple .container:after {
    content: " ";
    display: table; }
  .footer-simple .footer-simple-newsletter:after,
  .footer-simple .container:after {
    clear: both; }
  .footer-simple .footer-simple-newsletter {
    background-color: white;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    padding: 1.5rem 0; }
    .footer-simple .footer-simple-newsletter .form-field {
      margin: 0; }
    .footer-simple .footer-simple-newsletter .form {
      margin: 0; }
    .footer-simple .footer-simple-newsletter .footer-newsletter-info {
      text-align: center; }
      .footer-simple .footer-simple-newsletter .footer-newsletter-info .footer-info-heading {
        color: #050505;
        margin-bottom: 1.5rem; }
      .footer-simple .footer-simple-newsletter .footer-newsletter-info p {
        display: none; }
    @media (min-width: 801px) {
      .footer-simple .footer-simple-newsletter .footer-newsletter-info {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 33.33333%;
        float: left;
        display: table;
        height: 4rem;
        text-align: left;
        padding-left: 0; }
        .footer-simple .footer-simple-newsletter .footer-newsletter-info .footer-info-heading {
          display: table-cell;
          margin-bottom: 0;
          vertical-align: middle; }
      .footer-simple .footer-simple-newsletter .form {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 66.66667%;
        float: left;
        padding-right: 0; }
      .footer-simple .footer-simple-newsletter .form-prefixPostfix .form-input,
      .footer-simple .footer-simple-newsletter .form-prefixPostfix .button {
        width: auto; }
      .footer-simple .footer-simple-newsletter .form-prefixPostfix .button {
        margin: 0; } }
    @media (min-width: 1261px) {
      .footer-simple .footer-simple-newsletter .footer-newsletter-info {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 25%;
        float: left; }
      .footer-simple .footer-simple-newsletter .form {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 75%;
        float: left; } }
  .footer-simple .footer-simple-navigation {
    text-align: center; }
    @media (min-width: 801px) {
      .footer-simple .footer-simple-navigation .footer-info-list li {
        display: inline-block; } }
    .footer-simple .footer-simple-navigation .footer-info-list a {
      display: inline-block;
      padding: 0.75rem 0.75rem;
      text-transform: uppercase; }
  .footer-simple .footer-simple-info {
    text-align: center;
    padding: 3rem 0; }
  .footer-simple .footer-info-heading {
    margin-top: 0; }
  .footer-simple .footer-copyright {
    text-align: center; }
  .footer-simple .footer-payment-icons {
    justify-content: center;
    margin-bottom: 1.5rem; }
  .footer-simple .footer-copyright-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 1.5rem;
    max-width: none; }
    .footer-simple .footer-copyright-wrap .footer-copyright {
      align-items: center;
      display: flex;
      margin: 0 0.16667rem; }
  .footer-simple .footer-payment-icons {
    max-width: none; }

.footer-bottom-wrap {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  @media (min-width: 641px) {
    .footer-bottom-wrap {
      justify-content: left; } }
  @media (min-width: 801px) {
    .footer-bottom-wrap {
      flex-wrap: nowrap;
      justify-content: space-between; } }

.footer-copyright-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center; }
  @media (min-width: 641px) {
    .footer-copyright-wrap {
      justify-content: left; } }
  @media (min-width: 801px) {
    .footer-copyright-wrap {
      justify-content: flex-start;
      max-width: 50%; } }
  .footer-copyright-wrap .footer-copyright {
    align-items: center;
    display: flex;
    margin: 0 0.16667rem; }
    @media (min-width: 641px) {
      .footer-copyright-wrap .footer-copyright {
        margin: 0 0.41667rem 0 0; } }
  .footer-copyright-wrap .footer-address {
    flex-flow: wrap;
    justify-content: center;
    width: 100%; }
    @media (min-width: 641px) {
      .footer-copyright-wrap .footer-address {
        justify-content: left; } }
  .footer-copyright-wrap .footer-number {
    margin-right: 0.75rem; }

.footer-payment-icons {
  display: flex;
  flex-flow: row wrap;
  font-size: 0;
  justify-content: center;
  margin-top: 1.5rem; }
  @media (min-width: 801px) {
    .footer-payment-icons {
      justify-content: flex-start;
      max-width: 50%;
      margin-top: 0; } }

.footer-payment-icon {
  margin-bottom: 0.75rem;
  margin-top: 0; }

.footer .socialLinks .icon svg {
  fill: #050505; }
  .footer .socialLinks .icon svg:hover, .footer .socialLinks .icon svg:focus, .footer .socialLinks .icon svg:active {
    fill: #373737; }

.addthis_toolbox a.at300b {
  width: 1.66667rem !important; }
  .addthis_toolbox a.at300b .google_plusone_iframe_widget {
    display: none; }

.productView-watchers .icon {
  margin-right: 0.41667rem; }

.gradient .heroCarousel-content {
  background: linear-gradient(45deg, rgba(238, 154, 229, 0.8), rgba(89, 97, 249, 0.8)); }
  .gradient .heroCarousel-content .heroCarousel-title,
  .gradient .heroCarousel-content .heroCarousel-title:after,
  .gradient .heroCarousel-content .heroCarousel-description,
  .gradient .heroCarousel-content .heroCarousel-action {
    color: white; }

.gradient .featuredCategory-name {
  background: linear-gradient(45deg, #ee9ae5, #5961f9);
  color: white; }

.gradient .banners {
  background: linear-gradient(45deg, #ee9ae5, #5961f9);
  color: white; }
  .gradient .banners a {
    color: white; }

.gradient .coverImageOverlay {
  background: linear-gradient(45deg, rgba(238, 154, 229, 0.8), rgba(89, 97, 249, 0.75));
  margin-bottom: 1.5rem;
  padding: 0.75rem; }
  @media (min-width: 801px) {
    .gradient .coverImageOverlay {
      margin: auto;
      padding: 1.5rem; } }
  .gradient .coverImageOverlay .page-heading,
  .gradient .coverImageOverlay .blog-date {
    color: white; }
  .gradient .coverImageOverlay .page-heading span:after {
    border-color: white; }

.gradient .navUser.sticky.fixed .navUser-action {
  color: white; }
  .gradient .navUser.sticky.fixed .navUser-action:hover {
    color: rgba(255, 255, 255, 0.8); }
  .gradient .navUser.sticky.fixed .navUser-action:focus, .gradient .navUser.sticky.fixed .navUser-action:active {
    color: rgba(255, 255, 255, 0.9); }

.gradient .navUser.sticky.fixed svg {
  fill: white;
  stroke: white; }
  .gradient .navUser.sticky.fixed svg:hover {
    fill: rgba(255, 255, 255, 0.8);
    stroke: rgba(255, 255, 255, 0.8); }
  .gradient .navUser.sticky.fixed svg:focus, .gradient .navUser.sticky.fixed svg:active {
    fill: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9); }

.gradient .navUser.sticky.fixed .countPill {
  color: #5961f9;
  background-color: white; }

.gradient .header-logo.sticky.fixed .header-logo-text {
  color: white; }

@media (min-width: 801px) {
  .gradient .header > .navPages-container {
    background: linear-gradient(45deg, #ee9ae5, #5961f9); }
    .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action,
    .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action {
      color: white; }
      .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action:hover,
      .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action:hover {
        color: rgba(255, 255, 255, 0.8); }
      .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action:focus, .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action:active,
      .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action:focus,
      .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action:active {
        color: rgba(255, 255, 255, 0.9); }
      .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action svg,
      .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action svg {
        fill: white;
        stroke: white; }
        .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action svg:hover,
        .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action svg:hover {
          fill: rgba(255, 255, 255, 0.8);
          stroke: rgba(255, 255, 255, 0.8); }
        .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action svg:focus, .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action svg:active,
        .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action svg:focus,
        .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action svg:active {
          fill: rgba(255, 255, 255, 0.9);
          stroke: rgba(255, 255, 255, 0.9); }
      .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action.is-open,
      .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action.is-open {
        color: #373737; }
        .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action.is-open svg,
        .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action.is-open svg {
          fill: #373737;
          stroke: #373737; }
        .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action.is-open:hover,
        .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action.is-open:hover {
          color: #373737; }
          .gradient .header > .navPages-container .navPages-list > .navPages-item > .navPages-action.is-open:hover svg,
          .gradient .header > .navPages-container.sticky.fixed .navPages-list > .navPages-item > .navPages-action.is-open:hover svg {
            fill: #373737;
            stroke: #373737; } }

.gradient .button--action {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #ee9ae5, #5961f9) border-box;
  border: 2px solid transparent; }

.gradient #consent-manager > div > div > div > div button:first-child {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #ee9ae5, #5961f9) border-box;
  border: 2px solid transparent; }

#consent-manager button .gradient:first-child {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #ee9ae5, #5961f9) border-box;
  border: 2px solid transparent; }

.gradient .swal2-modal .swal2-confirm.button,
.gradient .button--primary, .gradient #consent-manager button {
  background: linear-gradient(to right, #ee9ae5, #5961f9) border-box;
  border: 2px solid transparent;
  color: white; }
  .gradient .swal2-modal .swal2-confirm.button:hover,
  .gradient .button--primary:hover, .gradient #consent-manager button:hover {
    background: linear-gradient(to right, rgba(238, 154, 229, 0.8), rgba(89, 97, 249, 0.8)) border-box;
    border: 2px solid transparent; }
  .gradient .swal2-modal .swal2-confirm.button:focus, .gradient .swal2-modal .swal2-confirm.button:active,
  .gradient .button--primary:focus,
  .gradient .button--primary:active, .gradient #consent-manager button:focus, .gradient #consent-manager button:active {
    background: linear-gradient(to right, #ee9ae5, #5961f9) border-box;
    border: 2px solid transparent; }

.slick-slide,
.slick-slide * {
  outline: none; }

.slick-dots li {
  height: 1.41667rem;
  margin: 0.25rem;
  padding: 0;
  width: 1.41667rem; }

.slick-dots li:only-child {
  display: none; }

.slick-dots li button,
.slick-dots li button::before {
  height: 0.66667rem;
  width: 0.66667rem; }

.slick-vertical .slick-prev, .slick-vertical .slick-next {
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg); }

.slick-vertical .slick-next {
  bottom: -50px;
  right: auto;
  top: auto; }

.slick-vertical .slick-prev {
  top: -25px; }

.productCarousel .slick-prev:before,
.productView-thumbs .slick-prev:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M22.4572074 1.00746147l-21 20.02482143 20.9479397 19.9751786' stroke='%23373737' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }

.productCarousel .slick-prev:hover:before, .productCarousel .slick-prev:focus:before, .productCarousel .slick-prev:active:before,
.productView-thumbs .slick-prev:hover:before,
.productView-thumbs .slick-prev:focus:before,
.productView-thumbs .slick-prev:active:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M22.4572074 1.00746147l-21 20.02482143 20.9479397 19.9751786' stroke='%23050505' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }

.productCarousel .slick-next:before,
.productView-thumbs .slick-next:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M1.45679 1.00746147l21 20.02482143L1.50885 41.0074615' stroke='%23373737' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }

.productCarousel .slick-next:hover:before, .productCarousel .slick-next:focus:before, .productCarousel .slick-next:active:before,
.productView-thumbs .slick-next:hover:before,
.productView-thumbs .slick-next:focus:before,
.productView-thumbs .slick-next:active:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M1.45679 1.00746147l21 20.02482143L1.50885 41.0074615' stroke='%23050505' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E"); }

/*!
 *
 *         SimpleBar.js - v2.6.0
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *
 */
[data-simplebar] {
  position: relative;
  z-index: 0 !important;
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch;
  /* Trigger native scrolling for mobile, if not supported, plugin is used. */ }

[data-simplebar="init"] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.simplebar-scroll-content {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  min-width: 100% !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important; }

.simplebar-content {
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  min-height: 100% !important; }

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px; }

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 3px;
  min-height: 10px; }

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 3px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear; }

.simplebar-track.vertical {
  top: 0; }

.simplebar-track.vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px; }

.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px; }

.simplebar-track.horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px; }

.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 3px;
  min-height: 0;
  min-width: 10px;
  width: auto; }

.eapps-instagram-feed * {
  font-family: "Open Sans" !important;
  font-size: 12px !important; }

.eapps-instagram-feed-title {
  font-family: "Work Sans", Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 0 !important;
  letter-spacing: 0.25px !important;
  line-height: 1.8 !important;
  color: #050505;
  margin: 0 0 3rem; }
  .eapps-instagram-feed-title:after {
    border-bottom: 0.16667rem solid #ebebeb;
    content: "";
    display: block;
    margin: 1.5rem auto 0;
    max-width: 70%;
    width: 6rem; }

.eapps-instagram-feed-posts-grid-load-more {
  border-radius: 0 !important;
  border-width: 2px !important;
  height: 4rem !important;
  line-height: 2rem !important;
  padding: 0.91667rem !important;
  text-transform: uppercase !important; }

/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  animation: fa-spin 1s infinite steps(8); }

@keyframes fa-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-aws:before {
  content: "\f375"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comments:before {
  content: "\f086"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frown:before {
  content: "\f119"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-key:before {
  content: "\f084"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-male:before {
  content: "\f183"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-moon:before {
  content: "\f186"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nintendo-switch:before {
  content: "\f418"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-percent:before {
  content: "\f295"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-plane:before {
  content: "\f072"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-print:before {
  content: "\f02f"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-random:before {
  content: "\f074"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-rendact:before {
  content: "\f3e4"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-road:before {
  content: "\f018"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-safari:before {
  content: "\f267"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-strava:before {
  content: "\f428"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-train:before {
  content: "\f238"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fontawesome/fa-regular-400.eot");
  src: url("../fonts/fontawesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-regular-400.woff") format("woff"), url("../fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }

/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fontawesome/fa-solid-900.eot");
  src: url("../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome/fa-solid-900.woff") format("woff"), url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/fontawesome/fa-brands-400.eot");
  src: url("../fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("../fonts/fontawesome/fa-brands-400.woff") format("woff"), url("../fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("../fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands'; }

body[data-aos-duration='50'] [data-aos], [data-aos][data-aos][data-aos-duration='50'] {
  transition-duration: 50ms; }

body[data-aos-delay='50'] [data-aos], [data-aos][data-aos][data-aos-delay='50'] {
  transition-delay: 0; }
  body[data-aos-delay='50'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='50'].aos-animate {
    transition-delay: 50ms; }

body[data-aos-duration='100'] [data-aos], [data-aos][data-aos][data-aos-duration='100'] {
  transition-duration: 100ms; }

body[data-aos-delay='100'] [data-aos], [data-aos][data-aos][data-aos-delay='100'] {
  transition-delay: 0; }
  body[data-aos-delay='100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='100'].aos-animate {
    transition-delay: 100ms; }

body[data-aos-duration='150'] [data-aos], [data-aos][data-aos][data-aos-duration='150'] {
  transition-duration: 150ms; }

body[data-aos-delay='150'] [data-aos], [data-aos][data-aos][data-aos-delay='150'] {
  transition-delay: 0; }
  body[data-aos-delay='150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='150'].aos-animate {
    transition-delay: 150ms; }

body[data-aos-duration='200'] [data-aos], [data-aos][data-aos][data-aos-duration='200'] {
  transition-duration: 200ms; }

body[data-aos-delay='200'] [data-aos], [data-aos][data-aos][data-aos-delay='200'] {
  transition-delay: 0; }
  body[data-aos-delay='200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='200'].aos-animate {
    transition-delay: 200ms; }

body[data-aos-duration='250'] [data-aos], [data-aos][data-aos][data-aos-duration='250'] {
  transition-duration: 250ms; }

body[data-aos-delay='250'] [data-aos], [data-aos][data-aos][data-aos-delay='250'] {
  transition-delay: 0; }
  body[data-aos-delay='250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='250'].aos-animate {
    transition-delay: 250ms; }

body[data-aos-duration='300'] [data-aos], [data-aos][data-aos][data-aos-duration='300'] {
  transition-duration: 300ms; }

body[data-aos-delay='300'] [data-aos], [data-aos][data-aos][data-aos-delay='300'] {
  transition-delay: 0; }
  body[data-aos-delay='300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='300'].aos-animate {
    transition-delay: 300ms; }

body[data-aos-duration='350'] [data-aos], [data-aos][data-aos][data-aos-duration='350'] {
  transition-duration: 350ms; }

body[data-aos-delay='350'] [data-aos], [data-aos][data-aos][data-aos-delay='350'] {
  transition-delay: 0; }
  body[data-aos-delay='350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='350'].aos-animate {
    transition-delay: 350ms; }

body[data-aos-duration='400'] [data-aos], [data-aos][data-aos][data-aos-duration='400'] {
  transition-duration: 400ms; }

body[data-aos-delay='400'] [data-aos], [data-aos][data-aos][data-aos-delay='400'] {
  transition-delay: 0; }
  body[data-aos-delay='400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='400'].aos-animate {
    transition-delay: 400ms; }

body[data-aos-duration='450'] [data-aos], [data-aos][data-aos][data-aos-duration='450'] {
  transition-duration: 450ms; }

body[data-aos-delay='450'] [data-aos], [data-aos][data-aos][data-aos-delay='450'] {
  transition-delay: 0; }
  body[data-aos-delay='450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='450'].aos-animate {
    transition-delay: 450ms; }

body[data-aos-duration='500'] [data-aos], [data-aos][data-aos][data-aos-duration='500'] {
  transition-duration: 500ms; }

body[data-aos-delay='500'] [data-aos], [data-aos][data-aos][data-aos-delay='500'] {
  transition-delay: 0; }
  body[data-aos-delay='500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='500'].aos-animate {
    transition-delay: 500ms; }

body[data-aos-duration='550'] [data-aos], [data-aos][data-aos][data-aos-duration='550'] {
  transition-duration: 550ms; }

body[data-aos-delay='550'] [data-aos], [data-aos][data-aos][data-aos-delay='550'] {
  transition-delay: 0; }
  body[data-aos-delay='550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='550'].aos-animate {
    transition-delay: 550ms; }

body[data-aos-duration='600'] [data-aos], [data-aos][data-aos][data-aos-duration='600'] {
  transition-duration: 600ms; }

body[data-aos-delay='600'] [data-aos], [data-aos][data-aos][data-aos-delay='600'] {
  transition-delay: 0; }
  body[data-aos-delay='600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='600'].aos-animate {
    transition-delay: 600ms; }

body[data-aos-duration='650'] [data-aos], [data-aos][data-aos][data-aos-duration='650'] {
  transition-duration: 650ms; }

body[data-aos-delay='650'] [data-aos], [data-aos][data-aos][data-aos-delay='650'] {
  transition-delay: 0; }
  body[data-aos-delay='650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='650'].aos-animate {
    transition-delay: 650ms; }

body[data-aos-duration='700'] [data-aos], [data-aos][data-aos][data-aos-duration='700'] {
  transition-duration: 700ms; }

body[data-aos-delay='700'] [data-aos], [data-aos][data-aos][data-aos-delay='700'] {
  transition-delay: 0; }
  body[data-aos-delay='700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='700'].aos-animate {
    transition-delay: 700ms; }

body[data-aos-duration='750'] [data-aos], [data-aos][data-aos][data-aos-duration='750'] {
  transition-duration: 750ms; }

body[data-aos-delay='750'] [data-aos], [data-aos][data-aos][data-aos-delay='750'] {
  transition-delay: 0; }
  body[data-aos-delay='750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='750'].aos-animate {
    transition-delay: 750ms; }

body[data-aos-duration='800'] [data-aos], [data-aos][data-aos][data-aos-duration='800'] {
  transition-duration: 800ms; }

body[data-aos-delay='800'] [data-aos], [data-aos][data-aos][data-aos-delay='800'] {
  transition-delay: 0; }
  body[data-aos-delay='800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='800'].aos-animate {
    transition-delay: 800ms; }

body[data-aos-duration='850'] [data-aos], [data-aos][data-aos][data-aos-duration='850'] {
  transition-duration: 850ms; }

body[data-aos-delay='850'] [data-aos], [data-aos][data-aos][data-aos-delay='850'] {
  transition-delay: 0; }
  body[data-aos-delay='850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='850'].aos-animate {
    transition-delay: 850ms; }

body[data-aos-duration='900'] [data-aos], [data-aos][data-aos][data-aos-duration='900'] {
  transition-duration: 900ms; }

body[data-aos-delay='900'] [data-aos], [data-aos][data-aos][data-aos-delay='900'] {
  transition-delay: 0; }
  body[data-aos-delay='900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='900'].aos-animate {
    transition-delay: 900ms; }

body[data-aos-duration='950'] [data-aos], [data-aos][data-aos][data-aos-duration='950'] {
  transition-duration: 950ms; }

body[data-aos-delay='950'] [data-aos], [data-aos][data-aos][data-aos-delay='950'] {
  transition-delay: 0; }
  body[data-aos-delay='950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='950'].aos-animate {
    transition-delay: 950ms; }

body[data-aos-duration='1000'] [data-aos], [data-aos][data-aos][data-aos-duration='1000'] {
  transition-duration: 1000ms; }

body[data-aos-delay='1000'] [data-aos], [data-aos][data-aos][data-aos-delay='1000'] {
  transition-delay: 0; }
  body[data-aos-delay='1000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1000'].aos-animate {
    transition-delay: 1000ms; }

body[data-aos-duration='1050'] [data-aos], [data-aos][data-aos][data-aos-duration='1050'] {
  transition-duration: 1050ms; }

body[data-aos-delay='1050'] [data-aos], [data-aos][data-aos][data-aos-delay='1050'] {
  transition-delay: 0; }
  body[data-aos-delay='1050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1050'].aos-animate {
    transition-delay: 1050ms; }

body[data-aos-duration='1100'] [data-aos], [data-aos][data-aos][data-aos-duration='1100'] {
  transition-duration: 1100ms; }

body[data-aos-delay='1100'] [data-aos], [data-aos][data-aos][data-aos-delay='1100'] {
  transition-delay: 0; }
  body[data-aos-delay='1100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1100'].aos-animate {
    transition-delay: 1100ms; }

body[data-aos-duration='1150'] [data-aos], [data-aos][data-aos][data-aos-duration='1150'] {
  transition-duration: 1150ms; }

body[data-aos-delay='1150'] [data-aos], [data-aos][data-aos][data-aos-delay='1150'] {
  transition-delay: 0; }
  body[data-aos-delay='1150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1150'].aos-animate {
    transition-delay: 1150ms; }

body[data-aos-duration='1200'] [data-aos], [data-aos][data-aos][data-aos-duration='1200'] {
  transition-duration: 1200ms; }

body[data-aos-delay='1200'] [data-aos], [data-aos][data-aos][data-aos-delay='1200'] {
  transition-delay: 0; }
  body[data-aos-delay='1200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1200'].aos-animate {
    transition-delay: 1200ms; }

body[data-aos-duration='1250'] [data-aos], [data-aos][data-aos][data-aos-duration='1250'] {
  transition-duration: 1250ms; }

body[data-aos-delay='1250'] [data-aos], [data-aos][data-aos][data-aos-delay='1250'] {
  transition-delay: 0; }
  body[data-aos-delay='1250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1250'].aos-animate {
    transition-delay: 1250ms; }

body[data-aos-duration='1300'] [data-aos], [data-aos][data-aos][data-aos-duration='1300'] {
  transition-duration: 1300ms; }

body[data-aos-delay='1300'] [data-aos], [data-aos][data-aos][data-aos-delay='1300'] {
  transition-delay: 0; }
  body[data-aos-delay='1300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1300'].aos-animate {
    transition-delay: 1300ms; }

body[data-aos-duration='1350'] [data-aos], [data-aos][data-aos][data-aos-duration='1350'] {
  transition-duration: 1350ms; }

body[data-aos-delay='1350'] [data-aos], [data-aos][data-aos][data-aos-delay='1350'] {
  transition-delay: 0; }
  body[data-aos-delay='1350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1350'].aos-animate {
    transition-delay: 1350ms; }

body[data-aos-duration='1400'] [data-aos], [data-aos][data-aos][data-aos-duration='1400'] {
  transition-duration: 1400ms; }

body[data-aos-delay='1400'] [data-aos], [data-aos][data-aos][data-aos-delay='1400'] {
  transition-delay: 0; }
  body[data-aos-delay='1400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1400'].aos-animate {
    transition-delay: 1400ms; }

body[data-aos-duration='1450'] [data-aos], [data-aos][data-aos][data-aos-duration='1450'] {
  transition-duration: 1450ms; }

body[data-aos-delay='1450'] [data-aos], [data-aos][data-aos][data-aos-delay='1450'] {
  transition-delay: 0; }
  body[data-aos-delay='1450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1450'].aos-animate {
    transition-delay: 1450ms; }

body[data-aos-duration='1500'] [data-aos], [data-aos][data-aos][data-aos-duration='1500'] {
  transition-duration: 1500ms; }

body[data-aos-delay='1500'] [data-aos], [data-aos][data-aos][data-aos-delay='1500'] {
  transition-delay: 0; }
  body[data-aos-delay='1500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1500'].aos-animate {
    transition-delay: 1500ms; }

body[data-aos-duration='1550'] [data-aos], [data-aos][data-aos][data-aos-duration='1550'] {
  transition-duration: 1550ms; }

body[data-aos-delay='1550'] [data-aos], [data-aos][data-aos][data-aos-delay='1550'] {
  transition-delay: 0; }
  body[data-aos-delay='1550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1550'].aos-animate {
    transition-delay: 1550ms; }

body[data-aos-duration='1600'] [data-aos], [data-aos][data-aos][data-aos-duration='1600'] {
  transition-duration: 1600ms; }

body[data-aos-delay='1600'] [data-aos], [data-aos][data-aos][data-aos-delay='1600'] {
  transition-delay: 0; }
  body[data-aos-delay='1600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1600'].aos-animate {
    transition-delay: 1600ms; }

body[data-aos-duration='1650'] [data-aos], [data-aos][data-aos][data-aos-duration='1650'] {
  transition-duration: 1650ms; }

body[data-aos-delay='1650'] [data-aos], [data-aos][data-aos][data-aos-delay='1650'] {
  transition-delay: 0; }
  body[data-aos-delay='1650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1650'].aos-animate {
    transition-delay: 1650ms; }

body[data-aos-duration='1700'] [data-aos], [data-aos][data-aos][data-aos-duration='1700'] {
  transition-duration: 1700ms; }

body[data-aos-delay='1700'] [data-aos], [data-aos][data-aos][data-aos-delay='1700'] {
  transition-delay: 0; }
  body[data-aos-delay='1700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1700'].aos-animate {
    transition-delay: 1700ms; }

body[data-aos-duration='1750'] [data-aos], [data-aos][data-aos][data-aos-duration='1750'] {
  transition-duration: 1750ms; }

body[data-aos-delay='1750'] [data-aos], [data-aos][data-aos][data-aos-delay='1750'] {
  transition-delay: 0; }
  body[data-aos-delay='1750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1750'].aos-animate {
    transition-delay: 1750ms; }

body[data-aos-duration='1800'] [data-aos], [data-aos][data-aos][data-aos-duration='1800'] {
  transition-duration: 1800ms; }

body[data-aos-delay='1800'] [data-aos], [data-aos][data-aos][data-aos-delay='1800'] {
  transition-delay: 0; }
  body[data-aos-delay='1800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1800'].aos-animate {
    transition-delay: 1800ms; }

body[data-aos-duration='1850'] [data-aos], [data-aos][data-aos][data-aos-duration='1850'] {
  transition-duration: 1850ms; }

body[data-aos-delay='1850'] [data-aos], [data-aos][data-aos][data-aos-delay='1850'] {
  transition-delay: 0; }
  body[data-aos-delay='1850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1850'].aos-animate {
    transition-delay: 1850ms; }

body[data-aos-duration='1900'] [data-aos], [data-aos][data-aos][data-aos-duration='1900'] {
  transition-duration: 1900ms; }

body[data-aos-delay='1900'] [data-aos], [data-aos][data-aos][data-aos-delay='1900'] {
  transition-delay: 0; }
  body[data-aos-delay='1900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1900'].aos-animate {
    transition-delay: 1900ms; }

body[data-aos-duration='1950'] [data-aos], [data-aos][data-aos][data-aos-duration='1950'] {
  transition-duration: 1950ms; }

body[data-aos-delay='1950'] [data-aos], [data-aos][data-aos][data-aos-delay='1950'] {
  transition-delay: 0; }
  body[data-aos-delay='1950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1950'].aos-animate {
    transition-delay: 1950ms; }

body[data-aos-duration='2000'] [data-aos], [data-aos][data-aos][data-aos-duration='2000'] {
  transition-duration: 2000ms; }

body[data-aos-delay='2000'] [data-aos], [data-aos][data-aos][data-aos-delay='2000'] {
  transition-delay: 0; }
  body[data-aos-delay='2000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2000'].aos-animate {
    transition-delay: 2000ms; }

body[data-aos-duration='2050'] [data-aos], [data-aos][data-aos][data-aos-duration='2050'] {
  transition-duration: 2050ms; }

body[data-aos-delay='2050'] [data-aos], [data-aos][data-aos][data-aos-delay='2050'] {
  transition-delay: 0; }
  body[data-aos-delay='2050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2050'].aos-animate {
    transition-delay: 2050ms; }

body[data-aos-duration='2100'] [data-aos], [data-aos][data-aos][data-aos-duration='2100'] {
  transition-duration: 2100ms; }

body[data-aos-delay='2100'] [data-aos], [data-aos][data-aos][data-aos-delay='2100'] {
  transition-delay: 0; }
  body[data-aos-delay='2100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2100'].aos-animate {
    transition-delay: 2100ms; }

body[data-aos-duration='2150'] [data-aos], [data-aos][data-aos][data-aos-duration='2150'] {
  transition-duration: 2150ms; }

body[data-aos-delay='2150'] [data-aos], [data-aos][data-aos][data-aos-delay='2150'] {
  transition-delay: 0; }
  body[data-aos-delay='2150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2150'].aos-animate {
    transition-delay: 2150ms; }

body[data-aos-duration='2200'] [data-aos], [data-aos][data-aos][data-aos-duration='2200'] {
  transition-duration: 2200ms; }

body[data-aos-delay='2200'] [data-aos], [data-aos][data-aos][data-aos-delay='2200'] {
  transition-delay: 0; }
  body[data-aos-delay='2200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2200'].aos-animate {
    transition-delay: 2200ms; }

body[data-aos-duration='2250'] [data-aos], [data-aos][data-aos][data-aos-duration='2250'] {
  transition-duration: 2250ms; }

body[data-aos-delay='2250'] [data-aos], [data-aos][data-aos][data-aos-delay='2250'] {
  transition-delay: 0; }
  body[data-aos-delay='2250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2250'].aos-animate {
    transition-delay: 2250ms; }

body[data-aos-duration='2300'] [data-aos], [data-aos][data-aos][data-aos-duration='2300'] {
  transition-duration: 2300ms; }

body[data-aos-delay='2300'] [data-aos], [data-aos][data-aos][data-aos-delay='2300'] {
  transition-delay: 0; }
  body[data-aos-delay='2300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2300'].aos-animate {
    transition-delay: 2300ms; }

body[data-aos-duration='2350'] [data-aos], [data-aos][data-aos][data-aos-duration='2350'] {
  transition-duration: 2350ms; }

body[data-aos-delay='2350'] [data-aos], [data-aos][data-aos][data-aos-delay='2350'] {
  transition-delay: 0; }
  body[data-aos-delay='2350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2350'].aos-animate {
    transition-delay: 2350ms; }

body[data-aos-duration='2400'] [data-aos], [data-aos][data-aos][data-aos-duration='2400'] {
  transition-duration: 2400ms; }

body[data-aos-delay='2400'] [data-aos], [data-aos][data-aos][data-aos-delay='2400'] {
  transition-delay: 0; }
  body[data-aos-delay='2400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2400'].aos-animate {
    transition-delay: 2400ms; }

body[data-aos-duration='2450'] [data-aos], [data-aos][data-aos][data-aos-duration='2450'] {
  transition-duration: 2450ms; }

body[data-aos-delay='2450'] [data-aos], [data-aos][data-aos][data-aos-delay='2450'] {
  transition-delay: 0; }
  body[data-aos-delay='2450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2450'].aos-animate {
    transition-delay: 2450ms; }

body[data-aos-duration='2500'] [data-aos], [data-aos][data-aos][data-aos-duration='2500'] {
  transition-duration: 2500ms; }

body[data-aos-delay='2500'] [data-aos], [data-aos][data-aos][data-aos-delay='2500'] {
  transition-delay: 0; }
  body[data-aos-delay='2500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2500'].aos-animate {
    transition-delay: 2500ms; }

body[data-aos-duration='2550'] [data-aos], [data-aos][data-aos][data-aos-duration='2550'] {
  transition-duration: 2550ms; }

body[data-aos-delay='2550'] [data-aos], [data-aos][data-aos][data-aos-delay='2550'] {
  transition-delay: 0; }
  body[data-aos-delay='2550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2550'].aos-animate {
    transition-delay: 2550ms; }

body[data-aos-duration='2600'] [data-aos], [data-aos][data-aos][data-aos-duration='2600'] {
  transition-duration: 2600ms; }

body[data-aos-delay='2600'] [data-aos], [data-aos][data-aos][data-aos-delay='2600'] {
  transition-delay: 0; }
  body[data-aos-delay='2600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2600'].aos-animate {
    transition-delay: 2600ms; }

body[data-aos-duration='2650'] [data-aos], [data-aos][data-aos][data-aos-duration='2650'] {
  transition-duration: 2650ms; }

body[data-aos-delay='2650'] [data-aos], [data-aos][data-aos][data-aos-delay='2650'] {
  transition-delay: 0; }
  body[data-aos-delay='2650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2650'].aos-animate {
    transition-delay: 2650ms; }

body[data-aos-duration='2700'] [data-aos], [data-aos][data-aos][data-aos-duration='2700'] {
  transition-duration: 2700ms; }

body[data-aos-delay='2700'] [data-aos], [data-aos][data-aos][data-aos-delay='2700'] {
  transition-delay: 0; }
  body[data-aos-delay='2700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2700'].aos-animate {
    transition-delay: 2700ms; }

body[data-aos-duration='2750'] [data-aos], [data-aos][data-aos][data-aos-duration='2750'] {
  transition-duration: 2750ms; }

body[data-aos-delay='2750'] [data-aos], [data-aos][data-aos][data-aos-delay='2750'] {
  transition-delay: 0; }
  body[data-aos-delay='2750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2750'].aos-animate {
    transition-delay: 2750ms; }

body[data-aos-duration='2800'] [data-aos], [data-aos][data-aos][data-aos-duration='2800'] {
  transition-duration: 2800ms; }

body[data-aos-delay='2800'] [data-aos], [data-aos][data-aos][data-aos-delay='2800'] {
  transition-delay: 0; }
  body[data-aos-delay='2800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2800'].aos-animate {
    transition-delay: 2800ms; }

body[data-aos-duration='2850'] [data-aos], [data-aos][data-aos][data-aos-duration='2850'] {
  transition-duration: 2850ms; }

body[data-aos-delay='2850'] [data-aos], [data-aos][data-aos][data-aos-delay='2850'] {
  transition-delay: 0; }
  body[data-aos-delay='2850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2850'].aos-animate {
    transition-delay: 2850ms; }

body[data-aos-duration='2900'] [data-aos], [data-aos][data-aos][data-aos-duration='2900'] {
  transition-duration: 2900ms; }

body[data-aos-delay='2900'] [data-aos], [data-aos][data-aos][data-aos-delay='2900'] {
  transition-delay: 0; }
  body[data-aos-delay='2900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2900'].aos-animate {
    transition-delay: 2900ms; }

body[data-aos-duration='2950'] [data-aos], [data-aos][data-aos][data-aos-duration='2950'] {
  transition-duration: 2950ms; }

body[data-aos-delay='2950'] [data-aos], [data-aos][data-aos][data-aos-delay='2950'] {
  transition-delay: 0; }
  body[data-aos-delay='2950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2950'].aos-animate {
    transition-delay: 2950ms; }

body[data-aos-duration='3000'] [data-aos], [data-aos][data-aos][data-aos-duration='3000'] {
  transition-duration: 3000ms; }

body[data-aos-delay='3000'] [data-aos], [data-aos][data-aos][data-aos-delay='3000'] {
  transition-delay: 0; }
  body[data-aos-delay='3000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='3000'].aos-animate {
    transition-delay: 3000ms; }

body[data-aos-easing="linear"] [data-aos], [data-aos][data-aos][data-aos-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

body[data-aos-easing="ease"] [data-aos], [data-aos][data-aos][data-aos-easing="ease"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); }

body[data-aos-easing="ease-in"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in"] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1); }

body[data-aos-easing="ease-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out"] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1); }

body[data-aos-easing="ease-in-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out"] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1); }

body[data-aos-easing="ease-in-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

body[data-aos-easing="ease-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

body[data-aos-easing="ease-in-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

body[data-aos-easing="ease-in-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

body[data-aos-easing="ease-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

body[data-aos-easing="ease-in-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

body[data-aos-easing="ease-in-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

body[data-aos-easing="ease-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

body[data-aos-easing="ease-in-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

body[data-aos-easing="ease-in-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

body[data-aos-easing="ease-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

body[data-aos-easing="ease-in-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

body[data-aos-easing="ease-in-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

body[data-aos-easing="ease-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

body[data-aos-easing="ease-in-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform; }
  [data-aos^='fade'][data-aos^='fade'].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0); }

[data-aos='fade-up'] {
  transform: translate3d(0, 100px, 0); }

[data-aos='fade-down'] {
  transform: translate3d(0, -100px, 0); }

[data-aos='fade-right'] {
  transform: translate3d(-100px, 0, 0); }

[data-aos='fade-left'] {
  transform: translate3d(100px, 0, 0); }

[data-aos='fade-up-right'] {
  transform: translate3d(-100px, 100px, 0); }

[data-aos='fade-up-left'] {
  transform: translate3d(100px, 100px, 0); }

[data-aos='fade-down-right'] {
  transform: translate3d(-100px, -100px, 0); }

[data-aos='fade-down-left'] {
  transform: translate3d(100px, -100px, 0); }

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^='zoom'][data-aos^='zoom'] {
  opacity: 0;
  transition-property: opacity, transform; }
  [data-aos^='zoom'][data-aos^='zoom'].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1); }

[data-aos='zoom-in'] {
  transform: scale(0.6); }

[data-aos='zoom-in-up'] {
  transform: translate3d(0, 100px, 0) scale(0.6); }

[data-aos='zoom-in-down'] {
  transform: translate3d(0, -100px, 0) scale(0.6); }

[data-aos='zoom-in-right'] {
  transform: translate3d(-100px, 0, 0) scale(0.6); }

[data-aos='zoom-in-left'] {
  transform: translate3d(100px, 0, 0) scale(0.6); }

[data-aos='zoom-out'] {
  transform: scale(1.2); }

[data-aos='zoom-out-up'] {
  transform: translate3d(0, 100px, 0) scale(1.2); }

[data-aos='zoom-out-down'] {
  transform: translate3d(0, -100px, 0) scale(1.2); }

[data-aos='zoom-out-right'] {
  transform: translate3d(-100px, 0, 0) scale(1.2); }

[data-aos='zoom-out-left'] {
  transform: translate3d(100px, 0, 0) scale(1.2); }

/**
 * Slide animations
 */
[data-aos^='slide'][data-aos^='slide'] {
  transition-property: transform; }
  [data-aos^='slide'][data-aos^='slide'].aos-animate {
    transform: translate3d(0, 0, 0); }

[data-aos='slide-up'] {
  transform: translate3d(0, 100%, 0); }

[data-aos='slide-down'] {
  transform: translate3d(0, -100%, 0); }

[data-aos='slide-right'] {
  transform: translate3d(-100%, 0, 0); }

[data-aos='slide-left'] {
  transform: translate3d(100%, 0, 0); }

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^='flip'][data-aos^='flip'] {
  backface-visibility: hidden;
  transition-property: transform; }

[data-aos='flip-left'] {
  transform: perspective(2500px) rotateY(-100deg); }
  [data-aos='flip-left'].aos-animate {
    transform: perspective(2500px) rotateY(0); }

[data-aos='flip-right'] {
  transform: perspective(2500px) rotateY(100deg); }
  [data-aos='flip-right'].aos-animate {
    transform: perspective(2500px) rotateY(0); }

[data-aos='flip-up'] {
  transform: perspective(2500px) rotateX(-100deg); }
  [data-aos='flip-up'].aos-animate {
    transform: perspective(2500px) rotateX(0); }

[data-aos='flip-down'] {
  transform: perspective(2500px) rotateX(100deg); }
  [data-aos='flip-down'].aos-animate {
    transform: perspective(2500px) rotateX(0); }

#consent-manager-update-banner {
  display: none !important; }

#consent-manager {
  right: auto !important;
  bottom: 10px !important;
  left: 10px !important;
  width: 250px !important; }
  #consent-manager * {
    font-size: 12px !important;
    font-family: "Open Sans" !important; }

#consent-manager > div > div {
  background: white !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, #ebebeb 0px 0px 0px 1px; }

#consent-manager > div > div > div > div {
  flex-direction: column !important;
  width: 100% !important; }
  #consent-manager > div > div > div > div p {
    color: #050505 !important; }
  #consent-manager > div > div > div > div button {
    margin-left: 0 !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    background: #232b2e;
    color: white !important;
    border-radius: 0px !important; }
    #consent-manager > div > div > div > div button:first-child {
      background: transparent;
      color: #050505 !important;
      border-color: #050505; }

.recent-sellers {
  bottom: 1.5rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, #ebebeb 0px 0px 0px 1px;
  border-radius: 0px;
  display: none;
  left: 1.5rem;
  padding: 0.41667rem;
  position: fixed;
  z-index: 99;
  min-height: 100px;
  width: 100%;
  max-width: 350px; }

.recent-sellers-visible {
  display: flex; }

.recent-sellers-image-container {
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  margin-right: 0.83333rem; }
  .recent-sellers-image-container .recent-sellers-image {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.recent-sellers-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }

.recent-seller-customer,
.recent-seller-time {
  font-size: 10px; }

.recent-seller-product {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none; }

.recent-seller-price {
  font-size: 16px;
  font-weight: 700;
  color: #757575; }

@media all and (min-width: 801px) {
  .productView-description.description-split {
    float: left;
    width: 60%;
    clear: left;
    margin: 0; } }

.cms-content ol, .cms-content ul {
  width: 100%; }

.productView .productView-images .productView-image {
  flex-direction: column; }

.productView .productView-images .productView-image .prod-img-description {
  margin-top: 30px;
  display: block;
  width: 100%;
  text-align: center; }

html,
body {
  scroll-behavior: smooth; }

.aria-description--hidden {
  display: none; }

.heroCarousel-image.video {
  opacity: 1;
  width: 100%; }

#video-container {
  overflow: hidden;
  pointer-events: none;
  position: relative;
  width: 100%; }
  @media (min-width: 801px) {
    #video-container {
      max-height: 47vw; } }
  @media (min-width: 1261px) {
    #video-container {
      max-height: 50rem; } }
  #video-container #heroVideo {
    height: 50vw;
    left: 0;
    margin-left: 0;
    max-height: unset;
    pointer-events: none;
    position: relative; }
    @media (min-width: 801px) {
      #video-container #heroVideo {
        height: 144vw;
        top: -50vw; } }
    @media (min-width: 1261px) {
      #video-container #heroVideo {
        height: 90rem;
        top: -20rem; } }

.trade_wrap {
  margin: 1.5rem 0 0;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 10px; }
  .trade_wrap h6 {
    margin-top: 0;
    font-size: 18px;
    line-height: 24px;
    font-family: "Work Sans",sans-serif;
    font-weight: 600; }
  .trade_wrap p, .trade_wrap li {
    font-size: 14px;
    margin: 0; }

.help_btn {
  padding: 10px;
  border-radius: 10px;
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  background: #EEEDEE;
  border: 1px solid #ccc; }
  .help_btn h6 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    width: 90px; }
  .help_btn span {
    color: #000;
    font-size: 14px;
    line-height: 16px;
    width: calc(100% - 90px); }

.productView-options.has-wishlist .form-action.form-wishlist {
  width: 65px;
  margin-top: 0; }

@media (max-width: 800px) {
  .header-logo {
    max-width: 50%; }
  .sticky.fixed .header-logo-image {
    max-height: 3.08333rem; }
  .navUser.sticky.fixed {
    width: 100%;
    top: 7px; }
  .navUser.sticky.fixed .navUser-section .navUser-item--search {
    display: inline-block !important; }
  .navPages-container .navPages .navPages-quickSearch {
    display: none; }
  .navUser.sticky.fixed .navUser-section.navUser-section--alt {
    display: flex; }
  .navUser-section.navUser-section--alt {
    display: flex; }
  .navUser-action {
    padding: 0.7rem 0.3rem; }
  .navUser-item--cart .navUser-action {
    padding-right: 0.5rem; } }

.navUser-item--search {
  position: unset; }
  @media (max-width: 800px) {
    .navUser-item--search {
      display: inline-block; }
      .navUser-item--search .navUser-action.navUser-action--quickSearch .user-icon {
        display: inline-block; } }

.dropdown--quickSearch {
  background-color: #fff !important;
  transform: translate(-50%, -50%) !important; }
  .dropdown--quickSearch .container {
    max-width: 100% !important;
    width: 100%; }
    .dropdown--quickSearch .container .form {
      margin: auto;
      max-width: 100% !important;
      width: 100%; }
      .dropdown--quickSearch .container .form .form-input {
        height: 4rem;
        border-radius: 32px; }
        .dropdown--quickSearch .container .form .form-input:focus {
          border-color: #75787a;
          outline: none; }
    .dropdown--quickSearch .container .modal-close {
      display: none !important; }
  @media (min-width: 1261px) {
    .dropdown--quickSearch .container {
      padding: 0 !important; } }

.dropdown--quickSearch.is-open {
  left: 0% !important;
  top: calc(100% + 70px) !important;
  border-radius: 8px;
  width: 93.8% !important; }
  .dropdown--quickSearch.is-open::before, .dropdown--quickSearch.is-open::after {
    display: none; }

@media (max-width: 800px) {
  .dropdown--quickSearch.is-open {
    left: 50% !important;
    top: calc(100% + 65px) !important; } }

@media (min-width: 800px) and (max-width: 870px) {
  .dropdown--quickSearch.is-open {
    width: 95vw !important;
    left: -5% !important; } }

@media (min-width: 871px) and (max-width: 950px) {
  .dropdown--quickSearch.is-open {
    width: 95vw !important;
    left: -2% !important; } }

@media (min-width: 951px) and (max-width: 1023px) {
  .dropdown--quickSearch.is-open {
    width: 96vw !important;
    left: 0% !important; } }

@media (min-width: 1024px) {
  .dropdown--quickSearch.is-open {
    width: 90vw !important; } }

@media (min-width: 1200px) {
  .dropdown--quickSearch.is-open {
    width: 80vw !important; } }

@media (min-width: 1400px) {
  .dropdown--quickSearch.is-open {
    width: 70vw !important; } }

@media (min-width: 801px) {
  .navUser.sticky.fixed .navUser-section.navUser-section--alt .navUser-item--search {
    display: none !important; } }

.dfd-classic {
  box-shadow: unset !important;
  border: 0 !important; }

@media all and (min-width: 801px) {
  .header-top .navUser.left {
    right: unset;
    left: calc(12rem + 200px); }
  .header-top .header-logo.header-logo--left {
    margin-left: 6rem; }
  .StepImage svg {
    width: 100%; }
  .navPages-list.marketplace .navPages-item.shop-by-collection .navPage-subMenu {
    width: 600px !important;
    border: 1px solid #242b2e;
    border-bottom: 0;
    border-right: 0;
    background-color: transparent; }
    .navPages-list.marketplace .navPages-item.shop-by-collection .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item {
      width: 33.333%;
      background-color: #e5e5e5;
      border: 0;
      border-bottom: 1px solid #242b2e;
      border-right: 1px solid #242b2e; }
  #menu .navPages.top-bar {
    text-align: left;
    max-width: 156rem;
    padding: 0; } }
  @media all and (min-width: 801px) and (min-width: 1261px) {
    #menu .navPages.top-bar {
      padding: 0 6rem; } }

@media all and (min-width: 801px) {
  .header-top .header-logo.sticky.fixed {
    height: auto;
    width: 120px; }
  #menu.navPages-container.sticky.fixed .navPages.top-bar {
    text-align: center;
    width: 80%;
    max-width: 80%;
    padding: 0;
    margin: 0 auto; }
  #menu.navPages-container.sticky.fixed .navPages.top-bar .navPages-action {
    font-size: 12px; }
  .footer-payment-icons {
    justify-content: flex-end;
    max-width: 100%; } }

@media all and (min-width: 1260px) {
  .page-sidebar + .page-content .productGrid .product {
    width: 25%; }
  .productView-options .form-action.form-addToCart {
    width: auto; }
    .productView-options .form-action.form-addToCart .button {
      width: auto; } }

@media all and (min-width: 1441px) {
  .page-sidebar {
    width: 15%; }
  .page-sidebar + .page-content {
    width: 85%; } }

div#modal {
  overflow-y: auto !important; }
  div#modal .modal-body.quickView {
    overflow: hidden;
    max-height: 100% !important; }

body {
  line-height: 1.8; }

.button {
  padding: 1.5rem 2.25rem; }

.body-page .row:after, .body-page .row:before {
  display: table;
  content: "";
  clear: both; }

.body-page .column {
  float: left;
  width: 33.33%;
  padding: 5px; }

.category-description .page-heading span:after {
  border-bottom: .16667rem solid #050505;
  content: "";
  display: block;
  margin: 1.5rem auto 0;
  max-width: 70%;
  width: 6rem; }

.card-body .card-text {
  color: #373737;
  font-size: 12px; }

.body-category .CardDescription, .body-brand .CardDescription {
  display: block !important; }

.body-category .ProdCardBtn, .body-brand .ProdCardBtn {
  display: block !important; }

.body-category .CardAvailable, .body-brand .CardAvailable {
  display: flex !important;
  position: absolute;
  bottom: 60px; }

.body-category .card-text[data-test-info-type="price"], .body-brand .card-text[data-test-info-type="price"] {
  position: absolute;
  bottom: 85px; }

.body-category .productGrid, .body-brand .productGrid {
  display: flex;
  flex-wrap: wrap; }
  .body-category .productGrid .product, .body-brand .productGrid .product {
    margin: 0 0 40px 0; }
    .body-category .productGrid .product .card, .body-brand .productGrid .product .card {
      height: 100%;
      position: relative; }
      .body-category .productGrid .product .card .card-body, .body-brand .productGrid .product .card .card-body {
        padding: 0 0 80px 0; }
        .body-category .productGrid .product .card .card-body .ProdCardBtn, .body-brand .productGrid .product .card .card-body .ProdCardBtn {
          position: absolute;
          width: 100%;
          left: 0;
          bottom: 0; }

.body-category .product .card, .body-brand .product .card {
  border: 0;
  padding: 0;
  margin-bottom: 3rem; }
  .body-category .product .card:hover, .body-brand .product .card:hover {
    border: 0; }
  .body-category .product .card .card-figure, .body-brand .product .card .card-figure {
    background: #f8f8f8;
    padding: 20px;
    margin: 0 0 20px 0; }
    .body-category .product .card .card-figure > a, .body-brand .product .card .card-figure > a {
      display: block; }
      .body-category .product .card .card-figure > a .card-img-container, .body-brand .product .card .card-figure > a .card-img-container {
        max-width: 100%;
        text-align: center; }
        .body-category .product .card .card-figure > a .card-img-container .card-image, .body-brand .product .card .card-figure > a .card-img-container .card-image {
          position: unset;
          width: 100%;
          height: 190px; }
          @media all and (min-width: 1500px) {
            .body-category .product .card .card-figure > a .card-img-container .card-image, .body-brand .product .card .card-figure > a .card-img-container .card-image {
              height: 300px;
              object-fit: cover; } }
          @media all and (max-width: 450px) {
            .body-category .product .card .card-figure > a .card-img-container .card-image, .body-brand .product .card .card-figure > a .card-img-container .card-image {
              width: 100%;
              height: 100%; } }
        .body-category .product .card .card-figure > a .card-img-container:after, .body-brand .product .card .card-figure > a .card-img-container:after {
          padding-bottom: 0; }
  .body-category .product .card .card-body, .body-brand .product .card .card-body {
    text-align: left;
    padding: 0; }
    .body-category .product .card .card-body .brandName, .body-brand .product .card .card-body .brandName {
      display: block;
      color: #444;
      font-size: 13px; }
    .body-category .product .card .card-body .card-title, .body-brand .product .card .card-body .card-title {
      margin: 0 0 10px 0; }
      .body-category .product .card .card-body .card-title > a, .body-brand .product .card .card-body .card-title > a {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #000; }
    .body-category .product .card .card-body .CardDescription, .body-brand .product .card .card-body .CardDescription {
      font-size: 13px;
      color: #000;
      margin: 0 0 10px 0; }
    .body-category .product .card .card-body .card-text .price-section .price-label, .body-brand .product .card .card-body .card-text .price-section .price-label {
      font-size: 14px; }
    .body-category .product .card .card-body .card-text .price-section .price, .body-brand .product .card .card-body .card-text .price-section .price {
      font-size: 14px; }
    .body-category .product .card .card-body .CardAvailable, .body-brand .product .card .card-body .CardAvailable {
      color: #000;
      font-weight: 700;
      display: flex;
      align-items: flex-end;
      margin: 5px 0; }
      .body-category .product .card .card-body .CardAvailable .icon, .body-brand .product .card .card-body .CardAvailable .icon {
        width: 30px;
        height: 30px;
        margin-right: 10px; }
        .body-category .product .card .card-body .CardAvailable .icon svg, .body-brand .product .card .card-body .CardAvailable .icon svg {
          fill: #74370c; }
    .body-category .product .card .card-body .ProdCardBtn .button, .body-brand .product .card .card-body .ProdCardBtn .button {
      background: #603721;
      text-align: center;
      padding: 10px 5px;
      color: #fff;
      font-size: 14px;
      display: block;
      margin-top: 20px;
      text-transform: uppercase;
      border: 1px solid #603721;
      line-height: 2rem; }
      .body-category .product .card .card-body .ProdCardBtn .button:hover, .body-brand .product .card .card-body .ProdCardBtn .button:hover {
        background: #fff;
        color: #603721; }

.category-description {
  background: #f4f4f4;
  padding: 40px; }
  @media all and (max-width: 800px) {
    .category-description {
      padding: 20px; } }
  .category-description h2:first-child {
    margin: 0 0 3rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-size: 21px !important;
    letter-spacing: .25px !important; }
  .category-description.specialStock-description {
    background-color: #fff;
    padding: 20px 0; }
    @media (min-width: 801px) {
      .category-description.specialStock-description {
        padding: 40px 0; } }
    .category-description.specialStock-description p {
      font-size: 14px; }

.form-field.SelectionCheckingPop {
  display: inline-block; }
  .form-field.SelectionCheckingPop:after {
    content: "Required";
    display: inline-block;
    position: absolute;
    font-size: 12px;
    color: #cc4749;
    margin: 0 0 0 5px; }
  .form-field.SelectionCheckingPop .form-label {
    font-size: 12px;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }

.form-field.SelectionCheckingPop.ErrorMsg .form-label {
  color: #cc4749; }
  .form-field.SelectionCheckingPop.ErrorMsg .form-label:before {
    border: solid #cc4749; }

#form-action-RestrictaddToCart {
  margin-left: 0; }

#SelectionCheckPop.open {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px; }

#SelectionCheckPop p {
  font-size: 14px; }

.OptionModal img.productOptions-list-item-image {
  width: 100%;
  height: 100 .OptionModal img.productOptions-list-item-image; }

#contactEmail.open {
  display: flex !important;
  overflow-y: auto;
  padding: 30px;
  transform: translate(0%, -51%);
  left: 0;
  right: 0;
  margin: 0 auto; }

#contactVideo.open {
  display: flex !important;
  overflow-y: auto;
  transform: translate(0%, -51%);
  left: 0;
  right: 0;
  margin: 0 auto; }
  #contactVideo.open .modal-content {
    width: 100%; }
    #contactVideo.open .modal-content iframe {
      width: 100%;
      height: 100vw;
      max-height: 500px; }

.body-page.test-contact-us > .container, .body-page.contact-us > .container {
  width: 100%;
  max-width: 100%;
  padding: 0; }
  .body-page.test-contact-us > .container .page, .body-page.contact-us > .container .page {
    margin: 0; }
    .body-page.test-contact-us > .container .page .page-content--centered .LowerBanner .LowerBox, .body-page.contact-us > .container .page .page-content--centered .LowerBanner .LowerBox {
      border-bottom: 0; }
      .body-page.test-contact-us > .container .page .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.contact-us > .container .page .page-content--centered .LowerBanner .LowerBox .LowerBoxInner {
        padding-bottom: 0; }

.body-page.test-contact-us .ContactDetailWrap, .body-page.contact-us .ContactDetailWrap {
  background: #f4f4f4;
  padding: 90px 40px 40px 40px; }
  @media all and (max-width: 480px) {
    .body-page.test-contact-us .ContactDetailWrap, .body-page.contact-us .ContactDetailWrap {
      padding: 90px 0 40px; } }
  .body-page.test-contact-us .ContactDetailWrap .ContactDetail, .body-page.contact-us .ContactDetailWrap .ContactDetail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto; }
    .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox {
      width: 32%;
      text-align: center;
      background: #fff; }
      @media all and (max-width: 900px) {
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox {
          width: 100%;
          margin-bottom: 60px; }
          .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox:last-child, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox:last-child {
            margin-bottom: 20px; } }
      .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox:first-child, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox:first-child {
        background: transparent; }
      .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner {
        background: #fff;
        padding: 20px;
        position: relative; }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner:nth-child(2), .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner:nth-child(2) {
          margin-top: 60px; }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailImg, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailImg {
          max-width: 110px;
          display: inline-block;
          padding: 10px;
          border-radius: 50%;
          background: #f4f4f4;
          position: absolute;
          top: -50px;
          left: 0;
          right: 0;
          margin: 0 auto; }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailTitle, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailTitle {
          color: #000;
          font-size: 16px;
          text-transform: uppercase;
          font-weight: 700;
          font-family: sans-serif;
          margin-top: 50px; }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailText, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailText {
          color: #000;
          font-size: 12px;
          font-family: sans-serif; }
          @media all and (min-width: 1400px) {
            .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailText, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailText {
              font-size: 15px; } }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailBtn, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailBtn {
          display: inline-block;
          background: #694929;
          border: 1px solid #694929;
          color: #fff;
          padding: 5px 20px;
          text-decoration: none;
          font-weight: 600;
          font-size: 14px;
          width: 100%;
          max-width: 210px; }
          .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailBtn:hover, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner .ContactDetailBtn:hover {
            background: #fff;
            color: #694929; }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul {
          background: transparent;
          padding: 0 0 0 15px;
          text-align: left; }
          @media all and (min-width: 1400px) {
            .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul li a, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul li a {
              font-size: 15px; } }
        .body-page.test-contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul + p, .body-page.contact-us .ContactDetailWrap .ContactDetail .ContactDetailBox .ContactDetailInner ul + p {
          text-align: left; }

.body-page.wood-doors .breadcrumbs, .body-page.front-doors .breadcrumbs, .body-page.test-contact-us .breadcrumbs, .body-page.contact-us .breadcrumbs {
  display: none; }

.body-page.wood-doors .page-heading, .body-page.front-doors .page-heading, .body-page.test-contact-us .page-heading, .body-page.contact-us .page-heading {
  display: none; }

.body-page.wood-doors .WoodSpicesSection, .body-page.front-doors .WoodSpicesSection, .body-page.test-contact-us .WoodSpicesSection, .body-page.contact-us .WoodSpicesSection, .body-category .WoodSpicesSection {
  margin: 0 0 40px 0; }
  @media all and (min-width: 1199px) {
    .body-page.wood-doors .WoodSpicesSection, .body-page.front-doors .WoodSpicesSection, .body-page.test-contact-us .WoodSpicesSection, .body-page.contact-us .WoodSpicesSection, .body-category .WoodSpicesSection {
      width: 100%;
      max-width: 75%;
      margin: 0 auto 40px !important; } }
  .body-page.wood-doors .WoodSpicesSection .ConstructioBox, .body-page.front-doors .WoodSpicesSection .ConstructioBox, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox, .body-page.contact-us .WoodSpicesSection .ConstructioBox, .body-category .WoodSpicesSection .ConstructioBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px; }
    @media all and (max-width: 800px) {
      .body-page.wood-doors .WoodSpicesSection .ConstructioBox, .body-page.front-doors .WoodSpicesSection .ConstructioBox, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox, .body-page.contact-us .WoodSpicesSection .ConstructioBox, .body-category .WoodSpicesSection .ConstructioBox {
        flex-direction: column; } }
    .body-page.wood-doors .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.front-doors .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.contact-us .WoodSpicesSection .ConstructioBox .WrappedImg, .body-category .WoodSpicesSection .ConstructioBox .WrappedImg {
      width: 20%; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.front-doors .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox .WrappedImg, .body-page.contact-us .WoodSpicesSection .ConstructioBox .WrappedImg, .body-category .WoodSpicesSection .ConstructioBox .WrappedImg {
          width: 70%;
          margin: 0 auto 20px 0; } }
      .body-page.wood-doors .WoodSpicesSection .ConstructioBox .WrappedImg img, .body-page.front-doors .WoodSpicesSection .ConstructioBox .WrappedImg img, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox .WrappedImg img, .body-page.contact-us .WoodSpicesSection .ConstructioBox .WrappedImg img, .body-category .WoodSpicesSection .ConstructioBox .WrappedImg img {
        width: 100%; }
    .body-page.wood-doors .WoodSpicesSection .ConstructioBox p, .body-page.front-doors .WoodSpicesSection .ConstructioBox p, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox p, .body-page.contact-us .WoodSpicesSection .ConstructioBox p, .body-category .WoodSpicesSection .ConstructioBox p {
      width: 78%; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .WoodSpicesSection .ConstructioBox p, .body-page.front-doors .WoodSpicesSection .ConstructioBox p, .body-page.test-contact-us .WoodSpicesSection .ConstructioBox p, .body-page.contact-us .WoodSpicesSection .ConstructioBox p, .body-category .WoodSpicesSection .ConstructioBox p {
          width: 100%; } }
  .body-page.wood-doors .WoodSpicesSection p, .body-page.front-doors .WoodSpicesSection p, .body-page.test-contact-us .WoodSpicesSection p, .body-page.contact-us .WoodSpicesSection p, .body-category .WoodSpicesSection p {
    font-size: 15px; }
  .body-page.wood-doors .WoodSpicesSection .SpiceBG, .body-page.front-doors .WoodSpicesSection .SpiceBG, .body-page.test-contact-us .WoodSpicesSection .SpiceBG, .body-page.contact-us .WoodSpicesSection .SpiceBG, .body-category .WoodSpicesSection .SpiceBG {
    background: #eee;
    padding: 30px 30px 40px 30px;
    margin-top: 40px; }
    @media all and (max-width: 800px) {
      .body-page.wood-doors .WoodSpicesSection .SpiceBG, .body-page.front-doors .WoodSpicesSection .SpiceBG, .body-page.test-contact-us .WoodSpicesSection .SpiceBG, .body-page.contact-us .WoodSpicesSection .SpiceBG, .body-category .WoodSpicesSection .SpiceBG {
        padding: 10px 10px 15px 10px; } }
  .body-page.wood-doors .WoodSpicesSection .SpiceBoxWrap, .body-page.front-doors .WoodSpicesSection .SpiceBoxWrap, .body-page.test-contact-us .WoodSpicesSection .SpiceBoxWrap, .body-page.contact-us .WoodSpicesSection .SpiceBoxWrap, .body-category .WoodSpicesSection .SpiceBoxWrap {
    display: flex;
    justify-content: space-between; }
  .body-page.wood-doors .WoodSpicesSection .SpiceBox, .body-page.front-doors .WoodSpicesSection .SpiceBox, .body-page.test-contact-us .WoodSpicesSection .SpiceBox, .body-page.contact-us .WoodSpicesSection .SpiceBox, .body-category .WoodSpicesSection .SpiceBox {
    margin: 0 0 0 0;
    width: 49%; }
    .body-page.wood-doors .WoodSpicesSection .SpiceBox img, .body-page.front-doors .WoodSpicesSection .SpiceBox img, .body-page.test-contact-us .WoodSpicesSection .SpiceBox img, .body-page.contact-us .WoodSpicesSection .SpiceBox img, .body-category .WoodSpicesSection .SpiceBox img {
      width: 200px;
      margin: 0 20px 0 0;
      float: left; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .WoodSpicesSection .SpiceBox img, .body-page.front-doors .WoodSpicesSection .SpiceBox img, .body-page.test-contact-us .WoodSpicesSection .SpiceBox img, .body-page.contact-us .WoodSpicesSection .SpiceBox img, .body-category .WoodSpicesSection .SpiceBox img {
          width: 150px;
          margin: 0 0 20px;
          float: none; } }
    .body-page.wood-doors .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.front-doors .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.test-contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-category .WoodSpicesSection .SpiceBox .SpiceBoxText {
      width: 100%; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.front-doors .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.test-contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-page.contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText, .body-category .WoodSpicesSection .SpiceBox .SpiceBoxText {
          width: 100%; } }
      .body-page.wood-doors .WoodSpicesSection .SpiceBox .SpiceBoxText h3, .body-page.front-doors .WoodSpicesSection .SpiceBox .SpiceBoxText h3, .body-page.test-contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText h3, .body-page.contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText h3, .body-category .WoodSpicesSection .SpiceBox .SpiceBoxText h3 {
        margin: 0 5px 0 0;
        line-height: 2.2rem; }
      .body-page.wood-doors .WoodSpicesSection .SpiceBox .SpiceBoxText p, .body-page.front-doors .WoodSpicesSection .SpiceBox .SpiceBoxText p, .body-page.test-contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText p, .body-page.contact-us .WoodSpicesSection .SpiceBox .SpiceBoxText p, .body-category .WoodSpicesSection .SpiceBox .SpiceBoxText p {
        margin: 0; }

.body-page.wood-doors .WoodTableWrap, .body-page.front-doors .WoodTableWrap, .body-page.test-contact-us .WoodTableWrap, .body-page.contact-us .WoodTableWrap, .body-category .WoodTableWrap {
  margin: 0 0 40px 0; }
  .body-page.wood-doors .WoodTableWrap p, .body-page.front-doors .WoodTableWrap p, .body-page.test-contact-us .WoodTableWrap p, .body-page.contact-us .WoodTableWrap p, .body-category .WoodTableWrap p {
    text-align: center;
    font-size: 15px; }
  .body-page.wood-doors .WoodTableWrap .WoodTableOuter, .body-page.front-doors .WoodTableWrap .WoodTableOuter, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter, .body-page.contact-us .WoodTableWrap .WoodTableOuter, .body-category .WoodTableWrap .WoodTableOuter {
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;
    overflow-x: auto; }
    .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable {
      width: 1010px; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable th, .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable th, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable th, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable th, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable th, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable td {
        border-radius: 0px;
        padding: 10px;
        font-size: 13px;
        border-bottom: 1px solid #e5e5e5; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody {
        display: table-row-group; }
        .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody tr, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody tr, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody tr, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody tr, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable tbody tr {
          vertical-align: top; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td {
        background: #603723;
        border-radius: 5px;
        padding: 10px !important;
        color: #fff;
        font-size: 18px;
        font-weight: 700; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td .TableSpacer, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td .TableSpacer, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td .TableSpacer, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td .TableSpacer, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable .WoodTableHeading td .TableSpacer {
        background: transparent !important;
        color: #fff !important;
        padding: 0 !important; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child {
        width: 24%;
        padding-left: 0;
        padding-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child .TableSpacer, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child .TableSpacer, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child .TableSpacer, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child .TableSpacer, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable td:first-child .TableSpacer {
        width: 100%;
        background: #8c8c8c;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        display: block; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2), .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2), .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2), .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2), .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) {
        padding-right: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: 1px solid #fff; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) .TableSpacer, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) .TableSpacer, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) .TableSpacer, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) .TableSpacer, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable td:nth-child(2) .TableSpacer {
        background: #eeeeee;
        border-radius: 5px;
        padding: 10px;
        color: #000;
        display: inline-block; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .SubTable, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .SubTable, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .SubTable, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .SubTable, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable .SubTable {
        display: block;
        background: #ccc;
        margin: 10px 0;
        border-radius: 5px;
        color: #000;
        font-size: 15px;
        padding: 5px;
        text-align: center; }
      .body-page.wood-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .Devider, .body-page.front-doors .WoodTableWrap .WoodTableOuter .WoodSizeTable .Devider, .body-page.test-contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .Devider, .body-page.contact-us .WoodTableWrap .WoodTableOuter .WoodSizeTable .Devider, .body-category .WoodTableWrap .WoodTableOuter .WoodSizeTable .Devider {
        padding: 0 10px; }

.body-page.wood-doors .WoodAboutSection, .body-page.front-doors .WoodAboutSection, .body-page.test-contact-us .WoodAboutSection, .body-page.contact-us .WoodAboutSection, .body-category .WoodAboutSection {
  background: url("https://cdn11.bigcommerce.com/s-4mdmn43za8/product_images/uploaded_images/wood-background.jpg") no-repeat center center/cover;
  padding: 40px; }
  .body-page.wood-doors .WoodAboutSection .WoodAbout h3, .body-page.front-doors .WoodAboutSection .WoodAbout h3, .body-page.test-contact-us .WoodAboutSection .WoodAbout h3, .body-page.contact-us .WoodAboutSection .WoodAbout h3, .body-category .WoodAboutSection .WoodAbout h3 {
    margin: 0 0 20px 0;
    color: #fff; }
  .body-page.wood-doors .WoodAboutSection .WoodAbout p, .body-page.front-doors .WoodAboutSection .WoodAbout p, .body-page.test-contact-us .WoodAboutSection .WoodAbout p, .body-page.contact-us .WoodAboutSection .WoodAbout p, .body-category .WoodAboutSection .WoodAbout p {
    color: #fff;
    font-size: 15px; }
    .body-page.wood-doors .WoodAboutSection .WoodAbout p:last-child, .body-page.front-doors .WoodAboutSection .WoodAbout p:last-child, .body-page.test-contact-us .WoodAboutSection .WoodAbout p:last-child, .body-page.contact-us .WoodAboutSection .WoodAbout p:last-child, .body-category .WoodAboutSection .WoodAbout p:last-child {
      margin: 0; }

.body-page.wood-doors .page-content--centered, .body-page.front-doors .page-content--centered, .body-page.test-contact-us .page-content--centered, .body-page.contact-us .page-content--centered, .body-category .page-content--centered {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0; }
  .body-page.wood-doors .page-content--centered .UpperBanner img, .body-page.front-doors .page-content--centered .UpperBanner img, .body-page.test-contact-us .page-content--centered .UpperBanner img, .body-page.contact-us .page-content--centered .UpperBanner img, .body-category .page-content--centered .UpperBanner img {
    width: 100%;
    max-height: 400px;
    min-height: 200px;
    object-fit: cover; }
  .body-page.wood-doors .page-content--centered .LowerBanner, .body-page.front-doors .page-content--centered .LowerBanner, .body-page.test-contact-us .page-content--centered .LowerBanner, .body-page.contact-us .page-content--centered .LowerBanner, .body-category .page-content--centered .LowerBanner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 30px 0; }
    @media all and (max-width: 800px) {
      .body-page.wood-doors .page-content--centered .LowerBanner, .body-page.front-doors .page-content--centered .LowerBanner, .body-page.test-contact-us .page-content--centered .LowerBanner, .body-page.contact-us .page-content--centered .LowerBanner, .body-category .page-content--centered .LowerBanner {
        flex-wrap: wrap;
        justify-content: center; } }
    .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox, .body-category .page-content--centered .LowerBanner .LowerBox {
      width: 100%;
      max-width: 80%;
      border: 30px solid rgba(255, 255, 255, 0.5);
      margin-top: -100px; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox, .body-category .page-content--centered .LowerBanner .LowerBox {
          border: 0;
          max-width: 100%;
          margin: 0px auto;
          text-align: left; } }
      .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-category .page-content--centered .LowerBanner .LowerBox .LowerBoxInner {
        background: #fff;
        padding: 30px; }
        @media all and (max-width: 800px) {
          .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner, .body-category .page-content--centered .LowerBanner .LowerBox .LowerBoxInner {
            padding: 30px 10px; } }
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner h1, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner h1, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner h1, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner h1, .body-category .page-content--centered .LowerBanner .LowerBox .LowerBoxInner h1 {
          margin: 0 0 10px 0;
          font-size: 22px; }
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner p, .body-page.front-doors .page-content--centered .LowerBanner .LowerBox .LowerBoxInner p, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner p, .body-page.contact-us .page-content--centered .LowerBanner .LowerBox .LowerBoxInner p, .body-category .page-content--centered .LowerBanner .LowerBox .LowerBoxInner p {
          margin: 0;
          font-size: 16px; }
    .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent, .body-category .page-content--centered .LowerBanner .LowerContent {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent, .body-category .page-content--centered .LowerBanner .LowerContent {
          margin: 0 auto; } }
      @media all and (max-width: 560px) {
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent, .body-category .page-content--centered .LowerBanner .LowerContent {
          flex-wrap: wrap;
          width: 100%; } }
      .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-category .page-content--centered .LowerBanner .LowerContent .ContentBox {
        border-right: 1px solid #ccc;
        text-align: center;
        padding: 10px 20px; }
        @media all and (max-width: 560px) {
          .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox, .body-category .page-content--centered .LowerBanner .LowerContent .ContentBox {
            border-right: 0;
            width: 50%; } }
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent .ContentBox strong, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent .ContentBox strong, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox strong, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox strong, .body-category .page-content--centered .LowerBanner .LowerContent .ContentBox strong {
          font-size: 16px;
          display: block; }
          .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent .ContentBox strong img, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent .ContentBox strong img, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox strong img, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox strong img, .body-category .page-content--centered .LowerBanner .LowerContent .ContentBox strong img {
            max-width: 100px; }
        .body-page.wood-doors .page-content--centered .LowerBanner .LowerContent .ContentBox img, .body-page.front-doors .page-content--centered .LowerBanner .LowerContent .ContentBox img, .body-page.test-contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox img, .body-page.contact-us .page-content--centered .LowerBanner .LowerContent .ContentBox img, .body-category .page-content--centered .LowerBanner .LowerContent .ContentBox img {
          max-width: 70px; }
  .body-page.wood-doors .page-content--centered .ModelsProducts, .body-page.front-doors .page-content--centered .ModelsProducts, .body-page.test-contact-us .page-content--centered .ModelsProducts, .body-page.contact-us .page-content--centered .ModelsProducts, .body-category .page-content--centered .ModelsProducts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px; }
    .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-category .page-content--centered .ModelsProducts .ModelProduct {
      width: 23%;
      margin-bottom: 2%;
      position: relative; }
      @media all and (max-width: 800px) {
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-category .page-content--centered .ModelsProducts .ModelProduct {
          width: 31%; } }
      @media all and (max-width: 640px) {
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-category .page-content--centered .ModelsProducts .ModelProduct {
          width: 48%; } }
      @media all and (max-width: 450px) {
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct, .body-category .page-content--centered .ModelsProducts .ModelProduct {
          width: 100%; } }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductImage {
        background: #f8f8f8;
        padding: 20px;
        margin: 0 0 20px 0; }
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage a, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage a, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage a, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage a, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductImage a {
          display: block; }
          .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage a img, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductImage a img, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage a img, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductImage a img, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductImage a img {
            width: 100%; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover a, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover a, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover a, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover a, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover a {
        opacity: 1 !important; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover span, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover span, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover span, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover span, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody:hover span {
        opacity: 1 !important; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody a, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody a, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody a, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody a, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody a {
        text-decoration: none; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdBrand, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdBrand, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdBrand, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdBrand, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdBrand {
        display: block;
        color: #444;
        font-size: 12px;
        opacity: .7; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdDesc, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdDesc, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdDesc, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdDesc, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdDesc {
        display: block;
        font-size: 14px;
        color: #000;
        opacity: .7;
        margin-bottom: 70px; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle {
        margin: 10px 0;
        min-height: 57px; }
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle a, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle a, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle a, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle a, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .ProdTitle a {
          display: block;
          font-size: 16px;
          font-weight: 500;
          color: #000;
          opacity: .7; }
      .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton {
        background: #603721;
        text-align: center;
        padding: 10px 5px;
        color: #fff;
        font-size: 14px;
        display: block;
        margin-top: 20px;
        text-transform: uppercase;
        border: 1px solid #603721;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0; }
        .body-page.wood-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton:hover, .body-page.front-doors .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton:hover, .body-page.test-contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton:hover, .body-page.contact-us .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton:hover, .body-category .page-content--centered .ModelsProducts .ModelProduct .ProductBody .MpButton:hover {
          background: #fff;
          color: #603721; }
  .body-page.wood-doors .page-content--centered .Authentichighlights, .body-page.front-doors .page-content--centered .Authentichighlights, .body-page.test-contact-us .page-content--centered .Authentichighlights, .body-page.contact-us .page-content--centered .Authentichighlights, .body-category .page-content--centered .Authentichighlights {
    background: #f8f8f8;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; }
    @media all and (max-width: 800px) {
      .body-page.wood-doors .page-content--centered .Authentichighlights, .body-page.front-doors .page-content--centered .Authentichighlights, .body-page.test-contact-us .page-content--centered .Authentichighlights, .body-page.contact-us .page-content--centered .Authentichighlights, .body-category .page-content--centered .Authentichighlights {
        flex-direction: column;
        padding: 30px; } }
    @media all and (max-width: 991px) {
      .body-page.wood-doors .page-content--centered .Authentichighlights img, .body-page.front-doors .page-content--centered .Authentichighlights img, .body-page.test-contact-us .page-content--centered .Authentichighlights img, .body-page.contact-us .page-content--centered .Authentichighlights img, .body-category .page-content--centered .Authentichighlights img {
        width: auto; } }
    .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent, .body-category .page-content--centered .Authentichighlights .HighContent {
      width: 78%; }
      @media all and (max-width: 991px) {
        .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent, .body-category .page-content--centered .Authentichighlights .HighContent {
          width: 100%;
          text-align: center;
          margin-top: 20px; } }
      .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent h6, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent h6, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent h6, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent h6, .body-category .page-content--centered .Authentichighlights .HighContent h6 {
        margin: 0 0 20px 0;
        font-size: 20px; }
      .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent .HighText, .body-category .page-content--centered .Authentichighlights .HighContent .HighText {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap; }
        @media all and (max-width: 800px) {
          .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent .HighText, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent .HighText, .body-category .page-content--centered .Authentichighlights .HighContent .HighText {
            flex-direction: column; } }
        .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent .HighText p, .body-category .page-content--centered .Authentichighlights .HighContent .HighText p {
          font-size: 14px;
          margin: 0; }
          @media all and (max-width: 800px) {
            .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent .HighText p, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent .HighText p, .body-category .page-content--centered .Authentichighlights .HighContent .HighText p {
              margin: 0 0 20px 0; } }
          .body-page.wood-doors .page-content--centered .Authentichighlights .HighContent .HighText p strong, .body-page.front-doors .page-content--centered .Authentichighlights .HighContent .HighText p strong, .body-page.test-contact-us .page-content--centered .Authentichighlights .HighContent .HighText p strong, .body-page.contact-us .page-content--centered .Authentichighlights .HighContent .HighText p strong, .body-category .page-content--centered .Authentichighlights .HighContent .HighText p strong {
            display: block; }

/********Landing Page Start*******/
.ReplacementPageWrap .sec-heading {
  line-height: 2rem !important; }

.ReplacementPageWrap .page-content {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  float: none; }

.ReplacementPageWrap .RepStepWrap {
  margin-bottom: 20px; }
  .ReplacementPageWrap .RepStepWrap .RepBox {
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 0 10px 2px #ccc;
    border-radius: 15px;
    padding: 20px; }
    .ReplacementPageWrap .RepStepWrap .RepBox svg {
      max-width: 130px;
      height: 60px; }
    .ReplacementPageWrap .RepStepWrap .RepBox .RepHeading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      .ReplacementPageWrap .RepStepWrap .RepBox .RepHeading .RepCount {
        background: url("https://cdn11.bigcommerce.com/s-4mdmn43za8/images/stencil/original/image-manager/numbg.png") no-repeat left center;
        width: 90px;
        height: 90px;
        color: #fff;
        font-size: 35px;
        font-weight: 700;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 0 0 100px 0;
        position: absolute;
        left: -20px;
        font-family: "Open Sans"; }
      .ReplacementPageWrap .RepStepWrap .RepBox .RepHeading h6 {
        font-family: "Open Sans";
        font-weight: 700;
        color: #000;
        font-size: 12px;
        margin: 0;
        padding-left: 50px;
        height: 60px;
        display: flex;
        align-items: center; }
    .ReplacementPageWrap .RepStepWrap .RepBox p {
      margin: 20px 0 0 0;
      color: #000;
      font-size: 12px;
      font-family: "Open Sans"; }
  .ReplacementPageWrap .RepStepWrap .RepStepTop {
    display: flex;
    justify-content: space-between; }
    .ReplacementPageWrap .RepStepWrap .RepStepTop .RepBox {
      width: 48%; }
  .ReplacementPageWrap .RepStepWrap .RepStepBottom {
    display: flex;
    justify-content: space-between; }
    .ReplacementPageWrap .RepStepWrap .RepStepBottom .RepBox {
      width: 31%; }

.ReplacementPageWrap .AboutDoors .AboutDoorsBox .AboutDoorsImage img {
  height: 100%; }

.ReplacementPageWrap .AboutDoors .AboutDoorsBox .AboutDoorsText h2 {
  margin: 0 0 10px 0;
  line-height: 1.5rem; }

.ReplacementPageWrap .AboutDoors .AboutDoorsBox .AboutDoorsText p:last-child {
  margin: 0; }

.ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .page-heading {
  display: none; }

.ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid {
  width: 100%;
  height: auto !important;
  margin: 0; }
  .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide {
    width: 25%;
    margin-bottom: 20px; }
    .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card {
      border: 1px solid #ccc; }
      .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card .card-text.brandName {
        color: #7e7e7e;
        font-size: 12px;
        font-weight: 600; }
      .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card .price-section.price-section--withoutTax.rrp-price--withoutTax.pricing-details--hidden {
        display: none; }
      .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card .price-section.price-section--withoutTax.non-sale-price--withoutTax.pricing-details--hidden {
        display: none; }
      .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card .price-section.price-section--withoutTax {
        font-size: 12px;
        color: #000; }

.LandingPageWrap .container.hero {
  padding: 0; }
  .LandingPageWrap .container.hero .heroCarousel-content {
    width: 80%; }
    @media all and (max-width: 800px) {
      .LandingPageWrap .container.hero .heroCarousel-content {
        width: 100%; } }

.LandingReplacementText {
  margin-bottom: 30px; }

.DoorProject .slick-dots {
  display: none !important; }

.DoorProjects {
  margin-bottom: 30px; }
  .DoorProjects .DoorProject {
    display: none; }
    .DoorProjects .DoorProject.slick-slider {
      display: block; }
      .DoorProjects .DoorProject.slick-slider .slick-arrow {
        background: transparent;
        padding: 0;
        width: 40px;
        height: 40px; }
        .DoorProjects .DoorProject.slick-slider .slick-arrow:before {
          background-image: url("https://cdn11.bigcommerce.com/s-4mdmn43za8/product_images/uploaded_images/slider-arrow.png");
          width: 40px;
          height: 40px;
          border-radius: 50%;
          box-shadow: 0px 0px 5px 1px #dfdfdf; }
      .DoorProjects .DoorProject.slick-slider .slick-prev {
        left: -20px;
        transform: rotate(0deg); }
      .DoorProjects .DoorProject.slick-slider .slick-next {
        right: -20px;
        transform: rotate(180deg); }
  .DoorProjects .DoorProjectBoxInner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .DoorProjects .DoorProjectBoxInner img {
      display: block;
      width: 49%; }

.LandingSteps {
  margin-bottom: 30px; }
  .LandingSteps .StepBox {
    display: flex;
    align-items: center;
    justify-content: center; }
    .LandingSteps .StepBox:nth-child(even) {
      background: #F4F4F4; }
    .LandingSteps .StepBox:nth-child(odd) {
      background: #fff; }
      .LandingSteps .StepBox:nth-child(odd) .StepText {
        order: 2; }
      .LandingSteps .StepBox:nth-child(odd) .StepImage {
        order: 1; }
    .LandingSteps .StepBox .StepText {
      width: 50%;
      text-align: center;
      padding: 30px; }
      .LandingSteps .StepBox .StepText .Counting {
        border: 1px solid #000;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        background-color: #fff;
        color: #000;
        font-weight: 700; }
      .LandingSteps .StepBox .StepText h6 {
        font-family: "Open Sans";
        font-weight: 700;
        color: #000;
        font-size: 12px;
        margin: 20px 0 20px 0; }
    .LandingSteps .StepBox .StepImage {
      width: 50%;
      text-align: center;
      padding: 0 8%; }

.AboutDoors {
  margin-bottom: 3rem; }
  .AboutDoors .AboutDoorsBox {
    display: flex;
    justify-content: space-between; }
    .AboutDoors .AboutDoorsBox .AboutDoorsImage {
      width: 49.5%; }
    .AboutDoors .AboutDoorsBox .AboutDoorsText {
      width: 49%; }

.ShippingCalcWrap {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: flex-start;
  gap: 4rem; }
  .ShippingCalcWrap .ConfiguredPrice {
    margin-right: 10px; }
    .ShippingCalcWrap .ConfiguredPrice .price-label {
      display: none !important; }
    .ShippingCalcWrap .ConfiguredPrice .productView-info-value, .ShippingCalcWrap .ConfiguredPrice .productView-info-name {
      margin-top: 0; }
    .ShippingCalcWrap .ConfiguredPrice .productView-info-value {
      font-weight: 500; }

@media all and (max-width: 1023px) {
  .ReplacementPageWrap .RepStepWrap .RepStepTop, .ReplacementPageWrap .RepStepWrap .RepStepBottom {
    flex-direction: column; }
    .ReplacementPageWrap .RepStepWrap .RepStepTop .RepBox, .ReplacementPageWrap .RepStepWrap .RepStepBottom .RepBox {
      width: 100%; }
      .ReplacementPageWrap .RepStepWrap .RepStepTop .RepBox .RepHeading .RepCount, .ReplacementPageWrap .RepStepWrap .RepStepBottom .RepBox .RepHeading .RepCount {
        width: 70px;
        height: 70px;
        font-size: 30px;
        padding: 0 0 88px 0;
        left: -17px;
        background-size: contain; }
      .ReplacementPageWrap .RepStepWrap .RepStepTop .RepBox .RepHeading h6, .ReplacementPageWrap .RepStepWrap .RepStepBottom .RepBox .RepHeading h6 {
        padding-left: 40px; } }

@media all and (max-width: 800px) {
  .LandingReplacementText {
    text-align: center; }
  .LandingSteps .StepBox {
    display: block; }
    .LandingSteps .StepBox .StepText {
      width: 100%;
      text-align: center;
      padding: 20px; }
    .LandingSteps .StepBox .StepImage {
      width: 100%;
      text-align: center;
      padding: 0 20px; }
  .AboutDoors .AboutDoorsBox {
    display: block; }
    .AboutDoors .AboutDoorsBox .AboutDoorsImage {
      width: 100%; }
    .AboutDoors .AboutDoorsBox .AboutDoorsText {
      width: 100%;
      margin-top: 20px;
      text-align: center; }
  .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide {
    width: 50%; }
    .ReplacementPageWrap .ReplaceDoors.FeatureWrap .content .productGrid .productCarousel-slide .card {
      border: 1px solid #ccc;
      padding: 10px; } }

/********Landing Page End*******/
.productView-options .form-field.form-field-frame-size, .productView-options .form-field.form-field-rough-opening, #CartEditProductFieldsForm .form-field.form-field-frame-size, #CartEditProductFieldsForm .form-field.form-field-rough-opening {
  margin: 0 0 0.5rem; }

.productView-options .form-field.form-field-frame-size .form-input, .productView-options .form-field.form-field-rough-opening .form-input, .productView-options .form-field.form-field-outside-brickmould .form-input, #CartEditProductFieldsForm .form-field.form-field-frame-size .form-input, #CartEditProductFieldsForm .form-field.form-field-rough-opening .form-input, #CartEditProductFieldsForm .form-field.form-field-outside-brickmould .form-input {
  border: 0;
  background: transparent;
  display: inline;
  width: auto;
  padding: 0;
  height: auto;
  color: #373737;
  margin-left: 0.5rem; }

.productView-options .form-field.form-field-frame-size .form-label, .productView-options .form-field.form-field-rough-opening .form-label, .productView-options .form-field.form-field-outside-brickmould .form-label, #CartEditProductFieldsForm .form-field.form-field-frame-size .form-label, #CartEditProductFieldsForm .form-field.form-field-rough-opening .form-label, #CartEditProductFieldsForm .form-field.form-field-outside-brickmould .form-label {
  display: inline; }

.doorSwingImg {
  width: 100%;
  max-width: 240px; }

.form-select.form-select--small {
  line-height: 1.3rem; }

.modal.GlassSwatch {
  left: 0 !important;
  transform: translate(0%, -51%) !important; }

div[data-product-attribute="swatch"] .form-option-swatch {
  width: 104px;
  height: 104px; }

div[data-product-attribute="swatch"] .form-option-swatch .form-option-variant.form-option-variant--pattern {
  width: 100px;
  height: 100px;
  background-size: contain; }

.TrackingStautus .definitionList-value, .TrackingStautus .definitionList-key {
  font-size: 14px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Righteous-Regular; }

.productView-availability {
  padding: 5px;
  /*background-color: #FFF01F;*/
  background-color: rgba(215, 182, 145, 0.6); }

@media all and (min-width: 1261px) {
  .body-default .productCarousel-slide {
    width: 25%; } }

.card-figcaption-button.quickview {
  text-indent: -9999px; }
  .card-figcaption-button.quickview .icon {
    text-indent: initial;
    width: 100%; }

.card-figcaption-button > span {
  display: none; }

.FooterTopBar {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.FooterTopBar .FAQsSection a {
  color: #fff;
  font-weight: 700;
  text-decoration: none; }

.FooterTopBar .FAQsSection .faq-icon {
  width: 50px;
  display: inline-block;
  margin-right: 10px; }

.StatusCuston-Text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 .75rem; }

.account--fixed .StatusCuston-Text {
  padding: 0;
  max-width: 100%; }

.account .StatusCuston-Text {
  padding: 0; }

.StatusCuston-Text p, .StatusCuston-Text p span {
  font-size: 12px; }

@media all and (min-width: 801px) {
  .StatusCuston-Text {
    max-width: 80%; }
  .navUser-action.FAQs .faq-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; }
  .navUser-action.FAQs .faq-icon img {
    display: block;
    width: 33px; }
  .header .position--left .navUser.left {
    width: calc(60% - 100px - 12rem); }
  .header .position--left .navUser.right {
    width: calc(60% - 100px); }
  .navPages-list.marketplace .navPages-item {
    position: relative; }
    .navPages-list.marketplace .navPages-item .navPage-subMenu {
      width: 36rem !important;
      padding: 0 !important; }
      .navPages-list.marketplace .navPages-item .navPage-subMenu .container {
        padding: 0; }
      .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list {
        margin: 0; }
        .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item {
          display: flex;
          align-items: center;
          width: 100%;
          padding: 5px !important;
          position: relative;
          border: 1px solid #242b2e;
          border-bottom: 0px; }
          .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-subMenu-action {
            padding: 8px;
            border-bottom: 0;
            margin-bottom: 0;
            order: 1; }
            .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-subMenu-action .navPages-action-moreIcon {
              display: block;
              position: absolute;
              right: 10px;
              top: 20px;
              transform: rotate(-90deg); }
          .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .imageTop-item {
            padding: 0 10px 0 0;
            text-align: center;
            margin: 0;
            width: 100px; }
            .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .imageTop-item img {
              display: block;
              width: 100%;
              margin: 0; }
          .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList {
            position: absolute;
            top: -1px;
            left: 35.8rem;
            background-color: #E5E5E5;
            width: 36rem;
            display: none; }
            .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .navPage-childList-item {
              padding: 5px;
              border: 1px solid #242b2e;
              border-bottom: 0px;
              height: 54px;
              display: flex;
              align-items: center; }
              .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .navPage-childList-item .navPage-childList-action {
                padding: 8px;
                order: 1; }
            .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .imageTop-item {
              padding: 0 10px 0 0;
              text-align: center;
              margin: 0;
              width: 50px; }
              .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .imageTop-item img {
                display: block;
                width: 100%;
                margin: 0;
                height: 41px; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item:hover .navPage-childList {
    display: block; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item:last-child,
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .navPage-childList-item:last-child,
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item-child:last-child {
    border-bottom: 1px solid #242b2e; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item-child {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 5px !important;
    position: relative;
    border: 1px solid #242b2e;
    border-bottom: 0px; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item-child .navPage-subMenu-action {
    padding: 8px;
    border-bottom: 0;
    margin-bottom: 0;
    -ms-flex-order: 1;
    order: 1; }
  .navPage-subMenu-action:hover {
    opacity: .9 !important;
    background-color: #E5E5E5 !important; } }

@media all and (min-width: 1260px) {
  .navUser.right.sticky.fixed {
    width: calc(20% - 100px); }
  .main.full .content[data-equalizer] .page-heading {
    background: url("https://cdn11.bigcommerce.com/s-4mdmn43za8/product_images/uploaded_images/wood-background.jpg") top left; }
  .main.full .content[data-equalizer] .page-heading span {
    color: #fff; }
  .main.full .content[data-equalizer] .page-heading span:after {
    border-color: #fff; } }

/****************************************************************************/
.navPages-item.new {
  display: none !important; }

.OptionMoreInfo {
  margin-left: 4px;
  text-decoration: underline;
  color: #6d3c16; }

.selection-message {
  background-color: transparent;
  color: #000;
  padding: 0; }

.selection-message .selectionBox-message {
  background-color: #F5EDE4;
  border: 1px solid #6e3a16;
  border-radius: 10px;
  font-size: 13px;
  padding: 1.6rem;
  text-align: left; }
  .selection-message .selectionBox-message strong, .selection-message .selectionBox-message b {
    font-weight: 600; }

.recently-viewed-products-sidebar .is-show-widget {
  right: 0 !important; }

.door-option-modal .modal-content {
  padding: 2rem;
  font-size: 18px; }

.door-option-modal.content-has-img .modal-content {
  padding: 0; }

.option-help-icon .icon svg {
  fill: #6e3a16; }

/************Order Tracking Page***********/
.TrackingPage .page-content {
  width: 100%; }

.TrackingPageWrap .form.OrderTacking {
  padding: 0;
  margin: 20px 0 0 0; }

.form.OrderTacking .form-row {
  display: block;
  width: 100%;
  max-width: 80%;
  margin: 0 auto; }

.form.OrderTacking .form-row .form-field {
  width: 100%; }

.form.OrderTacking .form-row .form-actions {
  width: auto;
  margin: 0;
  padding: 0 .75rem; }

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

.AccountOrderStatus .shipmain1 {
  font-family: Righteous-Regular;
  font-size: 18px !important;
  font-weight: 300 !important; }

.OrderTacking-Status .date, .OrderTacking-Status .msg,
.AccountOrderStatus .date, .AccountOrderStatus .msg {
  font-size: 13px;
  font-weight: 600;
  font-family: "Work Sans",Times,"Times New Roman",serif; }

.OrderTacking-Status .shipmain1, .AccountOrderStatus .shipmain1 {
  width: 100%;
  float: none; }

.OrderTacking-Status .shipmain, .AccountOrderStatus .shipmain {
  float: none; }

.AccountOrderStatus {
  width: 100%;
  display: block; }

.AccountOrderStatus::after, .AccountOrderStatus::before,
.ShipStatusInfo::after, .ShipStatusInfo::before {
  content: "";
  display: table;
  clear: both; }

.TrackingPageWrap #LoginForm .form-row {
  width: 100%;
  max-width: 80%;
  margin: 0 auto; }

.TrackingPageWrap #LoginForm .form-row .form-field {
  width: 100%;
  padding: 0; }

.TrackingText {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  text-align: center; }

.TrackingText p {
  display: block;
  margin: 0 0 10px 0;
  font-size: 13px; }

.TrackingText p strong {
  font-size: 20px; }

.OrderTacking-Status div[style="width:800px"], .OrderTacking-Status .shipmain1, .OrderTacking-Status .shipmain {
  width: 100% !important;
  padding: 0 15px; }

.RefreshButton {
  display: block;
  margin: 10px auto 30px; }

.AccountOrderStatus div[style="width:800px"] {
  width: 100% !important; }

.AccountOrderStatus .shipmain1, .AccountOrderStatus .shipmain {
  float: none !important;
  width: 100% !important; }

.AccountOrderStatus .shipmain1 {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-transform: uppercase; }

.ShipStatusInfo {
  border-bottom: 0 none;
  margin-bottom: 0px; }

.corrier {
  font-size: 13px;
  color: #000; }

.corrier span {
  font-family: "Work Sans",Times,"Times New Roman",serif;
  font-size: 13px;
  color: #373737; }

.OrderTacking-Status .corrier, .OrderTacking-Status .corrier span {
  font-size: 18px;
  color: green;
  font-family: Arial, Helvetica, sans-serif; }

.AccountOrderStatus .shipmain {
  margin-top: 15px;
  border-top: 1px solid #000;
  padding-top: 15px; }

.ShipStatusInfo .account-sidebar-block .definitionList {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb; }

.AccountOrderStatus .shipmain1 {
  display: none; }

.OrderTacking-Status .corrier-error {
  color: red; }

.CustomLinks.navPages-list + .navPages-list {
  border-top: 0;
  margin-top: 0;
  padding-top: 0; }

#DoorSwingOption.modal, #door-door-swing-option.modal, .door-option-modal.content-has-img.modal {
  width: 900px;
  right: inherit;
  min-height: auto; }
  #DoorSwingOption.modal .modal-content, #door-door-swing-option.modal .modal-content, .door-option-modal.content-has-img.modal .modal-content {
    text-align: center; }

.product-image-modal.modal {
  right: inherit;
  overflow-y: scroll; }
  @media (min-width: 1261px) {
    .product-image-modal.modal {
      width: 800px; } }

.form-option-swatch {
  position: relative;
  margin-bottom: 2rem; }
  .form-option-swatch .swatch-option-enlarge {
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 10px;
    display: block;
    text-align: center;
    cursor: pointer;
    text-transform: capitalize;
    width: 100%; }

#description .tabs-contents {
  position: relative; }

#description .tabs-contents .tab-content {
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden; }

#description .tabs-contents .tab-content.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 1.5rem 0;
  position: relative;
  width: 100%; }

#description .eapps-faq-content-items {
  overflow: visible !important; }

#description .tab-content .eapps-faq-layout-multicolumn.eapps-faq-template-clean .eui-widget-title {
  display: none !important; }

.has-globalBanner.f-topbar-fixed {
  padding-top: 145px; }

.footer-socical-bar {
  background-color: #232b2e;
  padding: 0.5rem 0; }
  .footer-socical-bar .footer-logo {
    display: inline-block;
    max-width: 160px;
    margin-right: 2rem; }
  .footer-socical-bar .socical-bar-links {
    display: inline-block; }
    .footer-socical-bar .socical-bar-links .socialLinks .socialLinks-item .icon {
      width: 30px;
      height: 30px; }
      .footer-socical-bar .socical-bar-links .socialLinks .socialLinks-item .icon svg {
        fill: #fff; }

.footer-copyright .powered-by {
  display: inline-block;
  font-size: 12px;
  margin-right: 1rem; }

.footer-copyright ul {
  list-style: none;
  margin: 0;
  display: inline-block; }
  .footer-copyright ul li {
    display: inline-block; }
    .footer-copyright ul li a {
      display: block;
      padding: 0 0.5rem;
      font-size: 12px; }

.footer-info-col {
  text-align: left; }
  .footer-info-col .info-mobile {
    display: inline-block;
    width: 50%;
    text-align: left; }
    @media (min-width: 801px) {
      .footer-info-col .info-mobile {
        display: none;
        width: inherit; } }
  .footer-info-col .info-desk {
    display: none; }
    @media (min-width: 801px) {
      .footer-info-col .info-desk {
        display: block; } }

@media all and (min-width: 801px) {
  .TrackingPageWrap .LoginTracking {
    border-right: 1px solid #ccc; }
  .TrackingPageWrap {
    display: flex; }
  .TrackingPageWrap .LoginTracking {
    width: 50%; }
  .TrackingPageWrap .OrderResultTracking {
    width: 50%; }
  .TrackingPageWrap .login-form {
    width: 100%; }
  .header-top .navUser.right {
    max-width: 50%; }
  .footer-info-list, address {
    list-style: none;
    margin-left: 0;
    display: block !important;
    visibility: visible !important;
    transition: none !important;
    opacity: 1 !important;
    height: 100% !important; } }

@media all and (max-width: 1260px) {
  .CustomProdSlide .CategoryNewHeading {
    height: auto !important; } }

@media all and (max-width: 991px) {
  .TrackingText {
    max-width: 100%; } }

@media all and (max-width: 800px) {
  .MobileLeadTime {
    cursor: pointer;
    display: inline-block !important;
    background-color: rgba(215, 182, 145, 0.6);
    padding: 0 5px;
    line-height: 2rem;
    margin: 10px 0 0 0; }
  .navPages-item.MobileFAQs .faq-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; }
  .navPages-item.MobileFAQs .faq-icon img {
    display: block;
    width: 33px; }
  .FooterTopBar .FAQsSection {
    display: none; }
  /****************************/
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .navPage-childList-item {
    display: flex;
    align-items: center;
    padding: 5px; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .navPage-childList-item .navPage-childList-action {
    order: 1;
    margin: 0; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .imageTop-item {
    padding: 0 10px 0 0;
    text-align: center;
    margin: 0;
    width: 50px; }
  .navPages-list.marketplace .navPages-item .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item .navPage-childList .imageTop-item img {
    display: block;
    width: 100%;
    margin: 0;
    height: 41px; }
  .footer-info-col[data-section-type="newsletterSubscription"] {
    position: relative; }
  .HouzLogos {
    position: absolute;
    top: 50px;
    right: 0;
    width: 180px; }
  .HouzLogos + p {
    margin-top: 60px; }
  /*****************************/
  .mobileMenu-toggle .mobileMenu-toggleIcon {
    font-size: 0; }
  .navPages-container .navPages .CustomLinks .imageTop-item {
    display: none; }
  .navPages-container .navPages .CustomLinks {
    margin: 0;
    display: block !important;
    position: relative; }
  .navPages-container .navPages .CustomLinks > .navPages-item > .navPages-action {
    display: block;
    padding: 13px 20px 12px;
    text-transform: uppercase;
    text-align: left;
    color: #050505;
    letter-spacing: 0;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5; }
  .navPages-container .navPages .CustomLinks > .navPages-item.show_mobile > .navPages-action .icon {
    position: relative;
    top: -2px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle; }
  .navPages-container .navPages .CustomLinks > .navPages-item.show_mobile > .navPages-action .icon svg {
    fill: #050505;
    stroke: #050505; }
  .navPages-container .navPages .CustomLinks > .navPages-item > .navPages-action .navPages-action-moreIcon {
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    right: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transform: unset; }
  .navPages-container .navPages .CustomLinks > .navPages-item > .navPages-action .navPages-action-moreIcon::after,
  .navPages-container .navPages .CustomLinks > .navPages-item > .navPages-action .navPages-action-moreIcon::before {
    background: #686868;
    content: '';
    height: 2px;
    left: 18px;
    position: absolute;
    top: 20px;
    width: 10px;
    transition: transform .5s ease; }
  .navPages-container .navPages .CustomLinks > .navPages-item > .navPages-action .navPages-action-moreIcon svg {
    display: none;
    fill: #050505;
    stroke: #050505;
    width: 16px;
    height: 16px; }
  .navPages-action span.icon--users {
    width: 25px; }
  .MobileOrderTracking .navPages-action .icon--trackorder {
    width: 25px;
    height: 25px; }
  .form.OrderTacking .form-row .form-field {
    width: 100%;
    max-width: 100%; }
  .TrackingPageWrap #LoginForm .form-row, .TrackingPageWrap .form.OrderTacking .form-row {
    width: 100%;
    max-width: 100%; }
  .footer-info-col .info-mobile + table {
    vertical-align: top;
    display: inline-block;
    margin: 5rem 0 0 !important; }
  .footer-info-col .info-mobile + table + p {
    margin: 2rem 0; }
  .footer-info-col {
    width: 100%;
    float: none; }
  h5.footer-info-heading {
    position: relative;
    cursor: pointer;
    line-height: 3rem;
    margin: 0;
    border-bottom: 1px solid #232b2e; }
    h5.footer-info-heading:after {
      content: '';
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath d='M492,236H276V20c0-11.046-8.954-20-20-20c-11.046,0-20,8.954-20,20v216H20c-11.046,0-20,8.954-20,20s8.954,20,20,20h216v216c0,11.046,8.954,20,20,20s20-8.954,20-20V276h216c11.046,0,20-8.954,20-20C512,244.954,503.046,236,492,236z'/%3E%3C/g%3E%3C/svg%3E");
      display: block;
      width: 10px;
      height: 10px;
      background-repeat: no-repeat;
      position: absolute;
      right: 1rem;
      top: 50%;
      margin-top: -5px; }
    h5.footer-info-heading.current:after {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 512 512'%3E%3Cg%3E%3Cpath d='M492,236H20c-11.046,0-20,8.954-20,20c0,11.046,8.954,20,20,20h472c11.046,0,20-8.954,20-20S503.046,236,492,236z'/%3E%3C/g%3E%3C/svg%3E"); }
  .footer-info-list {
    display: none; }
  .footer-info-col {
    margin: 0; }
  /*#menu .navPage-subMegaMenu.imageTop .imageTop-item {
	display: none;
}*/ }

@media all and (max-width: 550px) {
  .footer-socical-bar .socical-bar-links .socialLinks .socialLinks-item .icon {
    width: 20px;
    height: 20px; } }

/************Order Tracking Page***********/
.navPage-subMegaMenu {
  padding: 15px 0 !important;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  transition: all .3s ease; }
  .navPage-subMegaMenu .container:before, .navPage-subMegaMenu .container:after {
    content: " ";
    display: table; }
  .navPage-subMegaMenu .container:after {
    clear: both; }
  .navPage-subMegaMenu .cateArea {
    float: left; }
    .navPage-subMegaMenu .cateArea > ul {
      display: block;
      width: 100%;
      font-size: 0;
      letter-spacing: 0;
      margin: 0 -15px;
      padding: 0;
      border: 0;
      float: none;
      list-style: none; }
      .navPage-subMegaMenu .cateArea > ul > li {
        position: relative;
        font-size: 12px;
        padding: 0 15px !important;
        width: 100%;
        float: none;
        display: inline-block;
        vertical-align: top; }
    .navPage-subMegaMenu .cateArea.columns-2 > ul > li {
      width: 50%; }
    .navPage-subMegaMenu .cateArea.columns-3 > ul > li {
      width: 33.3333333%; }
    .navPage-subMegaMenu .cateArea.columns-4 > ul > li {
      width: 25%; }
    .navPage-subMegaMenu .cateArea.columns-5 > ul > li {
      width: 20%; }
    .navPage-subMegaMenu .cateArea.columns-6 > ul > li {
      width: 16.6666666667%; }
    .navPage-subMegaMenu .cateArea.colLeft {
      float: left; }
      .navPage-subMegaMenu .cateArea.colLeft > .navPage-subMenu-list > li {
        padding: 0 15px !important; }
        .navPage-subMegaMenu .cateArea.colLeft > .navPage-subMenu-list > li > a {
          border: 0;
          margin: 0; }
  .navPage-subMegaMenu .imageArea {
    display: inline-flex; }
    .navPage-subMegaMenu .imageArea > .imgList {
      padding: 13px 0 0;
      display: block;
      font-size: 0;
      margin: 0 -3px; }
      .navPage-subMegaMenu .imageArea > .imgList .imgItem {
        width: 50%;
        padding: 0 3px;
        vertical-align: top;
        display: inline-block; }
        .navPage-subMegaMenu .imageArea > .imgList .imgItem a {
          display: block; }
        .navPage-subMegaMenu .imageArea > .imgList .imgItem .imgHeading {
          margin: 0;
          font-size: 12px;
          font-weight: 600;
          padding: 7px 0;
          text-align: center;
          text-transform: uppercase;
          color: #050505; }
      .navPage-subMegaMenu .imageArea > .imgList.style-2 {
        margin: 0 -8px;
        padding-top: 0; }
        .navPage-subMegaMenu .imageArea > .imgList.style-2 .imgItem {
          padding: 0 8px; }
          .navPage-subMegaMenu .imageArea > .imgList.style-2 .imgItem.imgRight {
            padding-top: 10px; }
    .navPage-subMegaMenu .imageArea .card {
      margin: 0; }
      .navPage-subMegaMenu .imageArea .card .card-brand {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 1;
        letter-spacing: .02em;
        text-transform: capitalize;
        color: #969696; }
      .navPage-subMegaMenu .imageArea .card .card-title {
        font-size: 12px;
        text-transform: capitalize; }
      .navPage-subMegaMenu .imageArea .card .card-rating {
        margin: 0 0 10px 0; }
      .navPage-subMegaMenu .imageArea .card .card-price-wrapper {
        font-size: 12px;
        text-transform: capitalize;
        color: #373737; }
      .navPage-subMegaMenu .imageArea .card .card-figcaption {
        top: auto;
        left: auto;
        display: block;
        transform: none;
        position: relative;
        opacity: 1;
        font-size: 12px;
        margin-top: 15px;
        visibility: visible;
        text-align: center; }
        .navPage-subMegaMenu .imageArea .card .card-figcaption a {
          text-transform: uppercase;
          text-decoration: none; }
    .navPage-subMegaMenu .imageArea.colRight {
      float: right;
      padding: 0 0 0 20px;
      flex-direction: column; }
  .navPage-subMegaMenu .navPage-subMenu-action {
    font-weight: 700;
    text-transform: uppercase; }
  .navPage-subMegaMenu .navPage-childList .navPage-childList-item {
    position: relative; }
    .navPage-subMegaMenu .navPage-childList .navPage-childList-item .navPage-childList-action {
      padding: 5px 0;
      font-weight: 400;
      text-transform: capitalize; }
  .navPage-subMegaMenu.imageTop .imageTop-item {
    display: block;
    margin-bottom: 10px; }
  .navPage-subMegaMenu.imageTop .cateArea > ul > li > .navPage-subMenu-action {
    margin-bottom: 0;
    border: 0; }
  @media (min-width: 1025px) {
    .navPage-subMegaMenu {
      max-height: 400px;
      overflow-y: auto; } }
  @media (min-width: 1300px) {
    .navPage-subMegaMenu {
      max-height: none;
      overflow-y: visible; } }
  @media (max-width: 1300px) and (min-width: 1025px) {
    .navPage-subMegaMenu .cateArea > ul {
      margin-left: -5px;
      margin-right: -5px; }
      .navPage-subMegaMenu .cateArea > ul > li {
        padding-left: 5px !important;
        padding-right: 5px !important; }
        .navPage-subMegaMenu .cateArea > ul > li > .navPage-subMenu-action {
          font-size: 10px; } }
  @media (max-width: 1024px) and (min-width: 801px) {
    .navPage-subMegaMenu .cateArea.columns-6 > ul > li {
      width: 33.3333333%; }
    .navPage-subMegaMenu .cateArea.columns-5 > ul > li {
      width: 33.3333333%; }
    .navPage-subMegaMenu .cateArea.columns-4 > ul > li {
      width: 33.3333333%; } }
  @media (max-width: 800px) {
    .navPage-subMegaMenu .cateArea > ul > li {
      width: 100% !important; }
    .navPage-subMegaMenu .cateArea.colLeft {
      max-width: 100% !important; } }
  @media (max-width: 767px) {
    .navPage-subMegaMenu {
      box-shadow: none; }
      .navPage-subMegaMenu .navPage-subMenu-action {
        font-weight: 400; }
      .navPage-subMegaMenu .imageArea > .imgList {
        margin: 0 !important;
        padding-bottom: 10px; }
        .navPage-subMegaMenu .imageArea > .imgList > .imgItem {
          width: 100%; }
      .navPage-subMegaMenu .imageArea.colRight {
        float: none;
        padding: 0;
        max-width: 100% !important; } }

.navPages-label {
  line-height: 1;
  font-size: 10px;
  margin-left: 10px;
  font-weight: 500;
  padding: 3px 5px 2px 5px;
  letter-spacing: 0;
  border-radius: 1px;
  text-align: center;
  position: relative;
  border: 1px solid;
  display: inline-block;
  text-transform: capitalize; }
  .navPages-label:before {
    content: "";
    position: absolute;
    border: 5px solid transparent;
    top: 50%;
    right: 100%;
    transform: translateY(-50%); }
  @media (min-width: 768px) {
    .navPages-label {
      display: inline-block;
      position: absolute;
      right: -5px;
      top: -10px;
      z-index: 1000;
      margin-left: 0;
      transform: translateX(-50%); }
      .navPages-label:before {
        left: 50%;
        right: auto;
        top: 100%;
        transform: translateX(-50%); }
      .navPages-label.sale-label:before {
        border-right-color: transparent; }
      .navPages-label.new-label:before {
        border-right-color: transparent; }
      .navPages-label.hot-label:before {
        border-right-color: transparent; } }

@media (min-width: 768px) {
  .f-topbar-fixed .navPages-label {
    top: 0;
    right: -10px; } }

@media all and (min-width: 801px) {
  li.navPages-item.navPages-content-page.about-us, li.navPages-item.navPages-content-page.contact-us, li.navPages-item.navPages-content-page.blog {
    display: none; }
  .navPages-list > .navPages-item.show_mobile {
    display: none !important; } }

@media (max-width: 800px) {
  .DesktopSelectionText {
    display: none !important; }
  .MobSelectionText {
    display: block !important;
    margin: 1rem; }
  .form.OrderTacking .form-row {
    display: block; }
  .header {
    background: transparent; }
    .header .header-top {
      background: #ffffff; }
  .navPages-container {
    display: block;
    width: 290px;
    left: -290px;
    transition: all .5s ease;
    padding-top: 55px; }
    .navPages-container .navPages {
      padding: 0;
      background: #fff; }
      .navPages-container .navPages .navPages-quickSearch {
        padding: 1.5rem;
        margin: 0; }
      .navPages-container .navPages .navPages-list > .navPages-item {
        position: relative;
        margin: 0; }
        .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action {
          display: block;
          padding: 13px 20px 12px;
          text-transform: uppercase;
          text-align: left;
          color: #050505;
          letter-spacing: 0;
          font-weight: 700;
          border-bottom: 1px solid #e5e5e5; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action .navPages-action-moreIcon {
            position: absolute;
            width: 46px;
            height: 46px;
            top: 0;
            right: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: unset; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action .navPages-action-moreIcon svg {
              display: none;
              fill: #050505;
              stroke: #050505;
              width: 16px;
              height: 16px; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action .navPages-action-moreIcon:before, .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action .navPages-action-moreIcon:after {
              background: #686868;
              content: '';
              height: 2px;
              left: 18px;
              position: absolute;
              top: 20px;
              width: 10px;
              transition: transform .5s ease; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action .navPages-action-moreIcon:after {
              transform-origin: center;
              transform: rotate(90deg); }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action.is-open .navPages-action-moreIcon {
            transform: unset;
            border: 0; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action.is-open .navPages-action-moreIcon:before, .navPages-container .navPages .navPages-list > .navPages-item > .navPages-action.is-open .navPages-action-moreIcon:after {
              transform: rotate(180deg); }
        .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu {
          display: block;
          opacity: 0;
          visibility: hidden;
          height: 0;
          padding: 0 !important;
          border-bottom: 1px solid #e5e5e5;
          transition: all .3s ease;
          background-color: #fafafa;
          overflow: hidden; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .container {
            padding: 0; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .cateArea {
            float: none; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-subMenu-list {
            margin: 0; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-item {
              position: relative;
              padding: 0 !important; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-action {
              text-transform: capitalize;
              text-align: left;
              display: block;
              padding: 13px 0 12px 0;
              color: #050505;
              letter-spacing: 0;
              font-weight: 400;
              margin-right: 20px;
              margin-left: 20px; }
              .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-action > .navPages-action-moreIcon {
                position: absolute;
                width: 46px;
                height: 46px;
                top: 0;
                right: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center; }
                .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-subMenu-list .navPage-subMenu-action > .navPages-action-moreIcon svg {
                  fill: #050505;
                  stroke: #050505;
                  width: 12px;
                  height: 12px; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-childList {
            border: 0;
            margin: 0;
            padding: 0; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-childList .navPage-childList-item {
              position: relative; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-childList .navPage-childList-action {
              text-transform: capitalize;
              text-align: left;
              display: block;
              padding: 13px 0 12px 15px;
              color: #050505;
              letter-spacing: 0;
              font-weight: 400;
              margin-right: 20px;
              margin-left: 20px; }
            .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu .navPage-childList.is-open {
              border-bottom: 1px solid #e5e5e5; }
          .navPages-container .navPages .navPages-list > .navPages-item > .navPage-subMenu.is-open {
            opacity: 1;
            visibility: visible;
            height: 100%; }
        .navPages-container .navPages .navPages-list > .navPages-item.show_mobile {
          display: block; }
          .navPages-container .navPages .navPages-list > .navPages-item.show_mobile > .navPages-action {
            text-transform: capitalize; }
            .navPages-container .navPages .navPages-list > .navPages-item.show_mobile > .navPages-action .icon {
              position: relative;
              top: -2px;
              margin-right: 7px;
              display: inline-block;
              vertical-align: middle; }
              .navPages-container .navPages .navPages-list > .navPages-item.show_mobile > .navPages-action .icon svg {
                fill: #050505;
                stroke: #050505; }
    .navPages-container.is-open {
      left: 0; } }

@media all and (max-width: 450px) {
  .productGrid .product {
    width: 100%; }
  .footer-copyright-wrap .footer-copyright {
    flex-direction: column;
    margin-top: 20px; } }

@media (max-width: 325px) {
  .navPages-container {
    padding-top: 45px; }
    .navPages-container.is-open {
      padding-top: 45px; } }

.blog .ModelsProducts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px; }
  .blog .ModelsProducts .ModelProduct {
    width: 48%;
    margin-bottom: 2%;
    position: relative; }
    @media all and (max-width: 450px) {
      .blog .ModelsProducts .ModelProduct {
        width: 100%; } }
    .blog .ModelsProducts .ModelProduct .ProductImage {
      background: #f8f8f8;
      padding: 20px;
      margin: 0 0 20px 0; }
      .blog .ModelsProducts .ModelProduct .ProductImage a {
        display: block; }
        .blog .ModelsProducts .ModelProduct .ProductImage a img {
          width: 100%; }
    .blog .ModelsProducts .ModelProduct .ProductBody:hover a {
      opacity: 1 !important; }
    .blog .ModelsProducts .ModelProduct .ProductBody:hover span {
      opacity: 1 !important; }
    .blog .ModelsProducts .ModelProduct .ProductBody a {
      text-decoration: none; }
    .blog .ModelsProducts .ModelProduct .ProductBody .ProdBrand {
      display: block;
      color: #444;
      font-size: 12px;
      opacity: .7; }
    .blog .ModelsProducts .ModelProduct .ProductBody .ProdDesc {
      display: block;
      font-size: 14px;
      color: #000;
      opacity: .7;
      margin-bottom: 70px; }
    .blog .ModelsProducts .ModelProduct .ProductBody .ProdTitle {
      margin: 10px 0;
      min-height: 57px; }
      .blog .ModelsProducts .ModelProduct .ProductBody .ProdTitle a {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        opacity: .7; }
    .blog .ModelsProducts .ModelProduct .ProductBody .MpButton {
      background: #603721;
      text-align: center;
      padding: 10px 5px;
      color: #fff;
      font-size: 14px;
      display: block;
      margin-top: 20px;
      text-transform: uppercase;
      border: 1px solid #603721;
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 0; }
      .blog .ModelsProducts .ModelProduct .ProductBody .MpButton:hover {
        background: #fff;
        color: #603721; }

.body-product .breadcrumbs {
  text-align: left; }

.productView {
  font-family: "Work Sans", sans-serif; }
  @media (min-width: 801px) {
    .productView + .product-contents {
      margin: 4rem 1.75rem 3rem; } }
  .productView .productView-images {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 0px;
    float: none;
    padding: 0; }
    @media (min-width: 1261px) {
      .productView .productView-images {
        padding-left: 1rem;
        padding-right: 1rem; } }
    @media (min-width: 1261px) {
      .productView .productView-images {
        width: 55%;
        max-width: unset;
        padding-left: 25px;
        padding-right: 25px;
        margin: 0 0 1.4rem;
        float: left; } }
    @media (min-width: 801px) {
      .productView .productView-images .productView-thumbs {
        margin: 4rem 0 0 0;
        width: 7.5rem; } }
    .productView .productView-images .productView-thumbs > .productView-thumb:nth-child(n+6) {
      display: none; }
    .productView .productView-images .productView-thumbs.slick-dotted .slick-prev:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
    .productView .productView-images .productView-thumbs.slick-dotted .slick-prev:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
    .productView .productView-images .productView-thumbs.slick-dotted .slick-next:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }
    .productView .productView-images .productView-thumbs.slick-dotted .slick-next:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }
    .productView .productView-images .productView-thumbs.slick-vertical .slick-prev, .productView .productView-images .productView-thumbs.slick-vertical .slick-next {
      height: 30px;
      padding: 0;
      width: 30px; }
      .productView .productView-images .productView-thumbs.slick-vertical .slick-prev:before, .productView .productView-images .productView-thumbs.slick-vertical .slick-next:before {
        height: 100%;
        width: 100%; }
    @media (min-width: 801px) {
      .productView .productView-images .productView-thumbs.slick-vertical .slick-prev {
        top: -18px; } }
    .productView .productView-images .productView-thumbs.slick-vertical .slick-prev:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
    .productView .productView-images .productView-thumbs.slick-vertical .slick-prev:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
    @media (min-width: 801px) {
      .productView .productView-images .productView-thumbs.slick-vertical .slick-next {
        bottom: -36px; } }
    .productView .productView-images .productView-thumbs.slick-vertical .slick-next:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }
    .productView .productView-images .productView-thumbs.slick-vertical .slick-next:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }
    .productView .productView-images .productView-thumbs .productView-thumb {
      text-align: center; }
      .productView .productView-images .productView-thumbs .productView-thumb .productView-thumbnail-link {
        border-radius: 10px;
        height: 90px;
        max-width: 90px; }
    @media (min-width: 801px) {
      .productView .productView-images .productView-image.has-thumbs {
        width: calc(100% - 7.5rem);
        padding: 0 2rem; } }
    .productView .productView-images .productView-image.has-thumbs .productView-img-container {
      position: relative;
      margin: auto;
      max-width: 655px;
      width: 100%;
      padding: 2rem;
      box-shadow: rgba(0, 0, 0, 0.05) 0 1px 15px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0, rgba(0, 0, 0, 0.05) 0 2px 1px 0;
      border-radius: 10px; }
      .productView .productView-images .productView-image.has-thumbs .productView-img-container img {
        max-height: 94%; }
    .productView .productView-images .productView-image .prod-img-description {
      display: none;
      color: #8C8C8C;
      font-size: 12px;
      line-height: 1.8rem; }
  .productView .productView-details {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.4rem;
    float: none;
    padding: 0; }
    @media (min-width: 801px) {
      .productView .productView-details {
        padding-left: 1rem;
        padding-right: 1rem; } }
    @media (min-width: 1261px) {
      .productView .productView-details {
        width: 45%;
        max-width: unset;
        padding-left: 25px;
        padding-right: 25px;
        float: right; } }
    .productView .productView-details .productView-product {
      border-bottom: 0;
      padding-bottom: 0; }
      .productView .productView-details .productView-product .productView-title {
        font-family: "Work Sans", sans-serif;
        font-size: 25px;
        font-weight: 600;
        line-height: 28px;
        margin-top: 0; }
        @media (min-width: 801px) {
          .productView .productView-details .productView-product .productView-title {
            font-size: 35px;
            font-weight: 600;
            line-height: 34px; } }
      .productView .productView-details .productView-product .productView-price .price-flex .price-label {
        display: none !important; }
      .productView .productView-details .productView-product .productView-rating {
        display: flex;
        position: relative; }
        .productView .productView-details .productView-product .productView-rating .icon {
          height: 23px;
          width: 23px; }
          .productView .productView-details .productView-product .productView-rating .icon.icon--ratingFull svg {
            fill: #FFBB00; }
        .productView .productView-details .productView-product .productView-rating .productView-reviewLink {
          color: #232B2E;
          font-family: "Work Sans", sans-serif;
          font-size: 15px;
          text-decoration: none; }
          @media (min-width: 641px) {
            .productView .productView-details .productView-product .productView-rating .productView-reviewLink + .productView-reviewLink {
              display: inline-block;
              position: absolute;
              right: 0; } }
          .productView .productView-details .productView-product .productView-rating .productView-reviewLink > a {
            color: #232B2E;
            font-family: "Work Sans", sans-serif;
            font-size: 15px;
            text-decoration: none; }
    .productView .productView-details .lead-times-notes {
      color: #232B2E;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 1rem; }
    .productView .productView-details .productView-availability {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29.645 29.645'%3E%3Cg transform='translate(-1205.596 -1086.29)'%3E%3Ccircle cx='14.823' cy='14.823' r='14.823' transform='translate(1205.596 1086.29)' fill='%236e3a16'/%3E%3Cg%3E%3Cpath d='M1230.064,1105.217a2.146,2.146,0,0,1-2.093,1.526c-.829-.032-1.3-.462-1.674-1.525h-.236q-3.837,0-7.673-.005a.312.312,0,0,0-.35.235,2.075,2.075,0,0,1-2.074,1.291,1.7,1.7,0,0,1-1.511-1.262c-.02-.079-.037-.158-.061-.259-.384,0-.765,0-1.146,0a.907.907,0,0,1-.989-1.112c.037-.348.076-.7.113-1.044s.072-.7.111-1.074c-.1-.005-.2-.015-.291-.015q-1.489,0-2.981,0c-.1,0-.225.02-.283-.032-.1-.092-.233-.236-.227-.351s.159-.228.265-.324c.037-.033.125-.013.19-.013h5.621c.048,0,.1,0,.146,0a.356.356,0,0,1,.361.353.349.349,0,0,1-.353.362c-.333.013-.667,0-1,.005h-.71c-.023.2-.044.382-.064.565-.058.551-.112,1.1-.177,1.651-.026.224.049.314.28.305.333-.012.668-.012,1,0a.25.25,0,0,0,.282-.191,2.082,2.082,0,0,1,1.948-1.34,1.682,1.682,0,0,1,1.667,1.343c.031.137.075.187.219.187q3.141-.008,6.28,0a.941.941,0,0,0,.1-.014c.043-.386.088-.779.13-1.171q.354-3.376.706-6.754c.033-.322.008-.346-.323-.346h-10.849c-.6,0-.657.058-.659.714h3.188a.923.923,0,0,1,.242.017.336.336,0,0,1,.274.356.341.341,0,0,1-.314.347,1.077,1.077,0,0,1-.171.005h-5.425c-.04,0-.081,0-.122,0a.361.361,0,1,1,.006-.721c.432-.009.863,0,1.295,0h.271c.022-.172.042-.315.059-.459a1.021,1.021,0,0,1,1.121-.978q3.885,0,7.77,0h3.348a.9.9,0,0,1,1.014,1.106c-.031.371-.074.742-.116,1.146h.293c.684,0,1.368,0,2.052,0a1.722,1.722,0,0,1,1.32.587c.616.683,1.233,1.366,1.841,2.057a1.715,1.715,0,0,1,.421,1.337q-.125,1.289-.276,2.574a1.011,1.011,0,0,1-1.044.928C1230.559,1105.221,1230.307,1105.217,1230.064,1105.217Zm.077-.728c.215,0,.426,0,.638,0a.329.329,0,0,0,.368-.336c.089-.841.18-1.683.26-2.525a1.051,1.051,0,0,0-.288-.828c-.572-.635-1.147-1.267-1.708-1.912a1.211,1.211,0,0,0-.986-.438c-.684.006-1.368,0-2.052,0-.078,0-.157.008-.25.013l-.633,6.023c.251,0,.47-.01.688,0a.244.244,0,0,0,.283-.187,2.053,2.053,0,0,1,1.228-1.216,1.754,1.754,0,0,1,2.262.843C1230.028,1104.1,1230.071,1104.283,1230.141,1104.489Zm-13.677-.8a1.363,1.363,0,0,0-1.342,1.312.983.983,0,0,0,1.01,1.024,1.372,1.372,0,0,0,1.343-1.315A.981.981,0,0,0,1216.464,1103.687Zm10.581,1.29a.98.98,0,0,0,.986,1.046,1.378,1.378,0,0,0,1.367-1.292.986.986,0,0,0-.99-1.044A1.365,1.365,0,0,0,1227.045,1104.977Z' fill='%23fff'/%3E%3Cpath d='M1214.166,1100.529h-3.273a1.237,1.237,0,0,1-.244-.009.341.341,0,0,1-.3-.336.335.335,0,0,1,.266-.362.929.929,0,0,1,.242-.019h6.645a.928.928,0,0,1,.218.012.343.343,0,0,1,.287.371.338.338,0,0,1-.3.335,1.318,1.318,0,0,1-.244.009Z' fill='%23fff'/%3E%3Cpath d='M1213.024,1098.368q1.453,0,2.907,0c.293,0,.457.13.459.355s-.168.364-.455.364q-2.931,0-5.863,0c-.288,0-.451-.143-.445-.372s.166-.347.441-.347Q1211.545,1098.365,1213.024,1098.368Z' fill='%23fff'/%3E%3Cpath d='M1230.54,1101.235c-.154.01-.232.019-.31.019h-3.344c-.3,0-.339-.041-.307-.343.05-.469.1-.937.145-1.407.02-.236.109-.35.366-.339.39.017.781.005,1.171,0a.953.953,0,0,1,.753.335c.436.494.879.983,1.318,1.474C1230.39,1101.042,1230.441,1101.112,1230.54,1101.235Z' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: top 22px left 18px;
      background-size: 30px;
      background-color: #F5EDE4;
      border-radius: 10px;
      font-family: "Work Sans", sans-serif;
      font-size: 14px;
      line-height: 1.6rem;
      margin: 0 0 2rem;
      padding: 18px 18px 18px 60px; }
      .productView .productView-details .productView-availability p {
        margin: 0 0 0.8rem; }
      .productView .productView-details .productView-availability a {
        font-weight: 600;
        text-decoration: none; }
    .productView .productView-details .productView-options {
      border-bottom: 0; }
      .productView .productView-details .productView-options .form .form-field .form-label--alternate {
        color: #232B2E;
        font-family: "Work Sans", sans-serif;
        font-size: 14px;
        font-weight: 400;
        position: relative; }
        .productView .productView-details .productView-options .form .form-field .form-label--alternate small {
          color: #232B2E;
          font-family: "Work Sans", sans-serif;
          font-weight: 500; }
        @media (min-width: 801px) {
          .productView .productView-details .productView-options .form .form-field .form-label--alternate .option-help-icon {
            position: absolute;
            right: 0;
            top: 0; } }
        .productView .productView-details .productView-options .form .form-field .form-label--alternate .option-help-icon .OptionMoreInfo {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 431.855 431.855' fill='%236e3a16'%3E%3Cpath d='M215.936,0C96.722,0,0.008,96.592,0.008,215.814c0,119.336,96.714,216.041,215.927,216.041             c119.279,0,215.911-96.706,215.911-216.041C431.847,96.592,335.214,0,215.936,0z M231.323,335.962             c-5.015,4.463-10.827,6.706-17.411,6.706c-6.812,0-12.754-2.203-17.826-6.617c-5.08-4.406-7.625-10.575-7.625-18.501             c0-7.031,2.463-12.949,7.373-17.745c4.91-4.796,10.933-7.194,18.078-7.194c7.031,0,12.949,2.398,17.753,7.194             c4.796,4.796,7.202,10.713,7.202,17.745C238.858,325.362,236.346,331.5,231.323,335.962z M293.856,180.934             c-3.853,7.145-8.429,13.306-13.737,18.501c-5.292,5.194-14.81,13.924-28.548,26.198c-3.788,3.463-6.836,6.503-9.12,9.12             c-2.284,2.626-3.991,5.023-5.105,7.202c-1.122,2.178-1.983,4.357-2.593,6.535c-0.61,2.17-1.528,5.999-2.772,11.469             c-2.113,11.608-8.754,17.411-19.915,17.411c-5.804,0-10.681-1.894-14.656-5.69c-3.959-3.796-5.934-9.429-5.934-16.907             c0-9.372,1.455-17.493,4.357-24.361c2.886-6.869,6.747-12.892,11.543-18.086c4.804-5.194,11.274-11.356,19.427-18.501             c7.145-6.251,12.307-10.965,15.485-14.144c3.186-3.186,5.861-6.73,8.031-10.632c2.187-3.91,3.26-8.145,3.26-12.721             c0-8.933-3.308-16.46-9.957-22.597c-6.641-6.137-15.209-9.21-25.703-9.21c-12.282,0-21.321,3.097-27.125,9.291             c-5.804,6.194-10.705,15.314-14.729,27.369c-3.804,12.616-11.006,18.923-21.598,18.923c-6.251,0-11.526-2.203-15.826-6.609             c-4.292-4.406-6.438-9.177-6.438-14.314c0-10.6,3.406-21.346,10.21-32.23c6.812-10.884,16.745-19.899,29.807-27.036             c13.054-7.145,28.296-10.722,45.699-10.722c16.184,0,30.466,2.991,42.854,8.966c12.388,5.966,21.963,14.087,28.718,24.361             c6.747,10.266,10.128,21.427,10.128,33.482C299.635,165.473,297.709,173.789,293.856,180.934z'%3E%3C/path%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: center left;
          background-size: 16px;
          color: #232B2E;
          padding-left: 20px;
          text-decoration: none; }
      .productView .productView-details .productView-options .form .form-field .form-input--small {
        font-size: 14px;
        font-weight: 500; }
      .productView .productView-details .productView-options .form .form-field .form-select {
        background-color: #F7F7F7;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='%236e3a16' /%3E%3C/svg%3E");
        background-position: center right 1rem;
        background-size: 2rem;
        border-color: #F7F7F7;
        border-radius: 10px;
        font-size: 14px;
        height: 56px;
        line-height: 1.4rem;
        max-width: 100%;
        min-width: unset;
        padding: 1rem 4rem 1rem 2rem;
        width: 100%; }
      .productView .productView-details .productView-options .form .form-field .productOptions-list {
        background-color: #F7F7F7;
        border: 0;
        border-radius: 10px;
        list-style: none;
        margin: 0;
        padding: 0.8rem; }
        .productView .productView-details .productView-options .form .form-field .productOptions-list .productOptions-list-item {
          padding: 1rem; }
          @media (min-width: 801px) {
            .productView .productView-details .productView-options .form .form-field .productOptions-list .productOptions-list-item {
              padding: 1.5rem; } }
          .productView .productView-details .productView-options .form .form-field .productOptions-list .productOptions-list-item + .productOptions-list-item {
            border-top: 1px solid #707070; }
          .productView .productView-details .productView-options .form .form-field .productOptions-list .productOptions-list-item .form-radio + .form-label {
            font-size: 14px;
            font-weight: 400; }
            .productView .productView-details .productView-options .form .form-field .productOptions-list .productOptions-list-item .form-radio + .form-label:after {
              background: #6e3a16; }
      .productView .productView-details .productView-options .form .form-field[data-product-attribute="textarea"] .form-input {
        background-color: #F7F7F7;
        border-radius: 10px;
        border: 0;
        font-size: 14px; }
      .productView .productView-details .productView-options .form .form-field[data-product-attribute="set-rectangle"] .form-option {
        background-color: #F7F7F7;
        border: 1px solid #F7F7F7;
        border-radius: 10px;
        color: #232B2E; }
        .productView .productView-details .productView-options .form .form-field[data-product-attribute="set-rectangle"] .form-option .form-option-variant {
          color: #232B2E;
          display: inline-block;
          font-size: 14px;
          padding: 0.5rem 0.917rem; }
      .productView .productView-details .productView-options .form .form-field[data-product-attribute="set-rectangle"] .form-radio:checked + .form-option {
        box-shadow: 0 0 0 1px #6e3a16; }
    .productView .productView-details #add-to-cart-wrapper .form-field--increments {
      align-items: center;
      display: flex;
      gap: 1rem;
      flex-direction: column;
      justify-content: flex-start; }
      @media (min-width: 801px) {
        .productView .productView-details #add-to-cart-wrapper .form-field--increments {
          flex-direction: row; } }
      .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-label {
        margin: 0 1rem 0 0; }
      .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-increment {
        display: flex;
        gap: 0.5rem; }
        .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-increment .button {
          background-color: #F7F7F7;
          border-radius: 10px;
          height: 40px;
          width: 40px; }
          @media (min-width: 801px) {
            .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-increment .button {
              height: 60px;
              width: 60px; } }
        .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-increment .form-input[type="number"] {
          background-color: #F7F7F7;
          border-radius: 10px;
          font-size: 18px;
          height: 40px;
          width: 70px;
          min-width: unset;
          max-width: 100%; }
          @media (min-width: 801px) {
            .productView .productView-details #add-to-cart-wrapper .form-field--increments .form-increment .form-input[type="number"] {
              height: 60px;
              width: 90px; } }
    .productView .productView-details #add-to-cart-wrapper .form-addToCart {
      display: flex;
      gap: 1rem;
      margin: 0 0 1rem;
      flex-direction: column;
      width: calc(100% - 65px);
      max-width: unset;
      align-items: flex-start; }
      @media (min-width: 1261px) {
        .productView .productView-details #add-to-cart-wrapper .form-addToCart {
          flex-direction: row; } }
      .productView .productView-details #add-to-cart-wrapper .form-addToCart .button {
        border-radius: 5px;
        font-family: "Work Sans", sans-serif;
        font-size: 16px;
        margin: 0;
        width: 100%;
        background-color: #718239;
        border: 1px solid #000; }
        @media (min-width: 1261px) {
          .productView .productView-details #add-to-cart-wrapper .form-addToCart .button {
            width: 50%; } }
        .productView .productView-details #add-to-cart-wrapper .form-addToCart .button:hover {
          color: #718239;
          background-color: #fff; }
  .productView .productView-description.description-split {
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0 1px 15px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0, rgba(0, 0, 0, 0.05) 0 2px 1px 0;
    border-radius: 10px;
    clear: both;
    float: none;
    margin: 0;
    margin: 0;
    padding: 16px;
    width: 100%; }
    @media (min-width: 801px) {
      .productView .productView-description.description-split {
        margin: 0 12px;
        width: calc(100% - 24px); } }
    @media (min-width: 1261px) {
      .productView .productView-description.description-split {
        clear: left;
        float: left;
        margin: 0;
        width: calc(55% - 52px);
        padding: 26px;
        margin: 0 25px; } }
    .productView .productView-description.description-split h1, .productView .productView-description.description-split h2, .productView .productView-description.description-split h3, .productView .productView-description.description-split h4, .productView .productView-description.description-split h5, .productView .productView-description.description-split h6 {
      font-family: "Work Sans", sans-serif;
      font-weight: 600; }
    .productView .productView-description.description-split p, .productView .productView-description.description-split li, .productView .productView-description.description-split table tr td, .productView .productView-description.description-split table tr th {
      border-color: #6E3A16;
      font-size: 14px;
      line-height: 1.6rem; }
    .productView .productView-description.description-split table {
      width: auto !important; }
    .productView .productView-description.description-split table tr th {
      background-color: #F5EDE4;
      color: #232B2E;
      font-weight: 500;
      font-family: "Work Sans", sans-serif;
      text-align: left;
      vertical-align: bottom;
      border: 1px solid #6E3A16;
      padding-bottom: .75em;
      padding-top: .75em;
      padding-left: 1em;
      padding-right: 1em; }
    .productView .productView-description.description-split table tr td {
      background-color: #F7F7F7;
      color: #232B2E;
      font-family: "Work Sans", sans-serif;
      border: 1px solid;
      padding-bottom: .75em;
      padding-top: .75em;
      padding-left: 1em;
      padding-right: 1em; }
    .productView .productView-description.description-split strong, .productView .productView-description.description-split b {
      font-weight: 500;
      line-height: inherit; }
    .productView .productView-description.description-split .tabs {
      border-bottom: 0;
      margin: 0; }
      @media (min-width: 801px) {
        .productView .productView-description.description-split .tabs {
          margin: 0;
          display: flex;
          flex-wrap: wrap; } }
      .productView .productView-description.description-split .tabs .tab {
        border: 0;
        margin-right: 1.4rem; }
        @media (min-width: 801px) {
          .productView .productView-description.description-split .tabs .tab {
            border: 0;
            margin-right: 1rem;
            float: none;
            margin-bottom: 1rem; } }
        .productView .productView-description.description-split .tabs .tab.is-active {
          border: 0; }
          .productView .productView-description.description-split .tabs .tab.is-active .tab-title {
            color: #6E3A16;
            font-weight: 500; }
            @media (min-width: 801px) {
              .productView .productView-description.description-split .tabs .tab.is-active .tab-title span:after {
                background-color: #6E3A16; } }
        .productView .productView-description.description-split .tabs .tab .tab-title {
          background-repeat: no-repeat;
          background-size: 13px;
          background-position: center left;
          font-size: 14px;
          font-weight: 500;
          position: relative;
          padding: 0.75rem 0.75rem 0.75rem 1.8rem;
          text-align: left; }
          @media (min-width: 801px) {
            .productView .productView-description.description-split .tabs .tab .tab-title {
              padding: 0 0.45rem 0 1.5rem;
              text-align: left; } }
          @media (min-width: 801px) {
            .productView .productView-description.description-split .tabs .tab .tab-title span:after {
              content: '';
              height: 3px;
              background-color: transparent;
              width: 60%;
              position: absolute;
              bottom: -6px;
              right: calc(50% + -30% - 5%); } }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-description"], .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-product-details"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.248 15' fill='%236e3a16'%3E%3Cg transform='translate(-1411.998 -1033.912)'%3E%3Cpath d='M1424.034,1033.912h-10.823a1.215,1.215,0,0,0-1.213,1.212V1047.7a1.215,1.215,0,0,0,1.213,1.212h10.823a1.214,1.214,0,0,0,1.212-1.212v-12.576A1.214,1.214,0,0,0,1424.034,1033.912Zm.5,13.788a.5.5,0,0,1-.5.5h-10.823a.5.5,0,0,1-.5-.5v-12.576a.5.5,0,0,1,.5-.5h10.823a.5.5,0,0,1,.5.5Z' fill='%236e3a16'/%3E%3Cpath d='M1422.6,1036.541h-7.96a.357.357,0,0,0,0,.714h7.96a.357.357,0,0,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1422.6,1038.8h-7.96a.357.357,0,0,0,0,.714h7.96a.357.357,0,0,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1422.6,1041.055h-7.96a.357.357,0,0,0,0,.714h7.96a.357.357,0,0,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1422.6,1043.312h-7.96a.357.357,0,0,0,0,.714h7.96a.357.357,0,0,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1422.6,1045.569h-7.96a.357.357,0,0,0,0,.714h7.96a.357.357,0,0,0,0-.714Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-warranty"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.78 15'%3E%3Cg transform='translate(-1465.961 -1033.913)'%3E%3Cpath d='M1478.079,1036.3l-5.2-2.277a1.317,1.317,0,0,0-1.048,0l-5.205,2.277a1.1,1.1,0,0,0-.661,1.011v3.331a8.831,8.831,0,0,0,1.786,5.416,7.681,7.681,0,0,0,4.527,2.848.4.4,0,0,0,.077.008.385.385,0,0,0,.076-.008,7.683,7.683,0,0,0,4.528-2.848,8.83,8.83,0,0,0,1.786-5.416v-3.331A1.1,1.1,0,0,0,1478.079,1036.3Zm-.053,4.342a8.111,8.111,0,0,1-1.635,4.977,4.46,4.46,0,0,1-8.081,0,8.118,8.118,0,0,1-1.635-4.977v-3.331a.389.389,0,0,1,.233-.357l5.205-2.277a.6.6,0,0,1,.475,0h0l5.2,2.277a.389.389,0,0,1,.233.357Z' fill='%236e3a16'/%3E%3Cpath d='M1472.353,1038.034a3.378,3.378,0,1,0,3.374,3.379A3.383,3.383,0,0,0,1472.353,1038.034Zm0,6.043a2.664,2.664,0,1,1,2.66-2.664A2.667,2.667,0,0,1,1472.353,1044.077Z' fill='%236e3a16'/%3E%3Cpath d='M1473.34,1040.329l-1.41,1.41-.568-.568a.357.357,0,0,0-.505.505l.82.821a.359.359,0,0,0,.505,0l1.663-1.663a.357.357,0,0,0-.505-.505Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-shipping"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 14.164'%3E%3Cg transform='translate(-1518.579 -1034.33)'%3E%3Cpath d='M1533.222,1047.094a2.418,2.418,0,0,0-1.369.391,1.717,1.717,0,0,1-1.012.3h-.009l1.518-4.6a.359.359,0,0,0-.159-.421l-1-.584v-3.89a1.014,1.014,0,0,0-1.013-1.013h-.446v-2.588a.357.357,0,0,0-.358-.357h-2.625a.357.357,0,0,0-.358.357v2.588h-.618v-2.588a.357.357,0,0,0-.357-.357h-2.626a.357.357,0,0,0-.357.357v2.588h-.447a1.014,1.014,0,0,0-1.013,1.013v3.89l-1,.585a.357.357,0,0,0-.159.42l1.518,4.6h-.013a1.722,1.722,0,0,1-1.012-.3,2.411,2.411,0,0,0-1.368-.391.357.357,0,1,0,0,.714,1.716,1.716,0,0,1,1.012.3,2.418,2.418,0,0,0,1.368.39,2.425,2.425,0,0,0,1.37-.391,1.879,1.879,0,0,1,2.023,0,2.6,2.6,0,0,0,2.737,0,1.878,1.878,0,0,1,2.021,0,2.564,2.564,0,0,0,.809.336h.009a2.623,2.623,0,0,0,.556.055,2.419,2.419,0,0,0,1.369-.39,1.717,1.717,0,0,1,1.012-.3.357.357,0,0,0,0-.714Zm-1.954-2.911-4.83-2.823v-1.131l1.322.773,2.892,1.69h0l.926.541Zm-4.164-9.139h1.911v2.231H1527.1Zm-3.959,0h1.911v2.231h-1.911Zm-1.46,3.244a.3.3,0,0,1,.3-.3h8.192a.3.3,0,0,1,.3.3v3.472l-3.233-1.888-.982-.574a.258.258,0,0,0-.029-.012l-.025-.011a.318.318,0,0,0-.252,0l-.023.01c-.01.005-.021.007-.031.013l-2.457,1.436-1.758,1.027Zm-.179,4.405h0l1.7-1,2.51-1.467v1.13l-4.83,2.824-.313-.949Zm2.191,4.4a2.418,2.418,0,0,0-1.368.39,2.957,2.957,0,0,1-.288.153l-.006,0-.913-2.764,4.6-2.689v5.565a1.829,1.829,0,0,1-.658-.267A2.417,2.417,0,0,0,1523.7,1047.094Zm4.761,0a2.419,2.419,0,0,0-1.37.391,1.823,1.823,0,0,1-.65.266v-5.564l4.6,2.69-.913,2.765-.008,0a3.108,3.108,0,0,1-.3-.156A2.42,2.42,0,0,0,1528.458,1047.094Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-faq"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 12.337'%3E%3Cg transform='translate(-1572.307 -1035.243)'%3E%3Cpath d='M1585.947,1036.966h-1.062v-.359a1.366,1.366,0,0,0-1.364-1.364h-9.854a1.364,1.364,0,0,0-1.36,1.364v5.691a1.361,1.361,0,0,0,1.36,1.359h1.063v.363a1.361,1.361,0,0,0,1.36,1.36h.886v1.843a.356.356,0,0,0,.188.314.351.351,0,0,0,.169.043.355.355,0,0,0,.2-.059l3.259-2.141h5.159a1.361,1.361,0,0,0,1.36-1.36v-5.7A1.361,1.361,0,0,0,1585.947,1036.966Zm-12.28,5.977a.646.646,0,0,1-.646-.645v-5.691a.648.648,0,0,1,.646-.649h9.854a.65.65,0,0,1,.65.649v.359h-8.081a1.361,1.361,0,0,0-1.36,1.359v4.618Zm12.926,1.077a.646.646,0,0,1-.646.645h-5.265a.358.358,0,0,0-.2.059l-2.795,1.837v-1.539a.357.357,0,0,0-.358-.357h-1.243a.646.646,0,0,1-.646-.645v-5.7a.647.647,0,0,1,.646-.645h9.857a.647.647,0,0,1,.646.645Z' fill='%236e3a16'/%3E%3Cpath d='M1584.731,1039.093h-7.425a.357.357,0,0,0,0,.715h7.425a.357.357,0,0,0,0-.715Z' fill='%236e3a16'/%3E%3Cpath d='M1584.731,1040.774h-7.425a.357.357,0,1,0,0,.714h7.425a.357.357,0,1,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1584.731,1042.454h-7.425a.357.357,0,1,0,0,.714h7.425a.357.357,0,1,0,0-.714Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-product-features"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.907 15'%3E%3Cg transform='translate(-1628.082 -1033.912)'%3E%3Cpath d='M1637.859,1033.912h-8.647a1.131,1.131,0,0,0-1.13,1.13v12.74a1.131,1.131,0,0,0,1.13,1.13h8.647a1.131,1.131,0,0,0,1.13-1.13v-12.74A1.131,1.131,0,0,0,1637.859,1033.912Zm-7.277,14.286v-11.786h5.907V1048.2Zm7.693-.416a.417.417,0,0,1-.416.416h-.656v-12.143a.357.357,0,0,0-.357-.357h-6.621a.357.357,0,0,0-.357.357V1048.2h-.656a.416.416,0,0,1-.415-.416v-12.74a.416.416,0,0,1,.415-.416h8.647a.417.417,0,0,1,.416.416Z' fill='%236e3a16'/%3E%3Cpath d='M1631.9,1041.293a.357.357,0,0,0-.357.357v1.309a.357.357,0,0,0,.714,0v-1.309A.357.357,0,0,0,1631.9,1041.293Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-other-requirements"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.581 15'%3E%3Cg transform='translate(-1680.973 -1033.912)'%3E%3Cpath d='M1691.892,1033.912h-8.241a.188.188,0,0,0-.023.005.357.357,0,0,0-.091.018.317.317,0,0,0-.034.012.343.343,0,0,0-.105.07l-2.32,2.32a.344.344,0,0,0-.07.1c-.005.011-.008.022-.012.033a.364.364,0,0,0-.019.093c0,.007,0,.014,0,.022v10.659a1.665,1.665,0,0,0,1.663,1.663h9.256a1.664,1.664,0,0,0,1.662-1.663v-11.674A1.664,1.664,0,0,0,1691.892,1033.912Zm-8.6,1.219v.853a.25.25,0,0,1-.249.249h-.853l.551-.551Zm9.546,12.118a.95.95,0,0,1-.948.949h-9.256a.95.95,0,0,1-.949-.949v-10.3h1.358a.964.964,0,0,0,.963-.963v-1.358h7.884a.95.95,0,0,1,.948.949Z' fill='%236e3a16'/%3E%3Cpath d='M1683.315,1045.376h1.345a.65.65,0,0,0,.649-.649v-1.345a.65.65,0,0,0-.649-.649h-1.345a.65.65,0,0,0-.649.649v1.345A.65.65,0,0,0,1683.315,1045.376Zm.065-1.929h1.215v1.215h-1.215Z' fill='%236e3a16'/%3E%3Cpath d='M1691.505,1042.881h-4.639a.357.357,0,0,0,0,.714h4.639a.357.357,0,1,0,0-.714Z' fill='%236e3a16'/%3E%3Cpath d='M1688.457,1045.154a.357.357,0,0,0,0-.714h-1.591a.357.357,0,0,0,0,.714Z' fill='%236e3a16'/%3E%3Cpath d='M1687.264,1041.509a2.877,2.877,0,1,0-2.036-.843A2.882,2.882,0,0,0,1687.264,1041.509Zm-1.531-4.409a2.167,2.167,0,1,1-.633,1.531A2.153,2.153,0,0,1,1685.733,1037.1Z' fill='%236e3a16'/%3E%3Cpath d='M1686.624,1039.59a.359.359,0,0,0,.505,0l1.415-1.414a.357.357,0,0,0-.505-.505l-1.162,1.161-.39-.39a.357.357,0,0,0-.505.505Z' fill='%236e3a16'/%3E%3Cpath d='M1691.505,1046.357h-8.482a.357.357,0,0,0,0,.714h8.482a.357.357,0,1,0,0-.714Z' fill='%236e3a16'/%3E%3C/g%3E%3C/svg%3E"); }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-wood-type"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' stroke='%236E3A16' stroke-width='0.2' fill='%236E3A16'%3E%3Cg%3E%3Cpath d='M14.5,10.4c-0.6-1.4-1.1-2.7-1.7-4.1c-0.2-0.4-0.1-0.7,0.3-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.9,0,1.8,0,2.7,0.1c0.4,0,0.7,0.3,1,0.7c0.9,1.4,1.8,2.8,2.8,4.2c0.1,0.1,0.3,0.2,0.5,0.2c1.5,0,3.1,0,4.6,0c1.6-0.1,2.9,0.7,3.8,1.9c1,1.3,1.5,2.8,1.7,4.4c0.3,2.3,0.1,4.5-0.8,6.6c-0.4,0.8-0.8,1.6-1.5,2.3c-0.8,0.8-1.8,1.3-3,1.3c-6.5,0-13-0.1-19.6,0c-2.2,0-3.6-0.9-4.7-2.8c-1.1-2.1-1.4-4.3-1.3-6.6C0.7,16,1,14.6,1.8,13.3c0.4-0.6,0.8-1.2,1.3-1.7c0.8-0.8,1.8-1.2,3-1.2c2.7,0,5.4,0,8.1,0C14.3,10.4,14.3,10.4,14.5,10.4z M7.7,26.3c0.1,0,0.2,0,0.2,0c6.1,0,12.2,0,18.4,0c0.7,0,1.3-0.2,1.8-0.6c0.8-0.6,1.4-1.4,1.8-2.3c1-2.3,1.2-4.7,0.8-7.1c-0.3-1.5-0.8-2.8-1.8-3.9C28.1,11.4,27.2,11,26,11c-5.9,0-11.9,0-17.8,0c-0.1,0-0.3,0-0.5,0c1.8,1.9,2.2,2.6,2.7,4.4c0.4,1.4,0.5,2.7,0.4,4.1C10.6,22.1,9.9,24.5,7.7,26.3z M10.3,18.6c0-1.2-0.2-2.4-0.5-3.5c-0.4-1.3-1-2.5-2.1-3.4c-1.2-1-2.7-1-3.9,0C3,12.3,2.5,13,2.1,13.9c-1.2,2.8-1.3,5.7-0.3,8.6c0.4,1.2,1.1,2.4,2.1,3.2c1.1,0.8,2.4,0.8,3.5,0.1c0.9-0.6,1.4-1.4,1.9-2.3C10,21.9,10.3,20.3,10.3,18.6z M13.6,6.7c0.5,1.2,1,2.4,1.5,3.5c0,0.1,0.3,0.2,0.4,0.2c1.5,0,2.9,0,4.4,0c0.1,0,0.2,0,0.3,0c-0.9-1.3-1.7-2.6-2.6-3.9C16.3,7,15,6.9,13.6,6.7z M13.3,6c1.4,0.4,2.7,0.4,4,0C16.3,5.5,14.2,5.5,13.3,6z'/%3E%3Cpath d='M23.4,15.9c1.8,0,3.5,0,5.3,0c0.1,0,0.3,0,0.4,0c0.1,0,0.2,0.2,0.2,0.3c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-3.6,0-7.1,0-10.7,0c0,0-0.1,0-0.1,0c-0.2,0-0.5,0-0.5-0.3c0-0.3,0.3-0.3,0.5-0.3C19.8,15.9,21.6,15.9,23.4,15.9z'/%3E%3Cpath d='M17.6,13.6c-1.8,0-3.6,0-5.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.2-0.2-0.2-0.3c0-0.1,0.1-0.2,0.2-0.2c0.1,0,0.2,0,0.4,0c3.6,0,7.2,0,10.7,0c0.1,0,0.2,0,0.3,0c0.1,0.1,0.2,0.2,0.3,0.3c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0-0.2,0-0.3,0C21.2,13.6,19.4,13.6,17.6,13.6z'/%3E%3Cpath d='M23.4,21.8c1.8,0,3.6,0,5.4,0c0.1,0,0.2,0,0.3,0c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.2,0c-3.6,0-7.3,0-10.9,0c-0.1,0-0.2,0-0.2,0c-0.1-0.1-0.2-0.2-0.3-0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.2,0,0.3,0C19.9,21.8,21.6,21.8,23.4,21.8z'/%3E%3Cpath d='M18,19.1c1.8,0,3.5,0,5.3,0c0.1,0,0.3,0,0.4,0c0.1,0,0.2,0.2,0.2,0.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.3,0-0.4,0c-3.6,0-7.1,0-10.7,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.4,0-0.4-0.3c0-0.3,0.3-0.3,0.5-0.3C14.3,19.1,16.1,19.1,18,19.1z'/%3E%3Cpath d='M16.1,24.4c1.1,0,2.2,0,3.3,0c0.2,0,0.4,0.1,0.5,0.3c0,0.3-0.2,0.3-0.5,0.3c-2.2,0-4.4,0-6.6,0c-0.2,0-0.4-0.2-0.4-0.3c0-0.3,0.2-0.3,0.4-0.3C13.9,24.4,15,24.4,16.1,24.4z'/%3E%3Cpath d='M26.4,19.1c0.4,0,0.8,0,1.2,0c0.1,0,0.3,0.2,0.4,0.3c0.1,0.3-0.2,0.3-0.4,0.3c-0.8,0-1.7,0-2.5,0c-0.1,0-0.3-0.2-0.4-0.3c0.1-0.1,0.3-0.3,0.4-0.3C25.6,19.1,26,19.1,26.4,19.1z'/%3E%3Cpath d='M14.2,16.5c-0.2,0-0.4,0-0.6,0c-0.1,0-0.3-0.2-0.2-0.2c0-0.1,0.2-0.3,0.3-0.3c0.4,0,0.8,0,1.3,0c0.1,0,0.2,0.2,0.3,0.3c-0.1,0.1-0.2,0.2-0.3,0.3C14.6,16.5,14.4,16.5,14.2,16.5C14.2,16.5,14.2,16.5,14.2,16.5z'/%3E%3Cpath d='M23.3,24.4c0.1,0,0.2,0,0.2,0c0.1,0.1,0.2,0.2,0.4,0.3c-0.1,0.1-0.2,0.2-0.4,0.3c-0.1,0-0.3,0-0.4,0c-0.1-0.1-0.2-0.2-0.4-0.3c0.1-0.1,0.2-0.2,0.4-0.3C23.1,24.3,23.2,24.4,23.3,24.4z'/%3E%3Cpath d='M3.1,18.4c0,1.3,0.2,2.4,0.9,3.4c0.4,0.6,0.9,1.1,1.7,1.2c0.1,0,0.2,0.2,0.3,0.3c-0.1,0.1-0.3,0.2-0.4,0.2c-0.6,0-1.1-0.3-1.5-0.7c-0.8-0.8-1.2-1.9-1.4-3c-0.2-1.5-0.1-2.9,0.5-4.2c0.3-0.5,0.6-1,1-1.4c1-0.9,2.2-0.8,3.2,0.1c0.9,0.9,1.3,2,1.4,3.2c0,0.3,0.1,0.5,0.1,0.8c0,0.2-0.1,0.4-0.3,0.4c-0.3,0.1-0.3-0.2-0.3-0.4c0-0.9-0.2-1.7-0.6-2.5c-0.2-0.4-0.5-0.8-0.8-1.1c-0.8-0.8-1.7-0.8-2.5,0c-0.7,0.6-1,1.5-1.2,2.3C3.2,17.6,3.1,18.1,3.1,18.4z'/%3E%3Cpath d='M7,18.7c-0.2,0.4-0.3,0.9-0.5,1.2c-0.4,0.6-1.2,0.6-1.6,0c-0.2-0.3-0.3-0.8-0.4-1.2c0-0.1,0.2-0.2,0.2-0.4c0.1,0.1,0.3,0.2,0.3,0.3c0.1,0.2,0.1,0.5,0.2,0.8c0.2,0.4,0.6,0.4,0.8,0c0.3-0.5,0.3-1.1,0-1.6c-0.1-0.2-0.3-0.2-0.5-0.4c-0.1-0.1-0.2-0.2-0.2-0.3c0-0.1,0.2-0.2,0.3-0.2C6,17,6.3,17.2,6.5,17.4C6.7,17.8,6.8,18.2,7,18.7z'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 18px;
            padding-left: 22px; }
          .productView .productView-description.description-split .tabs .tab .tab-title[href="#tab-energy-performance"] {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' stroke='%236E3A16' stroke-width='0.2' fill='%236E3A16'%3E%3Cg%3E%3Cpath d='M9.8,5.1c-0.9,0-1.7,0-2.6,0c0,0.1,0,0.2,0,0.3c0,1.6,0,3.3,0,4.9c0,0.3-0.1,0.4-0.3,0.6c-1,0.8-1.9,1.6-2.9,2.4c-0.1,0.1-0.2,0.2-0.2,0.3c0,4,0,8.1,0,12.1c0,0,0,0.1,0,0.2c0.1,0,0.2,0,0.3,0c2.9,0,5.9,0,8.8,0c1.8,0,3.5-0.4,5-1.4c1.4-0.9,2.4-2.1,3.2-3.5c1.3-2.3,2-4.8,2.6-7.4c0.1-0.4,0.1-0.8,0.2-1.2c0-0.2,0.2-0.4,0.4-0.3c0.2,0,0.4,0.2,0.3,0.5c-0.4,2.5-1,4.9-2,7.2c-0.1,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.1,0.2-0.2,0.4c0.3-0.1,0.6-0.2,0.9-0.2c1.3-0.4,2.6-0.9,3.7-1.8c1.6-1.3,2.3-2.9,2.1-4.9c-0.2-1.6-0.8-3.1-1.5-4.6c-0.9-1.6-1.9-3.1-3.1-4.4c0-0.1-0.1-0.1-0.2-0.2c-0.1,0.3-0.1,0.5-0.2,0.7c-0.3,1.3-1,2.4-1.7,3.5c-0.9,1.3-2,2.5-3,3.7c-0.7,0.8-1.3,1.7-1.7,2.7c-0.4,1-0.3,2.1,0.1,3.1c0.2,0.4,0.4,0.7,0.6,1.1c0.1,0.2,0.1,0.4-0.1,0.5c-0.2,0.1-0.4,0.1-0.5-0.1c-0.6-1-1.2-2-1.1-3.3c0-1,0.4-2,0.9-2.9c0.6-1,1.4-1.9,2.2-2.8c1.2-1.4,2.3-2.8,3.1-4.4c0.4-0.9,0.7-1.8,0.6-2.8c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3,0,0.5,0.2c0.8,1,1.6,1.9,2.3,2.9c1.2,1.6,2.2,3.3,2.8,5.2c0.4,1.3,0.6,2.6,0.5,3.9c-0.2,1.6-1,2.9-2.3,3.9c-1.4,1.1-3,1.7-4.6,2.1c-0.1,0-0.2,0.1-0.4,0.1c-0.5,0-0.7,0.3-1,0.7c-0.4,0.6-0.9,1.2-1.4,1.8c0,0-0.1,0.1-0.1,0.1c0.4,0,0.7-0.1,1-0.1c2.2-0.1,4.2,0.5,6,1.9c0.2,0.2,0.2,0.4,0.1,0.5c-0.1,0.2-0.4,0.2-0.6,0c-1-0.8-2-1.3-3.2-1.6c-0.3-0.1-0.7-0.1-1.1-0.2c0,0.2,0,0.3,0.1,0.4c0.4,1.7,1.2,3,2.9,3.7c0.9,0.3,1.8,0.4,2.8,0.3c1-0.1,1.9-0.4,2.8-0.9c0.2-0.1,0.2-0.2,0.2-0.4c-0.7-2.2-2-3.8-4.2-4.6c0,0-0.1,0-0.1,0c-0.3-0.1-0.4-0.3-0.3-0.5c0.1-0.2,0.3-0.3,0.5-0.2c0.5,0.2,1,0.4,1.5,0.7c1.8,1.2,2.9,2.8,3.4,4.9c0.1,0.3,0,0.5-0.3,0.6c-1.1,0.6-2.3,1.1-3.6,1.2c-1.8,0.2-3.5-0.2-4.8-1.5c-0.9-0.9-1.3-2-1.5-3.2c0,0,0-0.1,0-0.1c0-0.1,0-0.2-0.1-0.3c-0.7,0-1.4,0.1-2.1,0.3c-0.4,0.1-0.8,0.3-1.1,0.5c-1.2,0.7-2.5,1.1-3.8,1.3c-0.6,0.1-1.3,0.1-2,0.1c-2.9,0-5.7,0-8.6,0c-0.5,0-0.6-0.1-0.6-0.6c0-3.9,0-7.7,0-11.6c0-0.1,0-0.2,0-0.4c-0.5,0.4-0.9,0.7-1.3,1.1c-0.2,0.2-0.5,0.4-0.7,0.6c-0.3,0.2-0.5,0.2-0.6,0c-0.1-0.2-0.1-0.4,0.2-0.6c1.9-1.6,3.8-3.1,5.7-4.7c0.1-0.1,0.2-0.2,0.2-0.4c0-1.7,0-3.4,0-5.2c0-0.5,0.1-0.6,0.5-0.6c1,0,2,0,3,0c0.4,0,0.5,0.1,0.5,0.6c0,0.6,0,1.2,0,1.8c0,0,0,0.1,0,0.2c0.4-0.4,0.8-0.7,1.2-1c1.3-1.1,2.7-2.2,4-3.3c0.4-0.3,0.4-0.3,0.8,0c1.2,1.1,2.4,2.1,3.6,3.2c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.2,0.1,0.3-0.1,0.4c-0.1,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.2-0.1-0.2-0.2c-1.1-1-2.2-2-3.3-2.9c0,0-0.1-0.1-0.2-0.1c-0.6,0.5-1.3,1.1-1.9,1.6c-1.2,1-2.5,2-3.7,3.1C10.4,8,10.3,8.1,10.1,8C9.8,7.9,9.8,7.7,9.8,7.5c0-0.7,0-1.4,0-2.1C9.8,5.3,9.8,5.2,9.8,5.1z'/%3E%3Cpath d='M7.1,18.2c0-0.9,0-1.7,0-2.6c0-0.4,0.1-0.5,0.5-0.5c1.7,0,3.4,0,5.1,0c0.4,0,0.5,0.1,0.5,0.5c0,1.7,0,3.4,0,5.1c0,0.4-0.1,0.5-0.5,0.5c-1.7,0-3.4,0-5.1,0c-0.4,0-0.5-0.1-0.5-0.5C7.1,19.9,7.1,19.1,7.1,18.2z M7.9,15.9c0,0.1,0,0.2,0,0.3c0,1.4,0,2.7,0,4.1c0,0.2,0.1,0.3,0.3,0.3c1.4,0,2.7,0,4.1,0c0.1,0,0.2,0,0.2,0c0-1.6,0-3.1,0-4.6C11,15.9,9.4,15.9,7.9,15.9z'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 19px;
            padding-left: 23px; }
    .productView .productView-description.description-split .tabs-contents .tab-Warranty-content h5 {
      margin: 0; }
    .productView .productView-description.description-split .desc-container {
      height: 960px;
      overflow: hidden; }
      .productView .productView-description.description-split .desc-container:after {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 70%, white 100%, white 100%);
        bottom: 0;
        content: '';
        display: block;
        height: 170px;
        position: absolute;
        width: 100%; }
      .productView .productView-description.description-split .desc-container.is-open {
        overflow: auto;
        height: 100%; }
        .productView .productView-description.description-split .desc-container.is-open:after {
          display: none; }
    .productView .productView-description.description-split .readmore-desc-wrap {
      text-align: center;
      top: 20px;
      position: relative;
      z-index: 99; }
      .productView .productView-description.description-split .readmore-desc-wrap .readmore-desc {
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        text-transform: uppercase; }
        .productView .productView-description.description-split .readmore-desc-wrap .readmore-desc span {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.313 7.157'%3E%3Cpath d='M1221.177,1097.731l-4.743,4.743-4.741-4.741' transform='translate(-1210.278 -1096.316)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-size: 12px;
          background-position: center right 5px;
          display: inline-block;
          padding-right: 25px; }

.tab-wood-type-content h2, .tab-wood-type-content h3, .tab-wood-type-content h4, .tab-product-details-content h2, .tab-product-details-content h3, .tab-product-details-content h4, .tab-energy-performance-content h2, .tab-energy-performance-content h3, .tab-energy-performance-content h4, .tab-Warranty-content h2, .tab-Warranty-content h3, .tab-Warranty-content h4 {
  margin-top: 0; }

.custom-modal-background {
  background: #050505;
  background: rgba(55, 55, 55, 0.95);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0; }

.product-contents {
  margin: 1.5rem 0 3rem; }
  @media (min-width: 801px) {
    .product-contents {
      margin: 1.5rem 0.75rem 3rem; } }
  .product-contents .product-content-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem; }
    @media (min-width: 801px) {
      .product-contents .product-content-row {
        flex-direction: row;
        gap: 4rem;
        margin-bottom: 4rem; } }
    .product-contents .product-content-row .product-content-column {
      background-color: #F7F7F7;
      padding: 2rem;
      border-radius: 10px;
      flex: 2; }
      .product-contents .product-content-row .product-content-column.energyEfficientTemperedGlassContent, .product-contents .product-content-row .product-content-column.CustomizeYourDoorYourContent {
        background-color: #F4EDE4; }
        .product-contents .product-content-row .product-content-column.energyEfficientTemperedGlassContent h3, .product-contents .product-content-row .product-content-column.CustomizeYourDoorYourContent h3 {
          margin-top: 0; }
      .product-contents .product-content-row .product-content-column h4 {
        font-family: "Work Sans", sans-serif;
        font-size: 22px;
        font-weight: 300;
        line-height: 2.2rem;
        margin: 0 0 1.5rem; }
      .product-contents .product-content-row .product-content-column p, .product-contents .product-content-row .product-content-column div {
        color: #232B2E;
        font-size: 14px; }
        .product-contents .product-content-row .product-content-column p:last-child, .product-contents .product-content-row .product-content-column div:last-child {
          margin: 0; }
    .product-contents .product-content-row.fullWidth {
      flex-direction: column; }

.ProductBox {
  margin: 0 0 15px; }
  .ProductBox h5 {
    margin: 0; }
  .ProductBox .ProdContentTitle {
    cursor: pointer;
    background: url('data:image/svg+xml,<svg width="64px" height="64px" viewBox="0 -4.5 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>chevron-down</title><desc>Created with Sketch Beta.</desc><defs></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage"><g id="Icon-Set-Filled" sketch:type="MSLayerGroup" transform="translate(-574.000000, -1201.000000)" fill="%23000000"><path d="M597.405,1201.63 C596.576,1200.8 595.23,1200.8 594.401,1201.63 L586.016,1210.88 L577.63,1201.63 C576.801,1200.8 575.455,1200.8 574.626,1201.63 C573.797,1202.46 573.797,1203.81 574.626,1204.64 L584.381,1215.4 C584.83,1215.85 585.429,1216.05 586.016,1216.01 C586.603,1216.05 587.201,1215.85 587.65,1215.4 L597.405,1204.64 C598.234,1203.81 598.234,1202.46 597.405,1201.63" id="chevron-down" sketch:type="MSShapeGroup"></path></g></g></g></svg>'), #fff;
    background-size: 13px;
    border: 1px solid #ccc;
    padding: 15px 25px 15px 10px;
    background-repeat: no-repeat;
    background-position: right 10px center; }
    .ProductBox .ProdContentTitle.current {
      background: url('data:image/svg+xml,<svg width="64px" height="64px" viewBox="0 -4.5 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>chevron-up</title><desc>Created with Sketch Beta.</desc><defs></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage"><g id="Icon-Set-Filled" sketch:type="MSLayerGroup" transform="translate(-521.000000, -1202.000000)" fill="%23000000"><path d="M544.345,1213.39 L534.615,1202.6 C534.167,1202.15 533.57,1201.95 532.984,1201.99 C532.398,1201.95 531.802,1202.15 531.354,1202.6 L521.624,1213.39 C520.797,1214.22 520.797,1215.57 521.624,1216.4 C522.452,1217.23 523.793,1217.23 524.621,1216.4 L532.984,1207.13 L541.349,1216.4 C542.176,1217.23 543.518,1217.23 544.345,1216.4 C545.172,1215.57 545.172,1214.22 544.345,1213.39" id="chevron-up" sketch:type="MSShapeGroup"></path></g></g></g></svg>'), #fff;
      background-size: 13px;
      background-repeat: no-repeat;
      background-position: right 10px center; }
  .ProductBox .ProdContentParagraph {
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    border-top: 0;
    padding: 15px 15px 15px 10px; }

.strong_recommend {
  margin-top: 1.5rem;
  line-height: 18px; }
  .strong_recommend:before {
    content: "";
    display: table;
    clear: both;
    float: none; }

span[data-reveal-id="modal-QuickShip"] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 431.855 431.855' fill='%236e3a16'%3E%3Cpath d='M215.936,0C96.722,0,0.008,96.592,0.008,215.814c0,119.336,96.714,216.041,215.927,216.041 c119.279,0,215.911-96.706,215.911-216.041C431.847,96.592,335.214,0,215.936,0z M231.323,335.962 c-5.015,4.463-10.827,6.706-17.411,6.706c-6.812,0-12.754-2.203-17.826-6.617c-5.08-4.406-7.625-10.575-7.625-18.501 c0-7.031,2.463-12.949,7.373-17.745c4.91-4.796,10.933-7.194,18.078-7.194c7.031,0,12.949,2.398,17.753,7.194 c4.796,4.796,7.202,10.713,7.202,17.745C238.858,325.362,236.346,331.5,231.323,335.962z M293.856,180.934 c-3.853,7.145-8.429,13.306-13.737,18.501c-5.292,5.194-14.81,13.924-28.548,26.198c-3.788,3.463-6.836,6.503-9.12,9.12 c-2.284,2.626-3.991,5.023-5.105,7.202c-1.122,2.178-1.983,4.357-2.593,6.535c-0.61,2.17-1.528,5.999-2.772,11.469 c-2.113,11.608-8.754,17.411-19.915,17.411c-5.804,0-10.681-1.894-14.656-5.69c-3.959-3.796-5.934-9.429-5.934-16.907 c0-9.372,1.455-17.493,4.357-24.361c2.886-6.869,6.747-12.892,11.543-18.086c4.804-5.194,11.274-11.356,19.427-18.501 c7.145-6.251,12.307-10.965,15.485-14.144c3.186-3.186,5.861-6.73,8.031-10.632c2.187-3.91,3.26-8.145,3.26-12.721 c0-8.933-3.308-16.46-9.957-22.597c-6.641-6.137-15.209-9.21-25.703-9.21c-12.282,0-21.321,3.097-27.125,9.291 c-5.804,6.194-10.705,15.314-14.729,27.369c-3.804,12.616-11.006,18.923-21.598,18.923c-6.251,0-11.526-2.203-15.826-6.609 c-4.292-4.406-6.438-9.177-6.438-14.314c0-10.6,3.406-21.346,10.21-32.23c6.812-10.884,16.745-19.899,29.807-27.036 c13.054-7.145,28.296-10.722,45.699-10.722c16.184,0,30.466,2.991,42.854,8.966c12.388,5.966,21.963,14.087,28.718,24.361 c6.747,10.266,10.128,21.427,10.128,33.482C299.635,165.473,297.709,173.789,293.856,180.934z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 15px;
  background-position: center right;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 20px; }

#modal-stock-mean, #modal-QuickShip {
  background-color: #F5EDE4;
  border-radius: 10px; }
  #modal-stock-mean .modal-close, #modal-QuickShip .modal-close {
    color: #6e3a16;
    right: 10px;
    top: 12px; }
  #modal-stock-mean .modal-header, #modal-QuickShip .modal-header {
    border-bottom: 1px solid #6e3a16; }
    #modal-stock-mean .modal-header h3, #modal-QuickShip .modal-header h3 {
      margin: 0;
      text-align: center;
      font-family: "Work Sans", sans-serif;
      font-weight: 600; }
  #modal-stock-mean .modal-body p, #modal-QuickShip .modal-body p {
    font-size: 14px;
    line-height: 2.2rem; }
    #modal-stock-mean .modal-body p:last-child, #modal-QuickShip .modal-body p:last-child {
      margin: 0; }

#product-reviews .container {
  padding: 0; }

.productReviews-content .productReviews-list {
  margin: 0 -1rem;
  padding: 0 1rem; }
  @media (min-width: 801px) {
    .productReviews-content .productReviews-list {
      padding: 0 4rem; } }
  .productReviews-content .productReviews-list .productReview {
    float: left;
    margin: 0 0 2rem;
    padding: 1rem;
    text-align: left; }
    .productReviews-content .productReviews-list .productReview article {
      align-items: flex-start;
      box-shadow: rgba(0, 0, 0, 0.05) 0 1px 15px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0, rgba(0, 0, 0, 0.05) 0 2px 1px 0;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      padding: 2rem; }
      .productReviews-content .productReviews-list .productReview article .productReview-rating .icon {
        height: 23px;
        width: 23px; }
        .productReviews-content .productReviews-list .productReview article .productReview-rating .icon.icon--ratingFull svg {
          fill: #FFBB00; }
      .productReviews-content .productReviews-list .productReview article .productReview-title {
        color: #232B2E;
        font-size: 16px;
        font-weight: 500; }
      .productReviews-content .productReviews-list .productReview article .productReview-body {
        color: #232B2E;
        font-size: 14px;
        min-height: 210px; }
      .productReviews-content .productReviews-list .productReview article .productReview-author {
        color: #232B2E;
        font-family: "Work Sans", Times, "Times New Roman", serif;
        font-size: 14px;
        font-weight: 500; }
  .productReviews-content .productReviews-list .slick-prev, .productReviews-content .productReviews-list .slick-next {
    height: 42px;
    padding: 0;
    width: 42px; }
    .productReviews-content .productReviews-list .slick-prev:before, .productReviews-content .productReviews-list .slick-next:before {
      height: 100%;
      width: 100%; }
  .productReviews-content .productReviews-list .slick-prev {
    left: 0px; }
    .productReviews-content .productReviews-list .slick-prev:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
    .productReviews-content .productReviews-list .slick-prev:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(-90deg); }
  .productReviews-content .productReviews-list .slick-next {
    right: 0px; }
    .productReviews-content .productReviews-list .slick-next:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }
    .productReviews-content .productReviews-list .slick-next:hover:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.625 31.625'%3E%3Cg transform='translate(31.625 31.625) rotate(180)'%3E%3Ccircle cx='15.812' cy='15.812' r='15.812' transform='translate(0 0)' fill='%23ebebeb'/%3E%3Cpath d='M12.708,0,6.353,6.355,0,0' transform='translate(9.458 13.35)' fill='none' stroke='%23232b2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
      transform: rotate(90deg); }

.impact_dp .modal-header {
  padding: 0 0 1rem;
  margin: 0 0 1.5rem;
  text-align: center; }
  .impact_dp .modal-header h2 {
    margin: 0; }

.impact_dp .modal-content {
  text-align: center; }
  .impact_dp .modal-content p {
    font-size: 16px; }

#door-wood-type-option .modal-header {
  padding: 0 0 1rem;
  margin: 0 0 1.5rem; }
  #door-wood-type-option .modal-header h2 {
    margin: 0; }

#door-wood-type-option .modal-content {
  text-align: center; }

.productView .productView-details .productView-options .form .form-field.option-wood-type .form-label--alternate > span[data-option-value] {
  font-size: 12px; }
  @media (min-width: 801px) {
    .productView .productView-details .productView-options .form .form-field.option-wood-type .form-label--alternate > span[data-option-value] {
      display: block; } }

.downloadPDF-link {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem; }
  .downloadPDF-link a {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' stroke-width='0' stroke='%23D53C3F' fill='%23000000'%3E%3Cg%3E%3Cpath d='M6.1,31.4c-0.6-0.2-1-0.6-1.1-1.2c-0.1-0.4,0.1-0.6,0.4-0.7c0.3,0,0.5,0.1,0.5,0.5c0.1,0.3,0.2,0.5,0.6,0.5c0.1,0,0.1,0,0.2,0c7.2,0,14.5,0,21.7,0c0.6,0,0.8-0.1,0.8-0.8c0-7.5,0-15,0-22.6c0-0.1,0-0.2,0-0.4c-0.1,0-0.2,0-0.3,0c-1.3,0-2.6,0-3.9,0c-0.7,0-1.1-0.4-1.1-1.1c0-1.3,0-2.6,0-3.9c0-0.1,0-0.2,0-0.4c-0.1,0-0.2,0-0.3,0c-5.6,0-11.2,0-16.9,0C6,1.5,5.8,1.7,5.8,2.2c0,5,0,9.9,0,14.9c0,0.1,0,0.2,0,0.3c0,0.3-0.2,0.4-0.4,0.4c-0.2,0-0.4-0.2-0.5-0.4c0-0.2,0-0.3,0-0.5c-0.4,0-0.9,0-1.3,0c-0.4,0.1-0.7,0.5-0.7,1c0,0.4,0.3,0.8,0.8,0.9c0.2,0,0.3,0,0.5,0c4.8,0,9.6,0,14.4,0c0.2,0,0.4,0,0.6,0c0.6,0.2,1.1,0.7,1.1,1.4c0,2.2,0,4.5,0,6.7c0,0.9-0.6,1.5-1.5,1.5c-5,0-9.9,0-14.9,0c-1.1,0-1.9-0.8-1.9-2c0-2.9,0-5.7,0-8.6C2,16.9,2.8,16.1,4,16c0.3,0,0.6,0,1,0c0-0.1,0-0.3,0-0.4c0-4.5,0-8.9,0-13.4c0-1.1,0.5-1.6,1.7-1.6c5.8,0,11.7,0,17.5,0c0.6,0,1,0.2,1.4,0.6c1.3,1.3,2.6,2.6,4,4C29.8,5.5,30,5.9,30,6.5c0,7.7,0,15.4,0,23.2c0,0.9-0.3,1.5-1.2,1.8C21.2,31.4,13.6,31.4,6.1,31.4z M2.9,19.5c0,0.1,0,0.2,0,0.3c0,2.2,0,4.4,0,6.5c0,0.8,0.4,1.2,1.2,1.2c4.8,0,9.7,0,14.5,0c0.6,0,0.7-0.2,0.7-0.8c0-2.1,0-4.2,0-6.2c0-0.7-0.1-0.8-0.8-0.8c-4.7,0-9.3,0-14,0C4.1,19.8,3.5,19.9,2.9,19.5z M24.7,5.9c1.4,0,2.8,0,4.1,0c-1.3-1.3-2.7-2.7-4.1-4.1C24.7,3.1,24.7,4.5,24.7,5.9z'/%3E%3Cpath d='M20.8,12.7c0.5,0.1,1,0.1,1.4,0.2c0.1,0,0.2,0,0.3,0.1c0.8,0.2,1.1,0.7,0.9,1.3c-0.2,0.7-0.9,1.1-1.6,0.9c-0.8-0.2-1.4-0.7-2-1.2c-0.2-0.2-0.4-0.3-0.6-0.2c-1.2,0.2-2.4,0.4-3.6,0.7c-0.1,0-0.3,0.2-0.4,0.3c-0.4,0.6-0.7,1.1-1.2,1.7c-0.2,0.3-0.5,0.6-0.9,0.8c-0.5,0.3-1,0.3-1.4-0.1c-0.4-0.4-0.5-1-0.2-1.5c0.2-0.3,0.5-0.6,0.9-0.8c0.6-0.4,1.3-0.6,2-0.9c0.1-0.1,0.3-0.2,0.3-0.3c0.5-1.2,1-2.4,1.5-3.7c0.1-0.1,0-0.4,0-0.5c-0.3-0.7-0.7-1.4-0.8-2.2c-0.1-0.9,0.3-1.4,1.1-1.6c0.6-0.1,1.1,0.2,1.2,0.8c0.1,0.6,0,1.3-0.1,1.9c-0.1,0.3-0.2,0.6-0.2,1c0,0.1,0,0.3,0.1,0.4c0.6,1.1,1.4,2,2.2,2.9c0.1,0.1,0.2,0.1,0.4,0.2C20.4,12.7,20.6,12.7,20.8,12.7C20.8,12.7,20.8,12.7,20.8,12.7z M16,13.3c0.9-0.2,1.8-0.3,2.8-0.5c-0.6-0.7-1.1-1.5-1.7-2.2C16.8,11.5,16.4,12.4,16,13.3z M14,15C14,15,14,14.9,14,15c-0.3,0.1-0.7,0.2-0.9,0.4c-0.2,0.1-0.5,0.3-0.6,0.5c-0.1,0.1,0,0.3,0,0.4c0,0,0.2,0,0.3,0C13.4,16,13.7,15.5,14,15z M16.8,8.1c0,0,0.1,0,0.1,0C17,7.6,17,7.2,17,6.7c0-0.1-0.1-0.3-0.2-0.2c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2,0,0.3C16.6,7.4,16.7,7.7,16.8,8.1zM22.6,13.9c-0.5-0.3-1-0.3-1.6-0.2c0.3,0.2,0.7,0.4,1.1,0.6C22.3,14.4,22.5,14.2,22.6,13.9z'/%3E%3Cpath d='M9.9,23.7c0-0.6,0-1.1,0-1.7c0-0.5,0.1-0.6,0.6-0.6c0.3,0,0.6,0,0.9,0c0.9,0,1.6,0.5,1.9,1.4c0.2,0.8,0.2,1.5-0.2,2.2c-0.3,0.7-0.9,1-1.7,1c-0.3,0-0.6,0-0.9,0c-0.5,0-0.6-0.1-0.6-0.6C9.9,24.8,9.9,24.3,9.9,23.7z M10.9,25.1c0.8,0.1,1.2,0,1.4-0.5c0.3-0.6,0.3-1.3-0.1-1.9c-0.3-0.5-0.9-0.4-1.4-0.4C10.9,23.3,10.9,24.2,10.9,25.1z'/%3E%3Cpath d='M6.8,24.4c0,0.4,0,0.8,0,1.1c0,0.3-0.2,0.6-0.5,0.6c-0.3,0-0.4-0.2-0.4-0.6c0-1.2,0-2.4,0-3.6c0-0.4,0.2-0.5,0.5-0.6c0.3,0,0.7,0,1,0C8.3,21.4,9,22,9,22.9c0,0.8-0.6,1.5-1.5,1.6C7.2,24.4,7,24.4,6.8,24.4z M6.8,23.5c0.4,0,0.9,0.1,1.2-0.3c0.1-0.2,0.1-0.4,0-0.7c-0.3-0.4-0.7-0.3-1.1-0.3C6.8,22.7,6.8,23.1,6.8,23.5z'/%3E%3Cpath d='M15.3,22.3c0,0.1,0,0.2,0,0.3c0,0.2,0,0.4,0,0.7c0.3,0,0.6,0,0.8,0c0.4,0,0.6,0.2,0.6,0.5c0,0.3-0.2,0.4-0.6,0.4c-0.3,0-0.5,0-0.8,0c0,0.5,0,0.9,0,1.4c0,0.4-0.2,0.6-0.5,0.6c-0.3,0-0.4-0.2-0.4-0.6c0-1.2,0-2.4,0-3.5c0-0.4,0.2-0.6,0.6-0.6c0.4,0,0.9,0,1.3,0c0.3,0,0.5,0.2,0.5,0.4c0,0.3-0.2,0.5-0.5,0.5C16,22.3,15.6,22.3,15.3,22.3z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 26px;
    color: #000000;
    display: inline-block;
    font-size: 18px;
    padding-left: 30px; }

#woodTypeFeatures .woodTypeImages, .energyEfficientTemperedGlassContent .woodTypeImages {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; }
  #woodTypeFeatures .woodTypeImages > div, .energyEfficientTemperedGlassContent .woodTypeImages > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 33.33333%; }

.temperedGlassImages {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 33.33333%; }

.whyBuyDoorFromUs {
  background-color: #F7F7F7;
  padding: 2rem;
  border-radius: 10px; }
  .whyBuyDoorFromUs h2 {
    margin-top: 0; }

.productView-product .door-features-wrap {
  gap: 10px;
  margin: 2rem 0 0;
  align-items: center;
  justify-content: space-between; }
  .productView-product .door-features-wrap ul {
    margin: 0;
    display: flex;
    gap: 1.4rem;
    list-style: none; }
    .productView-product .door-features-wrap ul li {
      position: relative; }
      .productView-product .door-features-wrap ul li:hover .dropdown-menu {
        background-color: #F5EDE4;
        box-shadow: 0 0 0 1px #6e3a16;
        display: block;
        left: -30px;
        max-width: 29.167rem;
        width: 29.167rem;
        padding: 2rem;
        border-radius: 10px;
        top: calc(100% + 10px); }
        .productView-product .door-features-wrap ul li:hover .dropdown-menu:before, .productView-product .door-features-wrap ul li:hover .dropdown-menu:after {
          content: "";
          display: block;
          height: 0;
          width: 0;
          border-bottom-style: solid;
          bottom: 100%;
          position: absolute; }
        .productView-product .door-features-wrap ul li:hover .dropdown-menu:after {
          border: inset 8px;
          border-color: transparent transparent #6e3a16 transparent;
          left: 3.917rem;
          position: absolute; }
      .productView-product .door-features-wrap ul li .feature-icon {
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 50px;
        width: 50px; }
      .productView-product .door-features-wrap ul li .dropdown-menu-content h3 {
        font-size: 15px;
        margin: 0; }
      .productView-product .door-features-wrap ul li .dropdown-menu-content p {
        margin: 0; }
      .productView-product .door-features-wrap ul li.sustainably-sourced .feature-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M56.1,36.9c1.2,0.8,1.5,2,1.9,3.2c1,2.9,1.9,5.8,2.9,8.7c0.4,1.1,0.3,1.4-0.7,2.1c0.5,0.6,1.1,1.1,1.6,1.7c0.4,0.4,0.7,0.9,0.9,1.4c0.8,2.4,1.6,4.9,2.4,7.3c0.5,1.5,0.3,1.8-1.2,2.3c0.1,0.1,0.2,0.3,0.3,0.4c0.4,0.4,0.7,0.8,1.2,1.2c1.3,1,2,2.4,2.4,4c0.3,1.1-0.2,1.9-1.4,1.9c-1.2,0-2.5,0-3.7,0c-2.5,0-5,0-7.5,0c-0.2,0-0.4,0-0.7,0c0,0.2,0,0.5,0,0.7c0,1.7,0,3.3,0,5c0,1.1-0.4,1.5-1.5,1.5c-2.2,0-4.5,0-6.7,0c-0.9,0-1.5-0.5-1.5-1.5c0-1.7,0-3.3,0-5c0-0.8,0-0.8-0.8-0.8c-3.5,0-7.1,0-10.6,0c-0.5,0-1-0.1-1.4-0.6c-0.3-0.5-0.2-1,0-1.5c0.9-2.6,1.8-5.1,2.5-7.7c0.4-1.2,1.1-2.1,1.9-2.9c0.7-0.7,1.4-1.4,2.2-2.2c-0.2,0-0.3,0-0.4,0c-1.2,0-1.7-0.7-1.3-1.9c0.9-2.8,1.9-5.5,2.7-8.3c0.4-1.2,0.9-2.2,1.9-3c0.3-0.3,0.6-0.6,0.9-1c-1.3-0.6-1-1.5-0.6-2.5c2.2-6.7,4.4-13.4,6.7-20c0-0.1,0.1-0.3,0.1-0.4c0.2-0.6,0.7-0.9,1.2-0.9c0.6,0,1,0.3,1.2,0.9c0.5,1.3,0.9,2.6,1.3,3.9c1.3,4,2.7,7.9,4,11.9C56.6,35.5,56.7,36.2,56.1,36.9z M64.9,68.5c-0.4-0.5-0.8-0.8-1.1-1.2c-1.4-1.4-2.8-2.9-4.2-4.3c-0.5-0.5-0.9-1-0.6-1.8c0.4-0.8,1.1-0.7,1.7-0.7c0.5,0,0.9,0.1,1.4,0.2c0-0.2-0.1-0.3-0.1-0.5c-0.6-1.7-1.2-3.5-1.8-5.2c-0.1-0.2-0.2-0.5-0.4-0.7c-1.3-1.4-2.7-2.8-4.1-4.2c-0.5-0.5-0.6-1.1-0.3-1.7c0.3-0.5,0.7-0.7,1.4-0.6c0.3,0,0.6,0.1,1,0.1c-0.1-0.2-0.1-0.3-0.1-0.4c-0.8-2.4-1.5-4.7-2.4-7.1c-0.2-0.7-0.7-1.3-1.1-1.8c-0.7-0.8-1.4-1.5-2.2-2.2c-0.4-0.4-0.5-0.9-0.3-1.4c0.2-0.5,0.5-0.8,1.1-0.8c0.1,0,0.2-0.1,0.4-0.1c-1.2-3.5-2.3-6.9-3.5-10.3c-0.1,0-0.1,0-0.2,0c-1.7,5.1-3.3,10.1-5,15.2c0.4,0,0.7,0,0.9-0.1c0.8-0.1,1.3,0.1,1.5,0.7c0.3,0.6,0.1,1.1-0.4,1.7c-1.2,1.3-2.5,2.5-3.7,3.8c-0.3,0.4-0.6,0.8-0.8,1.3c-0.7,2.1-1.4,4.2-2.1,6.3c-0.1,0.2-0.1,0.4-0.2,0.6c0.8-0.1,1.5-0.2,2.2-0.3c0.8-0.1,1.5,0.5,1.4,1.2c0,0.4-0.3,0.8-0.5,1.1c-1.6,1.7-3.3,3.4-5,5.2c-0.5,0.5-0.9,1.1-1.2,1.9c-0.5,1.5-1,3-1.5,4.5c-0.2,0.5-0.3,1.1-0.5,1.6C44.9,68.5,54.8,68.5,64.9,68.5z M47.4,71.2c0,1.5,0,3,0,4.5c1.6,0,3,0,4.5,0c0-1.5,0-3,0-4.5C50.4,71.2,48.9,71.2,47.4,71.2z'/%3E%3Cpath d='M8.7,40.2c-0.2,1-0.4,2.1-0.6,3.2c-0.5,3-0.6,6.1-0.5,9.2c0.3,5.4,1.6,10.6,4,15.5c0.9,1.8,1.9,3.5,2.9,5.2c0.1,0.2,0.3,0.5,0.3,0.7c0.1,0.6-0.1,1.2-0.7,1.4c-0.5,0.3-1.2,0.1-1.6-0.4c-0.6-0.8-1.1-1.7-1.6-2.6c-2.9-5-4.7-10.3-5.6-16C4.7,51,5,45.5,6.1,40.1c0.2-0.9,0.5-1.2,1.2-1.3C8.1,38.8,8.7,39.3,8.7,40.2z'/%3E%3Cpath d='M94.7,49.7c-0.1,9.3-2.5,17.5-7.4,24.9c-0.2,0.4-0.6,0.7-1,0.9c-0.4,0.2-0.9,0-1.3-0.4c-0.4-0.5-0.3-1-0.1-1.5c0.5-0.9,1.1-1.7,1.6-2.6c2.7-4.7,4.4-9.7,5.2-15.1c0.8-5.2,0.5-10.3-0.6-15.4c-0.3-1.2,0.4-1.9,1.5-1.7c0.5,0.1,0.8,0.5,0.9,1c0.4,2.2,0.7,4.4,1,6.6C94.7,47.7,94.7,48.9,94.7,49.7z'/%3E%3Cpath d='M51.6,11.1c-0.8-0.1-1.6-0.1-2.4-0.2c0.3-3.1,0.6-6.2,0.9-9.3c0.7,0.1,1.3,0.2,1.9,0.1c1.1-0.1,1.6,0.5,2,1.5c0.5,1.6,1.2,3.1,1.8,4.7c0,0.1,0.1,0.2,0.2,0.3c0.2-2,0.3-4,0.5-6c0.8,0.1,1.6,0.2,2.4,0.2c-0.3,3.1-0.6,6.2-0.9,9.3c-0.9-0.1-1.7-0.1-2.6-0.3c-0.2,0-0.4-0.3-0.5-0.6C54,8.9,53.3,7,52.5,5.1c-0.1-0.2-0.1-0.3-0.3-0.5C52,6.7,51.8,8.9,51.6,11.1z'/%3E%3Cpath d='M80.7,18.5c0.1,0.5,0.3,1,0.2,1.6c-0.2,1.5-1.6,2.4-3,2c-0.7-0.2-1.5-0.5-2.1-1c-1.1-0.9-2.2-1.9-3.3-2.8c2.1-2.4,4.1-4.7,6.1-7c1.6,1.1,3.2,2.2,4.3,3.8c1,1.4,0.4,3.1-1.1,3.4C81.5,18.5,81.1,18.5,80.7,18.5z M75.6,18.7c0.7,0.4,1.2,0.8,1.8,1c0.2,0.1,0.7-0.1,0.9-0.3c0.2-0.2,0.2-0.6,0.1-0.9c-0.2-0.7-0.8-1.1-1.4-1.5C76.7,17.5,76.2,18,75.6,18.7zM79.6,14.2c-0.4,0.5-0.8,0.9-1.2,1.4c0.5,0.3,1,0.7,1.5,1c0.3,0.2,0.8,0.2,0.9-0.2c0.1-0.3,0.1-0.7,0-0.9C80.4,15,80,14.6,79.6,14.2z'/%3E%3Cpath d='M24.2,88.5c0-2.7,2.2-5,4.8-5c2.8,0,5.5,2.4,5.5,4.9c0,2.3-1.7,5-4.8,5C27.1,93.4,24.1,91.4,24.2,88.5z M31.8,88.2c0-1.2-0.4-1.8-1.2-2.2c-0.8-0.4-1.5-0.3-2.2,0.2c-0.9,0.6-1.4,1.5-1.5,2.6c-0.1,0.9,0.2,1.7,1,2.2c0.8,0.5,1.6,0.5,2.4-0.1C31.2,90.1,31.7,89.2,31.8,88.2z'/%3E%3Cpath d='M46.8,7.2c0,2.8-2.3,4.8-5.5,4.8c-2.7,0-4.6-2.1-4.6-4.9c0-2.8,2.3-4.8,5.3-4.8C44.9,2.3,46.8,4.2,46.8,7.2z M41.6,4.4c-1,0-1.8,0.5-2.1,1.5c-0.4,1.2-0.2,2.2,0.5,3.2c0.5,0.7,1.2,1.1,2.2,0.9c0.9-0.2,1.5-0.7,1.7-1.7c0.3-1.1,0-2.2-0.7-3.1C42.9,4.6,42.4,4.3,41.6,4.4z'/%3E%3Cpath d='M11.5,29.9c1.7-0.8,3.2,0,4.8,0c-0.4,0.8-0.7,1.5-1,2.2c-0.1,0.1-0.4,0.2-0.5,0.2c-0.7-0.1-1.3-0.1-2-0.2c-1-0.2-1.6,0.3-1.8,1.3c1,0.5,2,0.9,3.1,1.4c-0.3,0.8-0.7,1.5-1.1,2.3c-2.8-1.3-5.6-2.6-8.6-3.9c0.8-1.6,1.4-3.2,2.3-4.7c0.9-1.5,2.5-1.7,3.7-0.9C11.1,28.2,11.4,29,11.5,29.9z M7.2,31.7c0.7,0.3,1.4,0.6,2.1,0.9C9.4,32,9.6,31.5,9.7,31c0.1-0.5-0.2-0.9-0.6-1.1c-0.5-0.2-0.9-0.1-1.2,0.4C7.6,30.7,7.4,31.2,7.2,31.7z'/%3E%3Cpath d='M51.1,94.8c0,1.2,0,2.3,0,3.5c-0.8,0.1-1.6,0.1-2.5,0.2c-0.1-3.1-0.3-6.2-0.4-9.3c1.8-0.2,3.6-0.5,5.3-0.3c0.9,0.1,1.6,0.5,2.1,1.3c0.6,1,0.4,2.3-0.5,3.1c-0.2,0.2-0.4,0.3-0.6,0.5c1.4,1.1,1.4,2.8,2.1,4.3c-0.9,0.1-1.7,0.1-2.5,0.1c-0.1,0-0.3-0.2-0.3-0.3c-0.2-0.6-0.4-1.1-0.6-1.7C52.7,94.9,52.4,94.7,51.1,94.8z M50.9,93c0.6-0.1,1.2-0.2,1.8-0.4c0.4-0.1,0.6-0.5,0.6-1c-0.1-0.4-0.3-0.8-0.8-0.9c-0.6-0.1-1.1,0-1.8,0C50.8,91.5,50.9,92.2,50.9,93z'/%3E%3Cpath d='M37.6,87.2c0.8,0.2,1.6,0.3,2.5,0.5c-0.2,0.9-0.4,1.7-0.5,2.6c-0.2,1-0.4,2-0.6,3c-0.2,1.1,0.4,2,1.3,2.2c0.8,0.2,1.5-0.1,1.7-0.9c0.4-1,0.6-2,0.9-3.1c0.2-0.9,0.4-1.7,0.6-2.6c0.1-0.3,0.2-0.4,0.5-0.3c0.6,0.1,1.2,0.2,1.8,0.4c0.1,0,0.3,0.3,0.2,0.4c-0.4,1.7-0.7,3.5-1.1,5.2c-0.8,2.7-2.6,3.4-5.5,2.8c-2.3-0.6-3.3-2.1-3-4.4c0.3-1.8,0.7-3.6,1-5.4C37.5,87.4,37.5,87.3,37.6,87.2z'/%3E%3Cpath d='M14.2,23c0.8-1,1.6-2,2.4-3c0.6,0.4,1.1,0.8,1.6,1.3c-0.8,1-1.5,2-2.3,3c0.4,0.3,0.8,0.7,1.3,1c0.9-1.1,1.7-2.2,2.6-3.4c0.6,0.4,1.1,0.8,1.7,1.3c-1.4,1.8-2.8,3.6-4.2,5.4c-2.5-1.9-4.9-3.8-7.4-5.8c1.4-1.7,2.7-3.5,4.1-5.3c0.6,0.4,1.1,0.8,1.7,1.3c-0.8,1.1-1.6,2.1-2.5,3.2C13.4,22.4,13.8,22.7,14.2,23z'/%3E%3Cpath d='M69.9,85.8c0.2,0.4,0.5,0.8,0.7,1.3c1.1-0.6,2.2-1.2,3.3-1.9c0.3,0.6,0.7,1.2,1,1.8c-1.1,0.6-2.2,1.3-3.3,1.9c0.3,0.5,0.5,0.9,0.8,1.4c1.2-0.7,2.4-1.4,3.7-2.1c0.4,0.6,0.7,1.2,1.1,1.8c-2,1.2-3.9,2.3-6,3.5c-1.6-2.7-3.1-5.4-4.7-8.1c1.9-1.1,3.8-2.2,5.8-3.3c0.3,0.6,0.7,1.2,1.1,1.8C72.2,84.5,71.1,85.1,69.9,85.8z'/%3E%3Cpath d='M92.2,35.3c-0.7,0.3-1.3,0.5-1.9,0.8c-0.5-1.2-1-2.3-1.5-3.5c-0.5,0.2-1,0.4-1.5,0.6c0.5,1.3,1.1,2.6,1.6,3.9c-0.6,0.3-1.2,0.5-1.9,0.8c-0.9-2.1-1.8-4.2-2.7-6.3c2.9-1.2,5.7-2.4,8.6-3.7c0.9,2,1.7,4,2.6,6.1c-0.6,0.3-1.3,0.5-1.9,0.8c-0.5-1.1-1-2.1-1.3-3.1c-0.2-0.6-0.5-0.5-0.9-0.3c-0.4,0.2-0.7,0.3-0.4,0.9C91.4,33.4,91.8,34.3,92.2,35.3z'/%3E%3Cpath d='M25.6,8.2c1.6-1,3.1-2,4.9-2.3c1.2-0.2,2.4,0.3,3,1.3c0.7,1.1,0.6,2.5-0.1,3.5c-0.6,0.8-1.4,1.3-2.3,1.7c-0.5,0.2-0.5,0.4-0.3,0.8c0.4,0.7,0.7,1.5,1.1,2.3c-0.8,0.4-1.5,0.7-2.3,1.1C28.3,13.8,27,11,25.6,8.2z M29.8,10.8c0.8-0.2,1.3-0.5,1.7-1.2c0.4-0.7-0.2-1.6-1-1.6c-0.6,0-1.2,0.3-1.7,0.7C29.1,9.4,29.4,10.1,29.8,10.8z'/%3E%3Cpath d='M69.3,6c-0.4,0.6-0.8,1.1-1.2,1.7c-0.4-0.3-0.7-0.6-1.1-0.7c-0.5-0.2-1-0.4-1.6-0.5c-0.2,0-0.6,0.1-0.6,0.3c-0.1,0.2,0,0.6,0.2,0.7c0.3,0.4,0.8,0.7,1.2,1c0.7,0.6,1.5,1.3,1.6,2.3c0.2,1.6-0.9,2.9-2.5,3c-1.9,0.1-3.5-0.6-5-1.7c-0.3-0.2-0.3-0.4-0.1-0.7c0.3-0.4,0.6-0.9,0.9-1.4c0.5,0.4,1,0.8,1.6,1.1c0.5,0.2,1,0.4,1.5,0.5c0.2,0,0.6-0.1,0.8-0.3c0.1-0.2,0-0.6-0.2-0.8c-0.4-0.4-0.8-0.7-1.2-1c-0.7-0.6-1.4-1.3-1.6-2.3c-0.2-1.4,0.9-2.8,2.4-2.9C66.2,4.1,67.8,4.8,69.3,6z'/%3E%3Cpath d='M25.5,81c-0.6,0.4-1.2,0.7-1.7,1c-0.5-0.6-0.9-1.2-1.3-1.7c-0.2-0.2-0.5-0.4-0.8-0.6c-0.2-0.1-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.4-0.1,0.6c0.3,0.7,0.6,1.3,0.9,1.9c0.3,0.7,0.5,1.5,0.4,2.2c-0.3,1.5-1.9,2.4-3.4,1.9c-2-0.6-3.2-2.1-4.2-3.9c0.6-0.4,1.2-0.8,1.8-1.2c0.2,0.3,0.3,0.7,0.5,0.9c0.5,0.6,1,1.2,1.6,1.7c0.3,0.2,0.6,0.3,0.9,0c0.3-0.3,0.2-0.6,0.1-0.9c-0.3-0.6-0.6-1.2-0.9-1.8c-0.4-0.9-0.6-1.7-0.2-2.7c0.6-1.2,1.9-1.7,3.3-1.3C23.5,78,24.6,79.3,25.5,81z'/%3E%3Cpath d='M22.9,12.6c-0.7,0.4-1.4,0.8-2,1.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.3-0.2,0.6-0.2,0.9c0.3,0.1,0.6,0.2,0.9,0.2c0.9-0.2,1.7-0.6,2.5-0.8c2.1-0.5,3.7,1.4,3.1,3.4c-0.4,1.3-1.3,2.2-2.4,2.9c-0.5,0.4-1.2,0.6-1.8,0.9c-0.3,0.1-0.5,0.1-0.6-0.3c-0.2-0.5-0.5-1-0.7-1.6c0.5-0.2,1-0.3,1.4-0.6c0.5-0.3,1.1-0.8,1.5-1.2c0.1-0.1,0.2-0.6,0.1-0.8c-0.1-0.2-0.5-0.3-0.8-0.2c-0.9,0.2-1.7,0.6-2.5,0.8c-1.8,0.4-3.3-0.8-3.2-2.6c0-0.6,0.3-1.3,0.7-1.9c0.8-1.2,1.9-1.9,3.2-2.4c0.3-0.1,0.5-0.1,0.6,0.3C22.5,11.7,22.7,12.1,22.9,12.6z'/%3E%3Cpath d='M79.8,87.4c-0.3-0.6-0.7-1.2-1-1.9c0.3-0.1,0.6-0.2,0.9-0.4c0.6-0.5,1.3-0.9,1.9-1.5c0.2-0.2,0.2-0.7,0.1-0.9c-0.1-0.2-0.6-0.2-0.8-0.1c-0.7,0.2-1.5,0.6-2.2,0.9c-1.1,0.4-2.1,0.3-2.9-0.6c-0.8-0.9-0.9-1.9-0.4-3c0.7-1.6,2.1-2.7,3.7-3.4c0.3,0.6,0.6,1.2,1,1.8c-0.5,0.3-1,0.5-1.4,0.8c-0.4,0.3-0.7,0.7-1,1c-0.1,0.2-0.1,0.5,0,0.7c0.1,0.2,0.5,0.2,0.7,0.2c0.5-0.1,0.9-0.4,1.4-0.6c0.6-0.2,1.2-0.4,1.8-0.5c1.7-0.3,3.4,1.6,2.6,3.7C83.5,85.2,81.6,86.9,79.8,87.4z'/%3E%3Cpath d='M66.6,93.2c0.3,0.6,0.6,1.1,1,1.8c-0.7,0.3-1.4,0.7-2.1,1c-1.3,0.5-2.8,0.7-4.1,0.2c-3.1-1-4.1-5.3-1.8-7.8c1.3-1.3,3.7-2.2,5.6-1.9c0,0.6,0,1.3,0,1.9c-0.6,0.1-1.3,0.1-1.9,0.3c-1,0.3-1.9,0.8-2.2,1.9c-0.6,2,1.3,4,3.3,3.4C65.1,93.8,65.8,93.5,66.6,93.2z'/%3E%3Cpath d='M83,25.7c0.8,1.1,1.6,2.2,2.3,3.3c-0.6,0.4-1.2,0.8-1.8,1.3c-1.3-1.8-2.6-3.6-3.9-5.4c2.5-1.8,5.1-3.6,7.6-5.5c0.5,0.7,1,1.4,1.5,2.1C86.9,22.9,84.9,24.2,83,25.7z'/%3E%3Cpath d='M70.6,17c-0.8-0.4-1.5-0.9-2.2-1.3c1.6-2.7,3.1-5.4,4.7-8.1c0.8,0.5,1.5,0.9,2.3,1.3C73.7,11.7,72.2,14.3,70.6,17z'/%3E%3C/g%3E%3C/svg%3E"); }
      .productView-product .door-features-wrap ul li.quaity-construction .feature-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M78.3,78.3c-0.1,0.3-0.2,0.5-0.2,0.8c-0.1,1-0.2,2.1-0.3,3.1c-0.1,1.8-0.3,3.6-0.4,5.4c-0.2,2.8-0.5,5.6-0.8,8.4c0,0.4-0.1,0.8-0.1,1.2c0,0.4-0.6,1.1-1,1.1c-0.5,0-1-0.2-1.2-0.7c-0.5-0.8-1-1.6-1.5-2.4c-4.1-6.6-8.2-13.2-12.3-19.8c-1.6-2.5-3.1-5.1-4.7-7.6c-0.3-0.5-0.4-0.5-0.8,0c-1.2,1.3-2.3,2.7-3.5,4c-0.2,0.2-0.3,0.3-0.5,0.5c-0.6,0.8-1.5,0.8-2.1,0.1c-1.4-1.6-2.7-3.2-4.1-4.7c-0.1-0.1-0.1-0.1-0.3-0.2c-0.2,0.3-0.4,0.5-0.5,0.7c-5.3,8.6-10.6,17.1-15.9,25.7c-0.8,1.2-1.5,2.5-2.3,3.7c-0.2,0.3-0.6,0.6-0.9,0.8c-0.5,0.2-1.3-0.4-1.3-1.1c-0.1-1.7-0.3-3.4-0.4-5.2c-0.1-1.1-0.3-2.2-0.3-3.3c-0.2-2.1-0.3-4.2-0.5-6.2c-0.1-1.1-0.2-2.3-0.3-3.4c0-0.3-0.1-0.5-0.2-0.8c-1.5,0.6-3,1.1-4.5,1.7c-4.3,1.6-8.5,3.1-12.8,4.6C3.4,85,3.1,84.9,2.4,84c-0.1-0.1-0.1-0.4,0-0.5c1.1-1.8,2.3-3.6,3.4-5.4c3.8-5.9,7.6-11.9,11.4-17.8c1.4-2.2,2.8-4.4,4.2-6.7c0.4-0.6,0.3-0.6-0.3-0.9c-1.1-0.4-2.1-0.7-3.2-1.1c-0.9-0.4-1.1-1-0.7-1.8c1-2,2-4,3-6c0.3-0.5,0.1-0.9-0.3-1.2c-1.7-1.4-3.3-2.8-5-4.3c-0.8-0.6-0.8-1.4-0.1-2c1.8-1.6,3.6-3.1,5.4-4.7c0.3-0.2,0.2-0.4,0-0.6c-1-1.9-1.9-3.8-2.9-5.7c-0.7-1.5-0.6-2,1-2.5c2-0.7,4-1.4,6-2c0.4-0.1,0.6-0.3,0.6-0.8c-0.1-1.1-0.2-2.2-0.3-3.2c-0.1-1.4-0.1-2.7-0.1-4.1c0-0.5,0.5-0.9,1.2-0.9c1.6,0.1,3.2,0.2,4.7,0.3c0.8,0.1,1.6,0.1,2.4,0.1c0.5,0,0.5-0.3,0.6-0.7c0.6-1.9,1.3-3.9,1.9-5.8c0.1-0.2,0.2-0.4,0.2-0.7c0.3-0.9,1-1.1,1.8-0.7c2,1,4.1,2,6.1,3c0.4,0.2,0.7,0.1,1-0.2c1.5-1.7,3-3.4,4.5-5.1c0.6-0.6,1.2-0.6,1.8,0c1.2,1.3,2.4,2.7,3.5,4c0.4,0.5,0.8,0.9,1.2,1.3c0.1,0.1,0.5,0.1,0.6,0.1c1.9-0.9,3.9-1.9,5.8-2.8c0.1-0.1,0.3-0.1,0.4-0.2c0.9-0.4,1.5-0.2,1.8,0.7c0.7,2.2,1.5,4.3,2.2,6.5c0.2,0.5,0.4,0.6,0.9,0.5c1.3-0.1,2.5-0.2,3.8-0.3c1-0.1,2-0.1,3-0.2c0.7-0.1,1.4,0.3,1.4,1.1c0,1.4-0.1,2.8-0.2,4.2c-0.1,1-0.2,2-0.2,3c0,0.4,0.1,0.6,0.5,0.7c2.1,0.7,4.2,1.4,6.2,2.1c0.4,0.1,0.8,0.3,1,0.6c0.3,0.4,0.2,0.8,0,1.3c-1,2-2,4-3,6c-0.4,0.7-0.3,0.7,0.3,1.2c1.7,1.4,3.3,2.8,4.9,4.3c0.8,0.7,0.7,1.5-0.1,2.2c-1.3,1.1-2.6,2.3-3.9,3.5c-0.4,0.3-0.7,0.7-1.1,1c-0.3,0.2-0.3,0.5-0.1,0.8c1,1.9,2,3.9,2.9,5.8c0.6,1.2,0.4,1.8-0.9,2.2c-0.9,0.3-1.8,0.6-2.7,0.9c-0.9,0.3-0.9,0.3-0.4,1.1c3,4.7,6,9.5,9.1,14.2c2.9,4.6,5.8,9.1,8.7,13.7c0.3,0.5,0.6,0.9,0.8,1.4c0.2,0.4,0.2,0.8,0,1.2c-0.3,0.4-0.7,0.5-1.1,0.4c-1.2-0.4-2.4-0.8-3.5-1.2c-4.4-1.6-8.9-3.2-13.3-4.8C79.1,78.6,78.7,78.5,78.3,78.3z M19.8,49.8c0.3,0.1,0.5,0.2,0.8,0.3c2,0.7,4,1.4,6,2c0.4,0.1,0.8,0.3,0.8,0.8c0,1.2-0.1,2.5-0.2,3.7c-0.1,1.1-0.2,2.2-0.3,3.3c0,0.3,0,0.5,0.4,0.5c0.8-0.1,1.5-0.1,2.3-0.2c1.5-0.1,3-0.2,4.5-0.3c0.6,0,0.9,0.2,1.1,0.7c0.7,2,1.4,4,2.1,6c0.3,0.8,0.3,0.8,1,0.4c1.8-0.9,3.6-1.8,5.4-2.6c0.9-0.4,1.1-0.4,1.8,0.3c1.2,1.4,2.5,2.7,3.7,4.1c1,1.1,0.7,1.3,1.8,0c1.3-1.4,2.5-2.9,3.8-4.3c0.6-0.7,0.8-0.6,1.6-0.2c1.9,0.9,3.8,1.8,5.6,2.7c0.4,0.2,0.7,0.2,0.8-0.3c0.1-0.3,0.2-0.5,0.3-0.8c0.6-1.7,1.1-3.5,1.7-5.2c0.3-0.8,0.5-1,1.3-1c0.8,0,1.6,0.1,2.4,0.1c1.4,0.1,2.8,0.2,4.2,0.3c0.3,0,0.5,0,0.5-0.4c-0.1-1.1-0.1-2.1-0.2-3.2c-0.1-1.2-0.2-2.3-0.2-3.5c0-0.8,0.2-1,0.9-1.3c1.6-0.6,3.3-1.1,5-1.7c0.5-0.2,1.1-0.4,1.7-0.6c-0.1-0.3-0.2-0.5-0.4-0.7c-0.9-1.9-1.8-3.8-2.8-5.7c-0.3-0.5-0.2-0.9,0.2-1.3c0.2-0.2,0.3-0.3,0.5-0.5c1.4-1.2,2.8-2.5,4.3-3.7c0.6-0.5,0.6-0.6,0-1.1c-1.5-1.3-3-2.7-4.5-4c-0.7-0.6-0.8-1-0.4-1.8c0.9-1.8,1.8-3.7,2.7-5.5c0.3-0.7,0.3-0.7-0.4-0.9c-1.9-0.6-3.8-1.3-5.7-1.9c-0.9-0.3-1.1-0.6-1.2-1.6c0-0.4,0.1-0.9,0.1-1.3c0.1-1.4,0.1-2.9,0.3-4.3c0.1-1.3,0-1.4-1.3-1.3c-1.3,0.1-2.7,0.2-4,0.3c-0.2,0-0.5,0-0.7,0.1c-1.4,0.1-1.9,0.2-2.5-1.4c-0.6-1.8-1.2-3.6-1.8-5.4c-0.1-0.2-0.2-0.4-0.3-0.7c-2.1,1-4.1,2-6.1,3c-0.8,0.4-1.3,0.3-1.9-0.4c-0.6-0.7-1.1-1.4-1.7-2c-0.9-1-1.8-2-2.7-3.1c-0.1,0.1-0.2,0.1-0.2,0.2c-1.4,1.7-2.9,3.3-4.3,5c-0.4,0.4-0.8,0.6-1.4,0.5c-0.4-0.1-0.7-0.2-1-0.4c-1.2-0.6-2.5-1.2-3.7-1.9c-0.6-0.3-1.2-0.6-1.9-0.9c-0.1,0.2-0.2,0.4-0.3,0.6c-0.7,2-1.4,3.9-2,5.9c-0.3,0.8-0.6,1-1.4,1c-1.2-0.1-2.4-0.2-3.6-0.3c-0.9-0.1-1.8-0.1-2.7-0.2c-0.7,0-0.8,0.1-0.7,0.8c0.2,1.9,0.3,3.8,0.5,5.6c0.1,1.3-0.1,1.6-1.4,2c-1.9,0.6-3.7,1.3-5.6,1.9c-0.4,0.1-0.6,0.3-0.3,0.8c1,1.9,1.9,3.8,2.8,5.7c0.4,0.7,0.3,1.1-0.3,1.6c-1.3,1.2-2.7,2.4-4.1,3.6c-0.4,0.3-0.8,0.7-1.2,1.1c0.5,0.4,0.8,0.8,1.2,1.1c1.2,1.1,2.5,2.1,3.6,3.2c1.2,1.1,1.2,1.1,0.5,2.5C21.7,46,20.8,47.9,19.8,49.8z M93.3,81.2c0,0,0.1-0.1,0.1-0.1C87.6,72,81.8,62.9,76.1,53.7c-0.4,0.2-0.9,0.2-0.9,0.8c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.4,0.2,2.7,0.2,4.1c0,0.6-0.4,1-1,1c-1.1,0-2.2-0.1-3.3-0.1c-1.3-0.1-2.5-0.2-3.8-0.3c-0.5,0-0.7,0.1-0.9,0.6c-0.7,2.1-1.4,4.2-2.1,6.3c-0.3,0.9-1,1.2-1.8,0.8c-1-0.5-2.1-1-3.1-1.5c-0.1-0.1-0.2-0.1-0.4-0.1c0,0-0.1,0.1-0.1,0.1c5.1,8.2,10.2,16.4,15.3,24.6c0.1,0,0.1,0,0.2-0.1c0.2-2.2,0.4-4.5,0.6-6.7c0.1-1.3,0.2-2.7,0.3-4c0.2-1.9,0.4-3.8,0.5-5.7c0.1-1,0.8-1.5,1.7-1.2c1.1,0.4,2.1,0.8,3.2,1.2c3.9,1.4,7.9,2.9,11.8,4.3C92.9,81.2,93.1,81.2,93.3,81.2zM6.7,81.1c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0,0.3-0.1,0.5-0.1c3-1.1,6-2.2,9-3.3c2-0.7,4-1.4,6-2.2c0.9-0.3,1.6,0,1.8,1c0.1,0.5,0.1,1.1,0.2,1.6c0.2,2.5,0.4,5,0.6,7.5c0.2,1.9,0.3,3.9,0.5,5.8c0.1,0.6,0.1,1.2,0.2,1.8c0.1,0,0.1,0,0.2,0c5.1-8.2,10.2-16.4,15.3-24.6c0,0-0.1-0.1-0.1-0.1c-0.2,0.1-0.4,0.1-0.6,0.2c-1,0.5-1.9,1-2.9,1.4c-0.8,0.4-1.4,0.1-1.7-0.6c-0.1-0.2-0.2-0.5-0.3-0.7c-0.7-2-1.3-4-2-5.9c-0.1-0.2-0.3-0.4-0.4-0.4c-1.2,0-2.5,0.1-3.7,0.1c-1.3,0.1-2.5,0.2-3.8,0.3c-0.7,0-1.1-0.4-1-1.1c0-0.9,0.1-1.7,0.2-2.6c0.1-1.5,0.2-2.9,0.3-4.4c0-0.8-0.1-0.9-1-1C18.3,62.9,12.5,72,6.7,81.1z'/%3E%3Cpath d='M70.8,37.9c-0.1-1.2-0.1-2-0.2-2.8c0-0.6,0.6-1.2,1.2-1.3c0.5,0,1.1,0.5,1.2,1c0.7,5.9-0.8,11.2-4.1,16c-2.2,3.2-5.1,5.7-8.7,7.4c-1.7,0.8-3.5,1.5-5.4,1.8c-1.7,0.3-3.5,0.6-5.2,0.5c-5-0.2-9.6-1.8-13.6-4.9c-4.4-3.4-7.2-7.9-8.4-13.4c-0.4-2-0.6-3.9-0.5-6c0.3-4.5,1.7-8.6,4.3-12.3c2.1-2.9,4.7-5.2,7.8-6.9c2.2-1.2,4.5-2,7-2.4c1.6-0.2,3.1-0.4,4.7-0.4c4.2,0.2,8.2,1.4,11.7,3.7c0.5,0.3,0.9,0.6,1.3,1c0.6,0.5,0.7,1.2,0.3,1.7c-0.4,0.6-1.1,0.6-1.8,0.2c-1.5-1.1-3.2-2.1-4.9-2.8c-1.6-0.6-3.2-1.1-5-1.2c-1.5-0.1-3-0.2-4.4-0.1c-1.5,0.1-3.1,0.4-4.5,0.9c-2.8,0.9-5.3,2.3-7.4,4.3c-2.7,2.5-4.8,5.5-5.9,9c-0.7,2.1-1,4.3-1,6.5c0,4.7,1.5,8.9,4.4,12.5c3.3,4.2,7.5,6.8,12.8,7.7c1.8,0.3,3.6,0.4,5.4,0.3c2-0.2,4-0.7,5.9-1.5c2.8-1.1,5.2-2.9,7.3-5.1c2.7-2.9,4.5-6.3,5.2-10.3C70.7,40.1,70.7,38.8,70.8,37.9z'/%3E%3Cpath d='M38.8,32.9c0-0.5,0.2-0.9,0.7-1.1c0.5-0.2,1-0.1,1.4,0.3c3.2,3.2,6.4,6.4,9.6,9.6c0.1,0.1,0.2,0.2,0.3,0.3c0.3,0.3,0.5,0.3,0.8,0c0.5-0.5,1-1,1.5-1.6c5.5-5.5,11.1-11.1,16.6-16.6c0.3-0.3,0.6-0.6,1-0.4c0.3,0.1,0.8,0.3,0.9,0.6c0.1,0.3,0,0.8-0.1,1.2c0,0.2-0.3,0.3-0.4,0.4C64.9,32,58.7,38.2,52.4,44.5c-1.1,1.1-1.4,1.1-2.5,0c-3.5-3.5-7.1-7.1-10.6-10.6c-0.2-0.2-0.4-0.6-0.6-0.9C38.7,32.9,38.8,32.9,38.8,32.9z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 85%; }
      .productView-product .door-features-wrap ul li.tempered-glass .feature-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M98.1,49.9c0,10,0,19.9,0,29.9c0,3.9,0,7.9,0,11.8c0,3.6-2.2,6.1-5.7,6.5c-1.1,0.1-2.3,0.1-3.4,0.1c-20.7,0-41.3,0-62,0c-6.2,0-12.3,0-18.5,0c-3.7,0-6.5-2.8-6.5-6.5c0-0.1,0-0.1,0-0.2c0-27.5,0-55,0-82.4c0-1,0.2-2,0.4-3C3,3.6,5.4,1.8,8.1,1.8c20.4,0,40.7,0,61.1,0c7.5,0,15,0,22.4,0c2.9,0,5,1.3,6.1,4C98,6.5,98.1,7.3,98.1,8C98.1,22,98.1,35.9,98.1,49.9C98.1,49.9,98.1,49.9,98.1,49.9z M50,4.2c-0.2,0-0.4,0-0.6,0c-13.5,0-27.1,0-40.6,0c-0.2,0-0.4,0-0.6,0C6.3,4.2,4.8,5.4,4.4,7.3C4.2,7.8,4.2,8.4,4.2,9c0,27.2,0,54.3,0,81.5c0,0.5,0,1.1,0.1,1.6c0.3,1.9,1.3,3,3.2,3.5c0.6,0.1,1.2,0.2,1.8,0.2c27.3,0,54.5,0,81.8,0c0.2,0,0.4,0,0.6,0c2.2-0.2,4.2-1.5,4.2-4.2c0-1.8,0-3.6,0-5.4c0-25.3,0-50.6,0-75.9c0-0.4,0-0.8,0.1-1.3c0.2-3.2-1.9-4.9-4.4-4.9c-8,0.1-15.9,0-23.9,0C61.7,4.2,55.9,4.2,50,4.2z'/%3E%3Cpath d='M50,88.5c-11.8,0-23.6,0-35.4,0c-0.4,0-0.7,0-1.1,0c-1.3-0.2-2-1-2.1-2.3c0-0.2,0-0.5,0-0.7c0-11.6,0-23.3,0-34.9c0-12,0-24.1,0-36.1c0-0.3,0-0.6,0.1-0.9c0.3-1.4,1.3-2.2,3-2.2c3,0,6,0,8.9,0c20.7,0,41.3,0,62,0c0.4,0,0.9,0.1,1.3,0.2c1.2,0.4,1.9,1.3,1.9,2.6c0,0.1,0,0.2,0,0.3c0,23.6,0,47.3,0,70.9c0,0.4,0,0.8-0.1,1.2c-0.2,1.2-1.1,1.9-2.4,2c-0.3,0-0.5,0-0.8,0C73.6,88.5,61.8,88.5,50,88.5z M31.3,86.2c5.5,0,11.1,0,16.6,0c0.8,0,0.9-0.1,0.9-0.9c0-3.2,0-6.3,0-9.5c0-0.6-0.2-1-0.7-1.3c-3.1-2.2-6-4.6-8.4-7.5c-2.5-3-4.7-6.1-6.3-9.6c-0.8-1.8-1.5-3.6-2.2-5.4c-0.2-0.6-0.6-0.9-1.2-0.9c-5.2,0-10.3,0-15.5,0c-0.7,0-0.8,0.1-0.8,0.8c0,11.1,0,22.2,0,33.3c0,0.9,0.1,1,1,1C20.3,86.2,25.8,86.2,31.3,86.2z M68.7,86.2c5.6,0,11.1,0,16.7,0c0.9,0,0.9,0,0.9-1c0-11.1,0-22.1,0-33.2c0-0.9,0-0.9-0.9-0.9c-3.3,0-6.5,0-9.8,0c-1.8,0-3.6,0-5.4,0c-0.9,0-1.1,0.1-1.4,0.9c-1,2.9-2.2,5.6-3.8,8.2c-2.6,4.3-5.5,8.3-9.5,11.5c-1.2,1-2.4,1.9-3.7,2.8c-0.6,0.4-0.9,0.8-0.9,1.4c0,3.2,0,6.3,0,9.5c0,0.8,0,0.8,0.8,0.8C57.5,86.2,63.1,86.2,68.7,86.2z M31.5,13.6c-5.6,0-11.1,0-16.7,0c-0.8,0-1,0.2-1,1c0,0.1,0,0.3,0,0.4c0,10.8,0,21.7,0,32.5c0,1.3,0.1,1.4,1.4,1.4c4.6,0,9.2,0,13.9,0c0.2,0,0.4,0,0.5,0c0.4,0,0.6-0.2,0.5-0.7c0-0.1-0.1-0.3-0.1-0.4c-0.4-2.3-0.9-4.6-1.2-6.9c-0.2-1.2-0.1-2.5,0-3.8c0-1.9,0.1-3.7,0.1-5.6c0-0.9,0.6-1.4,1.5-1.5c0.4,0,0.8,0,1.2,0c3.2,0,6.2-0.5,9.2-1.6c2.5-0.9,4.9-2,7.3-3.1c0.6-0.3,0.9-0.7,0.9-1.3c0-3.2,0-6.4,0-9.6c0-0.8-0.1-0.8-0.8-0.8C42.5,13.6,37,13.6,31.5,13.6z M70,48.8c0.5,0,1,0.1,1.5,0.1c3.6,0,7.3,0,10.9,0c1,0,2,0,3,0c0.9,0,1-0.2,1-1c0-11.1,0-22.2,0-33.2c0-0.9-0.1-1-1-1c-11.1,0-22.1,0-33.2,0c-0.9,0-1.1,0.1-1.1,1c0,3.2,0,6.3,0,9.5c0,0.5,0.2,0.9,0.7,1.1c5.7,2.8,11.5,5,18,4.9c0.8,0,1.3,0.4,1.4,1.3c0.1,0.8,0.2,1.7,0.2,2.5c0,1.6,0,3.2,0,4.9c0,2-0.1,4-0.6,6C70.5,46.1,70.3,47.4,70,48.8z M69.3,36.4c-0.1-0.8-0.1-2-0.2-3.1c-0.1-0.9-0.2-0.9-1.1-0.9c-1.9-0.1-3.8-0.2-5.7-0.7c-4-1.2-7.9-2.3-11.6-4.4c-0.4-0.3-0.9-0.2-1.3,0c-2.7,1.3-5.5,2.6-8.4,3.5c-2.8,0.9-5.8,1.3-8.7,1.6c-1.2,0.1-1.4,0.2-1.4,1.2c0,3.8-0.1,7.5,0.7,11.3c1.2,6,3.5,11.6,6.8,16.7c2.9,4.4,6.4,8.1,10.9,11c0.7,0.5,0.9,0.4,1.5-0.1c0.2-0.2,0.4-0.3,0.7-0.5c2.5-1.9,4.9-3.8,6.9-6.2C65.5,57.3,69,47.6,69.3,36.4z'/%3E%3Cpath d='M50.1,59.9c-2.2,0-4.4,0-6.6,0c-1.1,0-2.1-0.2-2.9-1c-0.5-0.5-0.8-1.2-0.8-1.9c0-3.9,0.1-7.8,0-11.7c0-1.5,1.1-3,2.6-3.2c0.5-0.1,0.6-0.3,0.6-0.8c0-1.2,0-2.3,0.1-3.5c0.3-2.4,2.3-4.2,4.7-4.2c1.4,0,2.9,0,4.3,0c2.9-0.1,4.8,2.7,4.9,4.7c0,1,0,2,0,3c0,0.4,0.1,0.6,0.6,0.7c1.9,0.5,2.7,1.5,2.7,3.4c0,3.8,0,7.6,0,11.5c0,1.4-0.8,2.4-2.2,2.7c-1,0.2-2,0.2-3,0.3C53.4,60,51.8,59.9,50.1,59.9z M50,44.4c-1,0-2.1,0-3.1,0c-1.2,0-2.5,0-3.7,0c-0.8,0-1.1,0.3-1.1,1c0,0.5,0,0.9,0,1.4c0,3.2,0,6.5,0,9.7c0,0.7,0.2,1,0.9,1.1c0.2,0,0.5,0.1,0.7,0.1c4.3,0,8.5,0,12.8,0c1.1,0,1.5-0.4,1.5-1.5c0-3.5,0-6.9,0-10.4c0-1.1-0.3-1.4-1.4-1.4C54.4,44.4,52.2,44.4,50,44.4z M50,42.1C50,42.1,50,42.1,50,42.1c1.4,0,2.7,0,4.1,0c0.5,0,0.7-0.2,0.7-0.7c0-0.8,0.1-1.6,0-2.4c-0.1-1.9-1.4-3.1-3.3-3.1c-1.2,0-2.4,0.1-3.6,0.1c-1.4,0-2.6,1.2-2.6,2.6c0,1,0,1.9,0,2.9c0,0.4,0.2,0.6,0.6,0.6C47.3,42.1,48.7,42.1,50,42.1z'/%3E%3Cpath d='M51.1,51c0,0.7,0,1.3,0,2c0,0.7-0.3,0.9-0.9,0.9c-0.8,0-1.3-0.3-1.3-0.9c0-1.4,0-2.7,0-4.1c0-0.5,0.7-1.1,1.2-1.1c0.6,0,1,0.5,1,1.2c0,0,0,0,0,0.1C51.1,49.8,51.1,50.4,51.1,51C51.1,51,51.1,51,51.1,51z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 85%; }
      .productView-product .door-features-wrap ul li.double-doors .feature-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M98.4,51.2c0,15.4,0,30.7,0,46.1c0,0.5-0.4,1.1-0.8,1.2c-0.5,0.1-0.9-0.1-1.1-0.5c-0.1-0.1-0.1-0.3-0.1-0.5c0-0.2,0-0.5,0-0.8c0-30.2,0-60.5,0-90.7c0-0.3,0-0.7-0.1-1c-0.1-0.7-0.6-1.1-1.3-1.3c-0.3-0.1-0.7-0.1-1-0.1c-29.3,0-58.7,0-88,0c-0.3,0-0.7,0-1,0.1C4.2,3.9,3.8,4.5,3.7,5.2c0,0.2,0,0.5,0,0.7c0,30.2,0,60.5,0,90.7c0,0.3,0,0.7-0.1,1c-0.1,0.6-0.6,1-1.2,0.9C2,98.4,1.6,98,1.6,97.4c0-0.2,0-0.3,0-0.5c0-30.4,0-60.8,0-91.3c0-2.5,1.6-4.1,4.1-4.1c29.6,0,59.3,0,88.9,0c2.2,0,3.9,1.7,3.9,3.9C98.4,20.7,98.4,35.9,98.4,51.2z'/%3E%3Cpath d='M8.4,53.1c0-13.9,0-27.7,0-41.6c0-0.3,0-0.7,0-1c0.2-1.4,1.6-2.1,2.9-1.6c2.1,0.8,4.2,1.7,6.3,2.6c6.9,2.9,13.8,5.7,20.7,8.6c1.8,0.7,2.6,2.1,2.6,4c0,19.3,0,38.6,0,57.9c0,2.1-0.8,3.3-2.7,4.1c-8.9,3.7-17.8,7.3-26.6,11.1c-1.8,0.7-3.3-0.4-3.3-2.2C8.4,81,8.4,67.1,8.4,53.1z M10.6,10.9c0,28.2,0,56.3,0,84.4c0.3-0.1,0.5-0.2,0.7-0.2c8.6-3.6,17.3-7.1,25.9-10.7c1.4-0.6,1.7-1,1.7-2.5c0-3.2,0-6.3,0-9.5c0-11.2,0-22.4,0-33.5c0-4.8,0-9.6,0-14.4c0-1.5-0.3-1.9-1.7-2.5c-7.4-3.1-14.8-6.1-22.2-9.2C13.5,12.1,12.1,11.5,10.6,10.9z'/%3E%3Cpath d='M91.8,53.1c0,13.9,0,27.9,0,41.8c0,1.3-0.5,2.1-1.6,2.4c-0.6,0.2-1.2,0-1.8-0.3c-3.7-1.7-7.5-3.5-11.2-5.2c-4-1.9-8-3.8-12.1-5.6c-1.7-0.8-2.5-2.1-2.5-4c0-0.1,0-0.2,0-0.3c0-19.2,0-38.4,0-57.6c0-0.5,0-1,0.1-1.5c0.2-1.2,1-2.1,2.1-2.6c2.7-1.3,5.4-2.5,8.1-3.8c5.2-2.4,10.3-4.8,15.5-7.2c1.7-0.8,3.4,0.2,3.4,2.2C91.8,25.2,91.8,39.1,91.8,53.1z M89.7,11c-0.3,0.1-0.5,0.2-0.7,0.3c-7.5,3.5-15,7-22.6,10.5c-1.2,0.5-1.6,1.3-1.6,2.5c0,19.2,0,38.4,0,57.6c0,1.2,0.4,1.9,1.6,2.5c6.5,3,13.1,6.1,19.6,9.1c1.2,0.6,2.4,1.1,3.7,1.7C89.7,67.1,89.7,39.1,89.7,11z'/%3E%3Cpath d='M4.8,26.4c0-0.7,0-1.3,0-2c0-0.7,0.4-1.1,1-1.1c0.6,0,1,0.4,1.1,1.1c0,1.3,0,2.7,0,4c0,0.6-0.5,1.1-1.1,1.1c-0.6,0-1-0.5-1-1.1C4.8,27.7,4.8,27,4.8,26.4z'/%3E%3Cpath d='M6.9,78.3c0,0.6,0,1.3,0,1.9c0,0.7-0.4,1.1-1.1,1.1c-0.6,0-1-0.5-1-1.2c0-1.3,0-2.6,0-3.8c0-0.7,0.4-1.1,1-1.1c0.7,0,1.1,0.4,1.1,1.2C6.9,77,6.9,77.6,6.9,78.3z'/%3E%3Cpath d='M94.9,78.3c0,0.7,0,1.3,0,2c0,0.7-0.4,1.1-1,1.1c-0.5,0-1-0.4-1.1-1.1c0-0.6,0-1.2,0-1.8c0-0.7,0-1.4,0-2.1c0-0.7,0.4-1.2,1.1-1.2c0.7,0,1,0.4,1,1.2C94.9,77,94.9,77.6,94.9,78.3z'/%3E%3Cpath d='M94.9,26.4c0,0.7,0,1.4,0,2c0,0.6-0.4,1-0.9,1c-0.6,0-1.1-0.3-1.1-0.9c-0.1-1.4-0.1-2.8,0-4.2c0-0.7,0.5-1,1.1-1c0.6,0.1,0.9,0.4,0.9,1.1C94.9,25.1,94.9,25.7,94.9,26.4z'/%3E%3Cpath d='M31.6,51.3c0.6,0,1.1,0,1.7,0c0.6,0,1,0.4,1.1,1c0,0.6-0.4,1.1-1,1.1c-1.2,0-2.4,0-3.5,0c-0.7,0-1.1-0.5-1-1.1c0-0.6,0.4-1,1.2-1C30.5,51.3,31,51.3,31.6,51.3z'/%3E%3Cpath d='M72.6,51.3c0.6,0,1.1,0,1.7,0c0.6,0,1,0.4,1.1,1c0,0.6-0.4,1.1-1,1.1c-1.2,0-2.4,0-3.5,0c-0.6,0-1.1-0.6-1-1.1c0-0.6,0.5-1,1.1-1C71.5,51.3,72.1,51.3,72.6,51.3z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 85%; }
    .productView-product .door-features-wrap ul.popup-list {
      gap: 5px;
      align-items: flex-start;
      flex-direction: column; }
      .productView-product .door-features-wrap ul.popup-list li {
        cursor: pointer;
        font-size: 14px;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 431.855 431.855' fill='%236e3a16'%3E%3Cpath d='M215.936,0C96.722,0,0.008,96.592,0.008,215.814c0,119.336,96.714,216.041,215.927,216.041 c119.279,0,215.911-96.706,215.911-216.041C431.847,96.592,335.214,0,215.936,0z M231.323,335.962 c-5.015,4.463-10.827,6.706-17.411,6.706c-6.812,0-12.754-2.203-17.826-6.617c-5.08-4.406-7.625-10.575-7.625-18.501 c0-7.031,2.463-12.949,7.373-17.745c4.91-4.796,10.933-7.194,18.078-7.194c7.031,0,12.949,2.398,17.753,7.194 c4.796,4.796,7.202,10.713,7.202,17.745C238.858,325.362,236.346,331.5,231.323,335.962z M293.856,180.934 c-3.853,7.145-8.429,13.306-13.737,18.501c-5.292,5.194-14.81,13.924-28.548,26.198c-3.788,3.463-6.836,6.503-9.12,9.12 c-2.284,2.626-3.991,5.023-5.105,7.202c-1.122,2.178-1.983,4.357-2.593,6.535c-0.61,2.17-1.528,5.999-2.772,11.469 c-2.113,11.608-8.754,17.411-19.915,17.411c-5.804,0-10.681-1.894-14.656-5.69c-3.959-3.796-5.934-9.429-5.934-16.907 c0-9.372,1.455-17.493,4.357-24.361c2.886-6.869,6.747-12.892,11.543-18.086c4.804-5.194,11.274-11.356,19.427-18.501 c7.145-6.251,12.307-10.965,15.485-14.144c3.186-3.186,5.861-6.73,8.031-10.632c2.187-3.91,3.26-8.145,3.26-12.721             c0-8.933-3.308-16.46-9.957-22.597c-6.641-6.137-15.209-9.21-25.703-9.21c-12.282,0-21.321,3.097-27.125,9.291 c-5.804,6.194-10.705,15.314-14.729,27.369c-3.804,12.616-11.006,18.923-21.598,18.923c-6.251,0-11.526-2.203-15.826-6.609 c-4.292-4.406-6.438-9.177-6.438-14.314c0-10.6,3.406-21.346,10.21-32.23c6.812-10.884,16.745-19.899,29.807-27.036 c13.054-7.145,28.296-10.722,45.699-10.722c16.184,0,30.466,2.991,42.854,8.966c12.388,5.966,21.963,14.087,28.718,24.361 c6.747,10.266,10.128,21.427,10.128,33.482C299.635,165.473,297.709,173.789,293.856,180.934z'%3E%3C/path%3E%3C/svg%3E");
        color: #232B2E;
        padding-left: 20px;
        background-size: 16px;
        text-decoration: none;
        background-repeat: no-repeat;
        background-position: center left; }

div[data-layout-name="Global Notes"] .sd-simple-text-e52b00e0-6350-4c9f-8c01-a1b90041167f * {
  font-family: "Work Sans",sans-serif; }

@media (min-width: 801px) {
  iframe[src="https://tours.momentumvirtualtours.com/tours/c0e6XFtGg"] {
    height: 750px; } }

.door-advanced-features {
  display: none; }

.door-features-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .door-features-wrap .door-feature {
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 55px;
    margin: 0 0 1rem;
    padding: 10px 10px 10px 65px;
    width: 100%; }
    @media (min-width: 801px) {
      .door-features-wrap .door-feature {
        width: 50%; } }
    .door-features-wrap .door-feature .feature-content h4 {
      line-height: 1.6rem;
      margin: 0; }
    .door-features-wrap .door-feature .feature-content p {
      margin: 0; }
    .door-features-wrap .door-feature.sustainably-sourced {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M56.1,36.9c1.2,0.8,1.5,2,1.9,3.2c1,2.9,1.9,5.8,2.9,8.7c0.4,1.1,0.3,1.4-0.7,2.1c0.5,0.6,1.1,1.1,1.6,1.7c0.4,0.4,0.7,0.9,0.9,1.4c0.8,2.4,1.6,4.9,2.4,7.3c0.5,1.5,0.3,1.8-1.2,2.3c0.1,0.1,0.2,0.3,0.3,0.4c0.4,0.4,0.7,0.8,1.2,1.2c1.3,1,2,2.4,2.4,4c0.3,1.1-0.2,1.9-1.4,1.9c-1.2,0-2.5,0-3.7,0c-2.5,0-5,0-7.5,0c-0.2,0-0.4,0-0.7,0c0,0.2,0,0.5,0,0.7c0,1.7,0,3.3,0,5c0,1.1-0.4,1.5-1.5,1.5c-2.2,0-4.5,0-6.7,0c-0.9,0-1.5-0.5-1.5-1.5c0-1.7,0-3.3,0-5c0-0.8,0-0.8-0.8-0.8c-3.5,0-7.1,0-10.6,0c-0.5,0-1-0.1-1.4-0.6c-0.3-0.5-0.2-1,0-1.5c0.9-2.6,1.8-5.1,2.5-7.7c0.4-1.2,1.1-2.1,1.9-2.9c0.7-0.7,1.4-1.4,2.2-2.2c-0.2,0-0.3,0-0.4,0c-1.2,0-1.7-0.7-1.3-1.9c0.9-2.8,1.9-5.5,2.7-8.3c0.4-1.2,0.9-2.2,1.9-3c0.3-0.3,0.6-0.6,0.9-1c-1.3-0.6-1-1.5-0.6-2.5c2.2-6.7,4.4-13.4,6.7-20c0-0.1,0.1-0.3,0.1-0.4c0.2-0.6,0.7-0.9,1.2-0.9c0.6,0,1,0.3,1.2,0.9c0.5,1.3,0.9,2.6,1.3,3.9c1.3,4,2.7,7.9,4,11.9C56.6,35.5,56.7,36.2,56.1,36.9z M64.9,68.5c-0.4-0.5-0.8-0.8-1.1-1.2c-1.4-1.4-2.8-2.9-4.2-4.3c-0.5-0.5-0.9-1-0.6-1.8c0.4-0.8,1.1-0.7,1.7-0.7c0.5,0,0.9,0.1,1.4,0.2c0-0.2-0.1-0.3-0.1-0.5c-0.6-1.7-1.2-3.5-1.8-5.2c-0.1-0.2-0.2-0.5-0.4-0.7c-1.3-1.4-2.7-2.8-4.1-4.2c-0.5-0.5-0.6-1.1-0.3-1.7c0.3-0.5,0.7-0.7,1.4-0.6c0.3,0,0.6,0.1,1,0.1c-0.1-0.2-0.1-0.3-0.1-0.4c-0.8-2.4-1.5-4.7-2.4-7.1c-0.2-0.7-0.7-1.3-1.1-1.8c-0.7-0.8-1.4-1.5-2.2-2.2c-0.4-0.4-0.5-0.9-0.3-1.4c0.2-0.5,0.5-0.8,1.1-0.8c0.1,0,0.2-0.1,0.4-0.1c-1.2-3.5-2.3-6.9-3.5-10.3c-0.1,0-0.1,0-0.2,0c-1.7,5.1-3.3,10.1-5,15.2c0.4,0,0.7,0,0.9-0.1c0.8-0.1,1.3,0.1,1.5,0.7c0.3,0.6,0.1,1.1-0.4,1.7c-1.2,1.3-2.5,2.5-3.7,3.8c-0.3,0.4-0.6,0.8-0.8,1.3c-0.7,2.1-1.4,4.2-2.1,6.3c-0.1,0.2-0.1,0.4-0.2,0.6c0.8-0.1,1.5-0.2,2.2-0.3c0.8-0.1,1.5,0.5,1.4,1.2c0,0.4-0.3,0.8-0.5,1.1c-1.6,1.7-3.3,3.4-5,5.2c-0.5,0.5-0.9,1.1-1.2,1.9c-0.5,1.5-1,3-1.5,4.5c-0.2,0.5-0.3,1.1-0.5,1.6C44.9,68.5,54.8,68.5,64.9,68.5z M47.4,71.2c0,1.5,0,3,0,4.5c1.6,0,3,0,4.5,0c0-1.5,0-3,0-4.5C50.4,71.2,48.9,71.2,47.4,71.2z'/%3E%3Cpath d='M8.7,40.2c-0.2,1-0.4,2.1-0.6,3.2c-0.5,3-0.6,6.1-0.5,9.2c0.3,5.4,1.6,10.6,4,15.5c0.9,1.8,1.9,3.5,2.9,5.2c0.1,0.2,0.3,0.5,0.3,0.7c0.1,0.6-0.1,1.2-0.7,1.4c-0.5,0.3-1.2,0.1-1.6-0.4c-0.6-0.8-1.1-1.7-1.6-2.6c-2.9-5-4.7-10.3-5.6-16C4.7,51,5,45.5,6.1,40.1c0.2-0.9,0.5-1.2,1.2-1.3C8.1,38.8,8.7,39.3,8.7,40.2z'/%3E%3Cpath d='M94.7,49.7c-0.1,9.3-2.5,17.5-7.4,24.9c-0.2,0.4-0.6,0.7-1,0.9c-0.4,0.2-0.9,0-1.3-0.4c-0.4-0.5-0.3-1-0.1-1.5c0.5-0.9,1.1-1.7,1.6-2.6c2.7-4.7,4.4-9.7,5.2-15.1c0.8-5.2,0.5-10.3-0.6-15.4c-0.3-1.2,0.4-1.9,1.5-1.7c0.5,0.1,0.8,0.5,0.9,1c0.4,2.2,0.7,4.4,1,6.6C94.7,47.7,94.7,48.9,94.7,49.7z'/%3E%3Cpath d='M51.6,11.1c-0.8-0.1-1.6-0.1-2.4-0.2c0.3-3.1,0.6-6.2,0.9-9.3c0.7,0.1,1.3,0.2,1.9,0.1c1.1-0.1,1.6,0.5,2,1.5c0.5,1.6,1.2,3.1,1.8,4.7c0,0.1,0.1,0.2,0.2,0.3c0.2-2,0.3-4,0.5-6c0.8,0.1,1.6,0.2,2.4,0.2c-0.3,3.1-0.6,6.2-0.9,9.3c-0.9-0.1-1.7-0.1-2.6-0.3c-0.2,0-0.4-0.3-0.5-0.6C54,8.9,53.3,7,52.5,5.1c-0.1-0.2-0.1-0.3-0.3-0.5C52,6.7,51.8,8.9,51.6,11.1z'/%3E%3Cpath d='M80.7,18.5c0.1,0.5,0.3,1,0.2,1.6c-0.2,1.5-1.6,2.4-3,2c-0.7-0.2-1.5-0.5-2.1-1c-1.1-0.9-2.2-1.9-3.3-2.8c2.1-2.4,4.1-4.7,6.1-7c1.6,1.1,3.2,2.2,4.3,3.8c1,1.4,0.4,3.1-1.1,3.4C81.5,18.5,81.1,18.5,80.7,18.5z M75.6,18.7c0.7,0.4,1.2,0.8,1.8,1c0.2,0.1,0.7-0.1,0.9-0.3c0.2-0.2,0.2-0.6,0.1-0.9c-0.2-0.7-0.8-1.1-1.4-1.5C76.7,17.5,76.2,18,75.6,18.7zM79.6,14.2c-0.4,0.5-0.8,0.9-1.2,1.4c0.5,0.3,1,0.7,1.5,1c0.3,0.2,0.8,0.2,0.9-0.2c0.1-0.3,0.1-0.7,0-0.9C80.4,15,80,14.6,79.6,14.2z'/%3E%3Cpath d='M24.2,88.5c0-2.7,2.2-5,4.8-5c2.8,0,5.5,2.4,5.5,4.9c0,2.3-1.7,5-4.8,5C27.1,93.4,24.1,91.4,24.2,88.5z M31.8,88.2c0-1.2-0.4-1.8-1.2-2.2c-0.8-0.4-1.5-0.3-2.2,0.2c-0.9,0.6-1.4,1.5-1.5,2.6c-0.1,0.9,0.2,1.7,1,2.2c0.8,0.5,1.6,0.5,2.4-0.1C31.2,90.1,31.7,89.2,31.8,88.2z'/%3E%3Cpath d='M46.8,7.2c0,2.8-2.3,4.8-5.5,4.8c-2.7,0-4.6-2.1-4.6-4.9c0-2.8,2.3-4.8,5.3-4.8C44.9,2.3,46.8,4.2,46.8,7.2z M41.6,4.4c-1,0-1.8,0.5-2.1,1.5c-0.4,1.2-0.2,2.2,0.5,3.2c0.5,0.7,1.2,1.1,2.2,0.9c0.9-0.2,1.5-0.7,1.7-1.7c0.3-1.1,0-2.2-0.7-3.1C42.9,4.6,42.4,4.3,41.6,4.4z'/%3E%3Cpath d='M11.5,29.9c1.7-0.8,3.2,0,4.8,0c-0.4,0.8-0.7,1.5-1,2.2c-0.1,0.1-0.4,0.2-0.5,0.2c-0.7-0.1-1.3-0.1-2-0.2c-1-0.2-1.6,0.3-1.8,1.3c1,0.5,2,0.9,3.1,1.4c-0.3,0.8-0.7,1.5-1.1,2.3c-2.8-1.3-5.6-2.6-8.6-3.9c0.8-1.6,1.4-3.2,2.3-4.7c0.9-1.5,2.5-1.7,3.7-0.9C11.1,28.2,11.4,29,11.5,29.9z M7.2,31.7c0.7,0.3,1.4,0.6,2.1,0.9C9.4,32,9.6,31.5,9.7,31c0.1-0.5-0.2-0.9-0.6-1.1c-0.5-0.2-0.9-0.1-1.2,0.4C7.6,30.7,7.4,31.2,7.2,31.7z'/%3E%3Cpath d='M51.1,94.8c0,1.2,0,2.3,0,3.5c-0.8,0.1-1.6,0.1-2.5,0.2c-0.1-3.1-0.3-6.2-0.4-9.3c1.8-0.2,3.6-0.5,5.3-0.3c0.9,0.1,1.6,0.5,2.1,1.3c0.6,1,0.4,2.3-0.5,3.1c-0.2,0.2-0.4,0.3-0.6,0.5c1.4,1.1,1.4,2.8,2.1,4.3c-0.9,0.1-1.7,0.1-2.5,0.1c-0.1,0-0.3-0.2-0.3-0.3c-0.2-0.6-0.4-1.1-0.6-1.7C52.7,94.9,52.4,94.7,51.1,94.8z M50.9,93c0.6-0.1,1.2-0.2,1.8-0.4c0.4-0.1,0.6-0.5,0.6-1c-0.1-0.4-0.3-0.8-0.8-0.9c-0.6-0.1-1.1,0-1.8,0C50.8,91.5,50.9,92.2,50.9,93z'/%3E%3Cpath d='M37.6,87.2c0.8,0.2,1.6,0.3,2.5,0.5c-0.2,0.9-0.4,1.7-0.5,2.6c-0.2,1-0.4,2-0.6,3c-0.2,1.1,0.4,2,1.3,2.2c0.8,0.2,1.5-0.1,1.7-0.9c0.4-1,0.6-2,0.9-3.1c0.2-0.9,0.4-1.7,0.6-2.6c0.1-0.3,0.2-0.4,0.5-0.3c0.6,0.1,1.2,0.2,1.8,0.4c0.1,0,0.3,0.3,0.2,0.4c-0.4,1.7-0.7,3.5-1.1,5.2c-0.8,2.7-2.6,3.4-5.5,2.8c-2.3-0.6-3.3-2.1-3-4.4c0.3-1.8,0.7-3.6,1-5.4C37.5,87.4,37.5,87.3,37.6,87.2z'/%3E%3Cpath d='M14.2,23c0.8-1,1.6-2,2.4-3c0.6,0.4,1.1,0.8,1.6,1.3c-0.8,1-1.5,2-2.3,3c0.4,0.3,0.8,0.7,1.3,1c0.9-1.1,1.7-2.2,2.6-3.4c0.6,0.4,1.1,0.8,1.7,1.3c-1.4,1.8-2.8,3.6-4.2,5.4c-2.5-1.9-4.9-3.8-7.4-5.8c1.4-1.7,2.7-3.5,4.1-5.3c0.6,0.4,1.1,0.8,1.7,1.3c-0.8,1.1-1.6,2.1-2.5,3.2C13.4,22.4,13.8,22.7,14.2,23z'/%3E%3Cpath d='M69.9,85.8c0.2,0.4,0.5,0.8,0.7,1.3c1.1-0.6,2.2-1.2,3.3-1.9c0.3,0.6,0.7,1.2,1,1.8c-1.1,0.6-2.2,1.3-3.3,1.9c0.3,0.5,0.5,0.9,0.8,1.4c1.2-0.7,2.4-1.4,3.7-2.1c0.4,0.6,0.7,1.2,1.1,1.8c-2,1.2-3.9,2.3-6,3.5c-1.6-2.7-3.1-5.4-4.7-8.1c1.9-1.1,3.8-2.2,5.8-3.3c0.3,0.6,0.7,1.2,1.1,1.8C72.2,84.5,71.1,85.1,69.9,85.8z'/%3E%3Cpath d='M92.2,35.3c-0.7,0.3-1.3,0.5-1.9,0.8c-0.5-1.2-1-2.3-1.5-3.5c-0.5,0.2-1,0.4-1.5,0.6c0.5,1.3,1.1,2.6,1.6,3.9c-0.6,0.3-1.2,0.5-1.9,0.8c-0.9-2.1-1.8-4.2-2.7-6.3c2.9-1.2,5.7-2.4,8.6-3.7c0.9,2,1.7,4,2.6,6.1c-0.6,0.3-1.3,0.5-1.9,0.8c-0.5-1.1-1-2.1-1.3-3.1c-0.2-0.6-0.5-0.5-0.9-0.3c-0.4,0.2-0.7,0.3-0.4,0.9C91.4,33.4,91.8,34.3,92.2,35.3z'/%3E%3Cpath d='M25.6,8.2c1.6-1,3.1-2,4.9-2.3c1.2-0.2,2.4,0.3,3,1.3c0.7,1.1,0.6,2.5-0.1,3.5c-0.6,0.8-1.4,1.3-2.3,1.7c-0.5,0.2-0.5,0.4-0.3,0.8c0.4,0.7,0.7,1.5,1.1,2.3c-0.8,0.4-1.5,0.7-2.3,1.1C28.3,13.8,27,11,25.6,8.2z M29.8,10.8c0.8-0.2,1.3-0.5,1.7-1.2c0.4-0.7-0.2-1.6-1-1.6c-0.6,0-1.2,0.3-1.7,0.7C29.1,9.4,29.4,10.1,29.8,10.8z'/%3E%3Cpath d='M69.3,6c-0.4,0.6-0.8,1.1-1.2,1.7c-0.4-0.3-0.7-0.6-1.1-0.7c-0.5-0.2-1-0.4-1.6-0.5c-0.2,0-0.6,0.1-0.6,0.3c-0.1,0.2,0,0.6,0.2,0.7c0.3,0.4,0.8,0.7,1.2,1c0.7,0.6,1.5,1.3,1.6,2.3c0.2,1.6-0.9,2.9-2.5,3c-1.9,0.1-3.5-0.6-5-1.7c-0.3-0.2-0.3-0.4-0.1-0.7c0.3-0.4,0.6-0.9,0.9-1.4c0.5,0.4,1,0.8,1.6,1.1c0.5,0.2,1,0.4,1.5,0.5c0.2,0,0.6-0.1,0.8-0.3c0.1-0.2,0-0.6-0.2-0.8c-0.4-0.4-0.8-0.7-1.2-1c-0.7-0.6-1.4-1.3-1.6-2.3c-0.2-1.4,0.9-2.8,2.4-2.9C66.2,4.1,67.8,4.8,69.3,6z'/%3E%3Cpath d='M25.5,81c-0.6,0.4-1.2,0.7-1.7,1c-0.5-0.6-0.9-1.2-1.3-1.7c-0.2-0.2-0.5-0.4-0.8-0.6c-0.2-0.1-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.4-0.1,0.6c0.3,0.7,0.6,1.3,0.9,1.9c0.3,0.7,0.5,1.5,0.4,2.2c-0.3,1.5-1.9,2.4-3.4,1.9c-2-0.6-3.2-2.1-4.2-3.9c0.6-0.4,1.2-0.8,1.8-1.2c0.2,0.3,0.3,0.7,0.5,0.9c0.5,0.6,1,1.2,1.6,1.7c0.3,0.2,0.6,0.3,0.9,0c0.3-0.3,0.2-0.6,0.1-0.9c-0.3-0.6-0.6-1.2-0.9-1.8c-0.4-0.9-0.6-1.7-0.2-2.7c0.6-1.2,1.9-1.7,3.3-1.3C23.5,78,24.6,79.3,25.5,81z'/%3E%3Cpath d='M22.9,12.6c-0.7,0.4-1.4,0.8-2,1.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.3-0.2,0.6-0.2,0.9c0.3,0.1,0.6,0.2,0.9,0.2c0.9-0.2,1.7-0.6,2.5-0.8c2.1-0.5,3.7,1.4,3.1,3.4c-0.4,1.3-1.3,2.2-2.4,2.9c-0.5,0.4-1.2,0.6-1.8,0.9c-0.3,0.1-0.5,0.1-0.6-0.3c-0.2-0.5-0.5-1-0.7-1.6c0.5-0.2,1-0.3,1.4-0.6c0.5-0.3,1.1-0.8,1.5-1.2c0.1-0.1,0.2-0.6,0.1-0.8c-0.1-0.2-0.5-0.3-0.8-0.2c-0.9,0.2-1.7,0.6-2.5,0.8c-1.8,0.4-3.3-0.8-3.2-2.6c0-0.6,0.3-1.3,0.7-1.9c0.8-1.2,1.9-1.9,3.2-2.4c0.3-0.1,0.5-0.1,0.6,0.3C22.5,11.7,22.7,12.1,22.9,12.6z'/%3E%3Cpath d='M79.8,87.4c-0.3-0.6-0.7-1.2-1-1.9c0.3-0.1,0.6-0.2,0.9-0.4c0.6-0.5,1.3-0.9,1.9-1.5c0.2-0.2,0.2-0.7,0.1-0.9c-0.1-0.2-0.6-0.2-0.8-0.1c-0.7,0.2-1.5,0.6-2.2,0.9c-1.1,0.4-2.1,0.3-2.9-0.6c-0.8-0.9-0.9-1.9-0.4-3c0.7-1.6,2.1-2.7,3.7-3.4c0.3,0.6,0.6,1.2,1,1.8c-0.5,0.3-1,0.5-1.4,0.8c-0.4,0.3-0.7,0.7-1,1c-0.1,0.2-0.1,0.5,0,0.7c0.1,0.2,0.5,0.2,0.7,0.2c0.5-0.1,0.9-0.4,1.4-0.6c0.6-0.2,1.2-0.4,1.8-0.5c1.7-0.3,3.4,1.6,2.6,3.7C83.5,85.2,81.6,86.9,79.8,87.4z'/%3E%3Cpath d='M66.6,93.2c0.3,0.6,0.6,1.1,1,1.8c-0.7,0.3-1.4,0.7-2.1,1c-1.3,0.5-2.8,0.7-4.1,0.2c-3.1-1-4.1-5.3-1.8-7.8c1.3-1.3,3.7-2.2,5.6-1.9c0,0.6,0,1.3,0,1.9c-0.6,0.1-1.3,0.1-1.9,0.3c-1,0.3-1.9,0.8-2.2,1.9c-0.6,2,1.3,4,3.3,3.4C65.1,93.8,65.8,93.5,66.6,93.2z'/%3E%3Cpath d='M83,25.7c0.8,1.1,1.6,2.2,2.3,3.3c-0.6,0.4-1.2,0.8-1.8,1.3c-1.3-1.8-2.6-3.6-3.9-5.4c2.5-1.8,5.1-3.6,7.6-5.5c0.5,0.7,1,1.4,1.5,2.1C86.9,22.9,84.9,24.2,83,25.7z'/%3E%3Cpath d='M70.6,17c-0.8-0.4-1.5-0.9-2.2-1.3c1.6-2.7,3.1-5.4,4.7-8.1c0.8,0.5,1.5,0.9,2.3,1.3C73.7,11.7,72.2,14.3,70.6,17z'/%3E%3C/g%3E%3C/svg%3E"); }
    .door-features-wrap .door-feature.pre-hung {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M36.6,5c2.9,0.6,5.8,1.1,8.7,1.7c7.5,1.4,14.9,2.8,22.4,4.2c0.9,0.2,1.4,0.7,1.4,1.6c0,0.4,0,0.9,0,1.3c0,24.2,0,48.5,0,72.7c0,2.4,0,2.5-2.4,2.9c-10.5,2-21,3.9-31.6,5.9c-4.4,0.8-8.9,1.7-13.3,2.5c-1.9,0.4-2.4,0-2.4-2c0-30.5,0-61,0-91.6c0-2,0.2-2.2,2.1-2.2c19,0,38,0,56.9,0c1.9,0,2.1,0.2,2.1,2.1c0,30.6,0,61.1,0,91.7c0,0.3,0.1,0.7-0.1,0.9c-0.3,0.4-0.8,1.1-1.2,1.1c-0.5-0.1-1.1-0.6-1.3-1.1c-0.2-0.4-0.1-1-0.1-1.5c0-29.6,0-59.1,0-88.7c0-1.9,0-1.9-1.9-1.9c-12.6,0-25.2,0-37.9,0c-0.5,0-1.1,0-1.6,0C36.6,4.7,36.6,4.8,36.6,5z M22,94.9c0.5-0.1,0.9-0.1,1.4-0.2c6.8-1.3,13.6-2.5,20.4-3.8c7.1-1.3,14.2-2.7,21.3-4c0.9-0.2,1.3-0.4,1.3-1.5c0-23.7,0-47.3,0-71c0-1-0.4-1.3-1.2-1.5c-1.5-0.3-3-0.5-4.5-0.8c-9.1-1.7-18.2-3.4-27.3-5.1C29.7,6.4,25.9,5.7,22,5C22,35,22,64.9,22,94.9z'/%3E%3Cpath d='M62.5,51.2c0,0.8,0,1.6,0,2.5c0,0.8-0.4,1.3-1.3,1.3c-0.8,0-1.3-0.5-1.3-1.3c0-1.7-0.1-3.4,0.1-5.1c0-0.5,0.7-1.1,1.2-1.2c0.8-0.2,1.3,0.4,1.3,1.2C62.6,49.5,62.5,50.4,62.5,51.2C62.5,51.2,62.5,51.2,62.5,51.2z'/%3E%3C/g%3E%3C/svg%3E"); }
    .door-features-wrap .door-feature.tempered-glass {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M98.1,49.9c0,10,0,19.9,0,29.9c0,3.9,0,7.9,0,11.8c0,3.6-2.2,6.1-5.7,6.5c-1.1,0.1-2.3,0.1-3.4,0.1c-20.7,0-41.3,0-62,0c-6.2,0-12.3,0-18.5,0c-3.7,0-6.5-2.8-6.5-6.5c0-0.1,0-0.1,0-0.2c0-27.5,0-55,0-82.4c0-1,0.2-2,0.4-3C3,3.6,5.4,1.8,8.1,1.8c20.4,0,40.7,0,61.1,0c7.5,0,15,0,22.4,0c2.9,0,5,1.3,6.1,4C98,6.5,98.1,7.3,98.1,8C98.1,22,98.1,35.9,98.1,49.9C98.1,49.9,98.1,49.9,98.1,49.9z M50,4.2c-0.2,0-0.4,0-0.6,0c-13.5,0-27.1,0-40.6,0c-0.2,0-0.4,0-0.6,0C6.3,4.2,4.8,5.4,4.4,7.3C4.2,7.8,4.2,8.4,4.2,9c0,27.2,0,54.3,0,81.5c0,0.5,0,1.1,0.1,1.6c0.3,1.9,1.3,3,3.2,3.5c0.6,0.1,1.2,0.2,1.8,0.2c27.3,0,54.5,0,81.8,0c0.2,0,0.4,0,0.6,0c2.2-0.2,4.2-1.5,4.2-4.2c0-1.8,0-3.6,0-5.4c0-25.3,0-50.6,0-75.9c0-0.4,0-0.8,0.1-1.3c0.2-3.2-1.9-4.9-4.4-4.9c-8,0.1-15.9,0-23.9,0C61.7,4.2,55.9,4.2,50,4.2z'/%3E%3Cpath d='M50,88.5c-11.8,0-23.6,0-35.4,0c-0.4,0-0.7,0-1.1,0c-1.3-0.2-2-1-2.1-2.3c0-0.2,0-0.5,0-0.7c0-11.6,0-23.3,0-34.9c0-12,0-24.1,0-36.1c0-0.3,0-0.6,0.1-0.9c0.3-1.4,1.3-2.2,3-2.2c3,0,6,0,8.9,0c20.7,0,41.3,0,62,0c0.4,0,0.9,0.1,1.3,0.2c1.2,0.4,1.9,1.3,1.9,2.6c0,0.1,0,0.2,0,0.3c0,23.6,0,47.3,0,70.9c0,0.4,0,0.8-0.1,1.2c-0.2,1.2-1.1,1.9-2.4,2c-0.3,0-0.5,0-0.8,0C73.6,88.5,61.8,88.5,50,88.5z M31.3,86.2c5.5,0,11.1,0,16.6,0c0.8,0,0.9-0.1,0.9-0.9c0-3.2,0-6.3,0-9.5c0-0.6-0.2-1-0.7-1.3c-3.1-2.2-6-4.6-8.4-7.5c-2.5-3-4.7-6.1-6.3-9.6c-0.8-1.8-1.5-3.6-2.2-5.4c-0.2-0.6-0.6-0.9-1.2-0.9c-5.2,0-10.3,0-15.5,0c-0.7,0-0.8,0.1-0.8,0.8c0,11.1,0,22.2,0,33.3c0,0.9,0.1,1,1,1C20.3,86.2,25.8,86.2,31.3,86.2z M68.7,86.2c5.6,0,11.1,0,16.7,0c0.9,0,0.9,0,0.9-1c0-11.1,0-22.1,0-33.2c0-0.9,0-0.9-0.9-0.9c-3.3,0-6.5,0-9.8,0c-1.8,0-3.6,0-5.4,0c-0.9,0-1.1,0.1-1.4,0.9c-1,2.9-2.2,5.6-3.8,8.2c-2.6,4.3-5.5,8.3-9.5,11.5c-1.2,1-2.4,1.9-3.7,2.8c-0.6,0.4-0.9,0.8-0.9,1.4c0,3.2,0,6.3,0,9.5c0,0.8,0,0.8,0.8,0.8C57.5,86.2,63.1,86.2,68.7,86.2z M31.5,13.6c-5.6,0-11.1,0-16.7,0c-0.8,0-1,0.2-1,1c0,0.1,0,0.3,0,0.4c0,10.8,0,21.7,0,32.5c0,1.3,0.1,1.4,1.4,1.4c4.6,0,9.2,0,13.9,0c0.2,0,0.4,0,0.5,0c0.4,0,0.6-0.2,0.5-0.7c0-0.1-0.1-0.3-0.1-0.4c-0.4-2.3-0.9-4.6-1.2-6.9c-0.2-1.2-0.1-2.5,0-3.8c0-1.9,0.1-3.7,0.1-5.6c0-0.9,0.6-1.4,1.5-1.5c0.4,0,0.8,0,1.2,0c3.2,0,6.2-0.5,9.2-1.6c2.5-0.9,4.9-2,7.3-3.1c0.6-0.3,0.9-0.7,0.9-1.3c0-3.2,0-6.4,0-9.6c0-0.8-0.1-0.8-0.8-0.8C42.5,13.6,37,13.6,31.5,13.6z M70,48.8c0.5,0,1,0.1,1.5,0.1c3.6,0,7.3,0,10.9,0c1,0,2,0,3,0c0.9,0,1-0.2,1-1c0-11.1,0-22.2,0-33.2c0-0.9-0.1-1-1-1c-11.1,0-22.1,0-33.2,0c-0.9,0-1.1,0.1-1.1,1c0,3.2,0,6.3,0,9.5c0,0.5,0.2,0.9,0.7,1.1c5.7,2.8,11.5,5,18,4.9c0.8,0,1.3,0.4,1.4,1.3c0.1,0.8,0.2,1.7,0.2,2.5c0,1.6,0,3.2,0,4.9c0,2-0.1,4-0.6,6C70.5,46.1,70.3,47.4,70,48.8z M69.3,36.4c-0.1-0.8-0.1-2-0.2-3.1c-0.1-0.9-0.2-0.9-1.1-0.9c-1.9-0.1-3.8-0.2-5.7-0.7c-4-1.2-7.9-2.3-11.6-4.4c-0.4-0.3-0.9-0.2-1.3,0c-2.7,1.3-5.5,2.6-8.4,3.5c-2.8,0.9-5.8,1.3-8.7,1.6c-1.2,0.1-1.4,0.2-1.4,1.2c0,3.8-0.1,7.5,0.7,11.3c1.2,6,3.5,11.6,6.8,16.7c2.9,4.4,6.4,8.1,10.9,11c0.7,0.5,0.9,0.4,1.5-0.1c0.2-0.2,0.4-0.3,0.7-0.5c2.5-1.9,4.9-3.8,6.9-6.2C65.5,57.3,69,47.6,69.3,36.4z'/%3E%3Cpath d='M50.1,59.9c-2.2,0-4.4,0-6.6,0c-1.1,0-2.1-0.2-2.9-1c-0.5-0.5-0.8-1.2-0.8-1.9c0-3.9,0.1-7.8,0-11.7c0-1.5,1.1-3,2.6-3.2c0.5-0.1,0.6-0.3,0.6-0.8c0-1.2,0-2.3,0.1-3.5c0.3-2.4,2.3-4.2,4.7-4.2c1.4,0,2.9,0,4.3,0c2.9-0.1,4.8,2.7,4.9,4.7c0,1,0,2,0,3c0,0.4,0.1,0.6,0.6,0.7c1.9,0.5,2.7,1.5,2.7,3.4c0,3.8,0,7.6,0,11.5c0,1.4-0.8,2.4-2.2,2.7c-1,0.2-2,0.2-3,0.3C53.4,60,51.8,59.9,50.1,59.9z M50,44.4c-1,0-2.1,0-3.1,0c-1.2,0-2.5,0-3.7,0c-0.8,0-1.1,0.3-1.1,1c0,0.5,0,0.9,0,1.4c0,3.2,0,6.5,0,9.7c0,0.7,0.2,1,0.9,1.1c0.2,0,0.5,0.1,0.7,0.1c4.3,0,8.5,0,12.8,0c1.1,0,1.5-0.4,1.5-1.5c0-3.5,0-6.9,0-10.4c0-1.1-0.3-1.4-1.4-1.4C54.4,44.4,52.2,44.4,50,44.4z M50,42.1C50,42.1,50,42.1,50,42.1c1.4,0,2.7,0,4.1,0c0.5,0,0.7-0.2,0.7-0.7c0-0.8,0.1-1.6,0-2.4c-0.1-1.9-1.4-3.1-3.3-3.1c-1.2,0-2.4,0.1-3.6,0.1c-1.4,0-2.6,1.2-2.6,2.6c0,1,0,1.9,0,2.9c0,0.4,0.2,0.6,0.6,0.6C47.3,42.1,48.7,42.1,50,42.1z'/%3E%3Cpath d='M51.1,51c0,0.7,0,1.3,0,2c0,0.7-0.3,0.9-0.9,0.9c-0.8,0-1.3-0.3-1.3-0.9c0-1.4,0-2.7,0-4.1c0-0.5,0.7-1.1,1.2-1.1c0.6,0,1,0.5,1,1.2c0,0,0,0,0,0.1C51.1,49.8,51.1,50.4,51.1,51C51.1,51,51.1,51,51.1,51z'/%3E%3C/g%3E%3C/svg%3E"); }
    .door-features-wrap .door-feature.unfinished {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M39.8,45.1c0-0.4,0-0.8,0-1.1c0-0.7,0-1.4,0-2.1c0-0.2,0-0.5,0.2-0.7c0.1-0.2,0.3-0.2,0.5-0.3c0.1,0,0.3,0,0.4,0c17.2,0,34.3,0,51.5,0c0.1,0,0.2,0,0.4,0c0.4,0,0.8,0.3,0.8,0.8c0,1,0,2,0,2.9c0,0.1,0,0.3,0,0.4c0.1,0,0.3,0,0.4,0c0.8,0,1.6,0,2.4,0c0.6,0,0.9,0.2,0.9,0.8c0.1,0.6,0.1,1.3,0.1,1.9c0,1,0,2,0,3c0,0.8-0.1,1.6-0.2,2.4c-0.2,1.6-0.5,3.3-0.9,4.9c-0.6,2.2-1.4,4.3-2.6,6.3c-0.1,0.2-0.1,0.3-0.1,0.5c0,1,0,2,0,3c0,9.5,0,18.9,0,28.4c0,0.1,0,0.2,0,0.4c0,0.4-0.3,0.7-0.7,0.8c-0.1,0-0.2,0-0.3,0c-17.2,0-34.4,0-51.6,0c-0.1,0-0.2,0-0.3,0c-0.5,0-0.8-0.3-0.8-0.8c0-0.1,0-0.3,0-0.4c0-10.5,0-20.9,0-31.4c0-0.3-0.1-0.5-0.2-0.8c-1.4-2.5-2.3-5.2-2.8-8c-0.4-2-0.6-3.9-0.7-5.9c0-1.3,0-2.6,0.1-3.8c0-0.1,0-0.3,0.1-0.4c0.1-0.5,0.4-0.8,0.8-0.8c0.8,0,1.5,0,2.3,0C39.6,45.1,39.7,45.1,39.8,45.1z M41.5,42.6c0,0.1,0,0.2,0,0.4c0,6.9,0,13.9,0,20.8c0,0.2,0,0.4,0.1,0.5c1.6,2.6,3.6,4.8,6.1,6.6c2.3,1.6,4.8,2.8,7.5,3.6c2.3,0.7,4.6,1.1,7,1.3c1.6,0.2,3.3,0.2,4.9,0.2c0.8,0,1.6,0,2.4-0.1c1.4-0.1,2.9-0.2,4.3-0.4c2-0.3,4.1-0.8,6-1.5c3.5-1.2,6.6-3.1,9.1-5.8c1.1-1.1,2-2.4,2.9-3.7C92,64.3,92,64.1,92,64c0-7,0-14,0-21c0-0.1,0-0.2,0-0.3c-7.1,0-14.2,0-21.3,0c0,0.1,0,0.3,0,0.4c0,1.3,0,2.7,0,4c0,2,0,3.9,0,5.9c0,1.2-0.5,2.2-1.4,3c-1.3,1.1-2.7,1.2-4.3,0.5c-0.1,0-0.2-0.1-0.3-0.1c0,0.2,0,0.3,0,0.4c0,2.8,0,5.6,0,8.4c0,0.3,0,0.5-0.1,0.8c-0.4,1.9-2.2,3.5-4.5,3.1c-2-0.3-3.3-1.9-3.3-4c0-1.4,0-2.7,0-4.1c0-0.1,0-0.2,0-0.4c-0.1,0.1-0.2,0.1-0.3,0.1c-0.5,0.3-1.1,0.4-1.7,0.4c-1.3,0-2.4-0.5-3.2-1.6c-0.5-0.7-0.8-1.5-0.8-2.4c0-1.7,0-3.4,0-5.2c0-0.1,0-0.2,0-0.4c-0.1,0.1-0.2,0.1-0.3,0.1C49.8,52,49,52.1,48.2,52c-1.9-0.2-3.4-1.9-3.4-3.8c0-1.7,0-3.4,0-5.2c0-0.1,0-0.3,0-0.4C43.7,42.6,42.6,42.6,41.5,42.6z M41.5,95.9c0.5,0.1,50.3,0,50.5,0c0,0,0-0.1,0-0.1c0-9.4,0-18.9,0-28.3c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c-0.1,0.1-0.1,0.1-0.2,0.2c-0.9,1.1-1.8,2.1-2.8,3c-1.8,1.6-3.8,2.9-6,3.9c-2.5,1.2-5.2,2-7.9,2.5c-1.4,0.3-2.8,0.4-4.2,0.5c-1.1,0.1-2.2,0.1-3.3,0.2c-0.7,0-1.3,0-2,0c-1.4,0-2.8-0.1-4.2-0.3c-1.5-0.2-2.9-0.4-4.4-0.7c-2.8-0.6-5.4-1.6-7.9-2.9c-1.9-1-3.6-2.3-5.1-3.8c-0.8-0.8-1.5-1.6-2.2-2.5c-0.1-0.1-0.1-0.2-0.2-0.2C41.5,76.7,41.5,86.3,41.5,95.9z M46.4,42.6c0,0.1,0,0.2,0,0.3c0,1.7,0,3.4,0,5.2c0,0.9,0.6,1.8,1.4,2.1c0.9,0.4,1.9,0.2,2.5-0.5c0.2-0.2,0.4-0.5,0.5-0.7c0.2-0.3,0.5-0.4,0.8-0.4c0.3,0,0.5,0.2,0.6,0.5c0,0.1,0,0.3,0,0.4c0,2.5,0,4.9,0,7.4c0,0.3,0,0.6,0.1,0.8c0.3,0.9,1.1,1.6,2,1.7c1,0.1,1.8-0.3,2.3-1.2c0.1-0.1,0.2-0.3,0.3-0.4c0.2-0.2,0.5-0.3,0.8-0.1c0.3,0.1,0.5,0.3,0.5,0.7c0,0.1,0,0.2,0,0.4c0,2,0,4.1,0,6.1c0,0.2,0,0.4,0,0.6c0.2,1.3,1.4,2.3,2.8,2c1.1-0.2,1.9-1.2,1.9-2.4c0-3.5,0-7,0-10.6c0-0.1,0-0.2,0-0.3c0-0.6,0.6-0.9,1.2-0.7c0.2,0.1,0.3,0.2,0.4,0.4c0.6,1,1.6,1.5,2.7,1.2c1.1-0.3,1.8-1.3,1.8-2.3c0-3.3,0-6.5,0-9.8c0-0.1,0-0.2,0-0.4C61.5,42.6,54,42.6,46.4,42.6z M95.8,46.7c-0.2,0-0.3,0-0.4,0c-0.5,0-0.9,0-1.4,0c-0.5,0-0.5,0-0.5,0.5c0,4.4,0,8.8,0,13.3c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c1.3-3.1,2-6.3,2.2-9.7C95.9,49.7,96,48.2,95.8,46.7z M37.8,46.8c-0.3,2.5-0.1,6.9,0.9,10.8c0.4,1.3,0.8,2.7,1,2.9c0-4.6,0-9.2,0-13.8C39.2,46.7,38.5,46.7,37.8,46.8z'/%3E%3Cpath d='M39.7,5.1c0.4,0,0.8-0.1,1.1-0.1c0.2,0,0.5,0,0.7,0c0.7,0,1.2,0.7,0.9,1.4c-0.1,0.1-0.1,0.3-0.2,0.4c0.1,0,0.2,0,0.3,0c0.3,0,0.6,0,1,0c0.8,0,1.2,0.8,1,1.3c-0.1,0.4-0.2,0.8-0.3,1.1c0,0.1-0.1,0.2-0.1,0.4c0.1,0,0.2,0,0.3-0.1c0.5-0.2,1-0.3,1.5-0.5c0.2,0,0.3-0.1,0.5-0.1c0.7,0,1.2,0.6,1,1.3c-0.1,0.4-0.2,0.8-0.4,1.2c0,0.1,0,0.1-0.1,0.2c0.1,0,0.3,0,0.4,0c0.6,0,1.1,0,1.7,0c0.5,0,0.9,0.3,1,0.8c0,0.1,0,0.3,0,0.4c0,0.1,0,0.2-0.1,0.3c0.3,0,0.6,0,0.8,0c0.8-0.1,1.4,0.6,1.2,1.3c0,0,0,0.1,0,0.2c0.1,0,0.2,0,0.2-0.1c0.4-0.1,0.8-0.1,1.1,0.2c0.3,0.3,0.4,0.7,0.3,1.1c-0.1,0.4-0.2,0.8-0.3,1.2c0,0.1,0,0.2-0.1,0.4c0.4-0.1,0.7-0.2,1-0.2c0.2,0,0.4-0.1,0.6-0.1c0.7-0.1,1.4,0.5,1.2,1.2c0,0.2-0.1,0.4-0.2,0.6c0.2,0,0.3,0,0.4,0c0.8,0,1.3,0.7,1,1.4c-0.1,0.2-0.2,0.3-0.4,0.5c-0.8,0.7-1.6,1.5-2.4,2.2c-1.3,1.2-2.6,2.3-3.9,3.5c-1.4,1.3-2.8,2.6-4.3,3.9c-1.4,1.2-2.7,2.5-4,3.8c-0.7,0.7-1.4,1.4-2.1,2.1c-0.3,0.3-0.6,0.3-1,0.2c-0.8-0.4-1.6-0.6-2.4-0.9c-0.7-0.2-1.5-0.3-2.3-0.3c-1.5,0-3,0.3-4.3,1c-1.4,0.7-2.6,1.5-3.7,2.6c-1.8,1.7-3.6,3.4-5.1,5.3c-0.7,0.9-1.4,1.9-2.1,2.9c-0.8,1.1-1.6,2.1-2.5,3c-0.8,0.8-1.7,1.4-2.6,2c-1.8,1.1-3.7,2-5.7,2.8c-1.5,0.6-3.1,1.2-4.6,1.7c-0.2,0.1-0.4,0.1-0.6,0.1c-0.3-0.1-0.6-0.4-0.6-0.7c0-0.2,0-0.3,0.1-0.5c0.7-2.2,1.6-4.4,2.6-6.6c0.6-1.3,1.2-2.5,2-3.7c1-1.6,2.2-2.9,3.7-4c0.9-0.6,1.7-1.3,2.6-1.9c1.5-1,2.8-2.1,4.1-3.3c0.7-0.6,1.4-1.3,2-2c1.1-1.1,2.2-2.4,3-3.7c0.7-1.1,1.2-2.3,1.4-3.5c0.3-1.5,0.2-2.9-0.3-4.3c-0.2-0.6-0.4-1.2-0.6-1.8c0-0.1-0.1-0.1-0.1-0.2c-0.3-0.5-0.2-0.8,0.1-1.2c0.6-0.6,1.1-1.1,1.7-1.7c0.3-0.3,0.7-0.7,1-1c1.4-1.3,2.5-2.7,3.7-4.1c2.8-3.2,5.5-6.4,8.3-9.7c0.2-0.3,0.5-0.5,0.9-0.5c0.6,0,1,0.4,1,1c0,0.3,0,0.7,0,1C39.8,4.7,39.8,4.9,39.7,5.1z M36.5,34c-0.1-0.1-0.1-0.2-0.2-0.2c-0.2-0.2-0.4-0.4-0.6-0.5c-1.6-1.6-3.2-3.2-4.8-4.8c-1.3-1.3-2.6-2.6-3.9-3.9c-0.4-0.4-0.8-0.8-1.2-1.2c-0.1-0.1-0.1-0.1-0.2-0.2c0,0.1,0,0.2,0,0.3c0,0.5,0.1,0.9,0.1,1.4c0.1,1.8-0.4,3.6-1.2,5.3c-0.9,1.8-2.1,3.3-3.4,4.7c-0.9,0.9-1.8,1.7-2.6,2.6c-1.1,1.1-2.3,2.1-3.6,3C14,41,13,41.7,12.1,42.3c-1.4,1.1-2.7,2.3-3.6,3.9c-0.6,1-1.1,1.9-1.6,2.9c-0.8,1.7-1.5,3.5-2.2,5.3c0,0.1,0,0.2-0.1,0.3c0.6-0.2,1.2-0.4,1.8-0.7c2.2-0.8,4.3-1.7,6.3-2.9c1.1-0.6,2.1-1.3,3-2.2c0.8-0.8,1.5-1.7,2.2-2.6c0.8-1.1,1.6-2.3,2.5-3.3c1.2-1.5,2.6-2.9,3.9-4.2c0.7-0.7,1.4-1.3,2.1-1.9c2-1.6,4.3-2.8,6.9-3c0.7-0.1,1.5,0,2.2,0C35.8,33.8,36.1,33.9,36.5,34z M38.1,5.3C38.1,5.3,38.1,5.3,38.1,5.3c-0.5,0.5-0.9,0.9-1.3,1.4c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.7,0.1,1.4,0.2,2.1c0.2,1.6,0.3,3.2,0.6,4.8c0.3,1.4,0.6,2.8,1,4.2c0.3,0.7,0.6,1.4,1,2c0.4,0.5,0.8,0.8,1.4,0.6c0,0,0.1,0,0.1,0c0.9-0.1,1.6-0.6,1.8-1.5c0-0.1,0-0.3,0.1-0.4c0.1-0.4,0.5-0.7,0.9-0.6c0.4,0.1,0.7,0.4,0.7,0.9c-0.1,0.8-0.1,1.7-0.1,2.5c0,0.8,0.1,1.5,0.3,2.3c0.2,0.8,0.4,1.6,0.9,2.2c0.4,0.5,0.9,0.9,1.6,1c0.2,0,0.3,0,0.4-0.1c0.3-0.2,0.5-0.5,0.8-0.7c1.9-1.7,3.8-3.4,5.7-5.1c0.2-0.2,0.3-0.3,0.5-0.5c-0.8-0.3-0.9-0.9-0.7-1.6c-0.1,0-0.1,0-0.2,0c-0.4,0.1-0.9,0.2-1.3,0.3c-0.6,0.1-1.2-0.3-1.2-1c0-0.2,0.1-0.4,0.1-0.6c0.1-0.2,0.1-0.5,0.2-0.7c-0.1,0-0.2,0-0.3,0.1c-0.5,0.1-1-0.1-1.2-0.6c-0.1-0.2-0.1-0.5,0-0.7c0.1-0.3,0.1-0.5,0.2-0.8c-0.2,0-0.3,0-0.5,0c-0.3,0-0.5,0-0.8,0.1c-0.6,0.1-1.3-0.6-1-1.4c0-0.1,0.1-0.2,0.1-0.3c-0.1,0-0.2,0-0.3,0c-0.5,0-1,0-1.5,0c-0.6,0-1.2-0.6-1-1.4c0.1-0.3,0.2-0.5,0.2-0.8c0-0.1,0-0.2,0.1-0.3c-0.1,0-0.2,0.1-0.3,0.1c-0.5,0.2-1.1,0.3-1.6,0.5c-0.6,0.2-1.2-0.2-1.3-0.8c0-0.2,0-0.4,0.1-0.7c0.1-0.5,0.3-0.9,0.4-1.4c0-0.1,0-0.1,0-0.2c-0.2,0-0.3,0-0.5,0c-0.3,0-0.6,0-0.9,0c-1,0-1.3-0.9-1-1.5c0-0.1,0.1-0.2,0.1-0.3c-0.1,0-0.1,0-0.2,0c-0.4,0-0.7,0.1-1.1,0.1c-0.7,0-1.1-0.4-1.1-1.1C38.1,5.6,38.1,5.4,38.1,5.3z M27.8,17.1c-1,1-2,2-3,3c0.1,0.1,0.2,0.2,0.3,0.3c1.2,1.1,2.3,2.3,3.5,3.4c1.2,1.2,2.5,2.5,3.7,3.7c1.7,1.7,3.3,3.3,5,5c0.6,0.6,1.1,1.1,1.7,1.7c0.2,0.2,0.4,0.4,0.6,0.5c1-1,2-2,3-3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.6-0.6-1.2-1.2-1.8-1.7c-1.2-1.2-2.4-2.4-3.6-3.6c-1.6-1.6-3.3-3.2-4.9-4.9c-1.3-1.3-2.7-2.6-4-3.9C28,17.3,27.9,17.2,27.8,17.1z M46.1,28.5c-0.1-0.1-0.1-0.1-0.1-0.1c-0.9-0.5-1.5-1.2-2-2.1c-0.6-1.3-0.9-2.6-1-4c0-0.1,0-0.2,0-0.4c-0.1,0.1-0.2,0.1-0.3,0.1c-0.7,0.3-1.4,0.4-2.2,0.4c-0.8,0-1.4-0.5-1.9-1.1c-0.5-0.6-0.9-1.3-1.2-2.1c0-0.1-0.1-0.2-0.2-0.4c-0.8,0.9-1.6,1.7-2.5,2.7c0.1,0.1,0.3,0.2,0.3,0.2c0.8,0.8,1.6,1.6,2.4,2.4c1.6,1.6,3.1,3.1,4.7,4.7c0.5,0.5,0.9,0.9,1.4,1.4c0.1,0.1,0.2,0.2,0.3,0.2C44.5,29.9,45.3,29.2,46.1,28.5z M30.9,17.8c0.1-0.1,0.2-0.2,0.2-0.2c1.4-1.7,2.9-3.4,4.3-5.1c0.1-0.1,0.2-0.3,0.1-0.5c-0.1-1-0.2-2-0.3-3c0-0.1,0-0.2-0.1-0.4c-2.1,2.5-4.2,4.9-6.2,7.2C29.6,16.5,30.2,17.2,30.9,17.8z M32.1,18.9c0.5,0.5,0.9,1,1.4,1.6c0.1-0.1,0.2-0.2,0.2-0.2c0.9-1,1.8-1.9,2.6-2.9c0.1-0.1,0.1-0.2,0.1-0.4c-0.2-0.6-0.3-1.2-0.4-1.8c0-0.2-0.1-0.4-0.1-0.7C35.7,14.6,32.3,18.6,32.1,18.9z'/%3E%3Cpath d='M56.3,34.4c0,1.9-1.4,3.1-2.8,3.3c-1.7,0.2-3.2-1-3.5-2.6c-0.1-0.5,0-1,0.1-1.6c0.3-1,0.7-1.9,1.2-2.8c0.3-0.6,0.6-1.3,1-1.9c0-0.1,0.1-0.2,0.2-0.3c0.3-0.5,1-0.5,1.4,0c0.2,0.4,0.4,0.8,0.6,1.2c0.6,1.2,1.2,2.4,1.6,3.7C56.2,33.8,56.2,34.2,56.3,34.4z M53.1,30.7c-0.1,0.1-0.1,0.1-0.1,0.2c-0.2,0.5-0.5,0.9-0.7,1.4c-0.3,0.6-0.6,1.3-0.7,1.9c0,0.1,0,0.3,0,0.4c0,0.6,0.5,1.2,1.1,1.4c0.6,0.2,1.3-0.1,1.7-0.6c0.3-0.5,0.4-1,0.2-1.5c-0.4-1.1-0.9-2.1-1.4-3.2C53.2,30.8,53.2,30.8,53.1,30.7z'/%3E%3Cpath d='M11.2,50.6c-1.4,0-2.4-1.1-2.5-2.4c0-1.4,1.1-2.5,2.4-2.5c1.3,0,2.5,1,2.4,2.4C13.7,49.8,12.4,50.6,11.2,50.6z M12.1,48.2c0-0.4-0.4-0.8-0.8-0.8c-0.5,0-0.9,0.4-0.9,0.9c0,0.4,0.4,0.8,0.9,0.8C11.7,49,12.1,48.6,12.1,48.2z'/%3E%3C/g%3E%3C/svg%3E"); }
    .door-features-wrap .door-feature.double-doors {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M98.4,51.2c0,15.4,0,30.7,0,46.1c0,0.5-0.4,1.1-0.8,1.2c-0.5,0.1-0.9-0.1-1.1-0.5c-0.1-0.1-0.1-0.3-0.1-0.5c0-0.2,0-0.5,0-0.8c0-30.2,0-60.5,0-90.7c0-0.3,0-0.7-0.1-1c-0.1-0.7-0.6-1.1-1.3-1.3c-0.3-0.1-0.7-0.1-1-0.1c-29.3,0-58.7,0-88,0c-0.3,0-0.7,0-1,0.1C4.2,3.9,3.8,4.5,3.7,5.2c0,0.2,0,0.5,0,0.7c0,30.2,0,60.5,0,90.7c0,0.3,0,0.7-0.1,1c-0.1,0.6-0.6,1-1.2,0.9C2,98.4,1.6,98,1.6,97.4c0-0.2,0-0.3,0-0.5c0-30.4,0-60.8,0-91.3c0-2.5,1.6-4.1,4.1-4.1c29.6,0,59.3,0,88.9,0c2.2,0,3.9,1.7,3.9,3.9C98.4,20.7,98.4,35.9,98.4,51.2z'/%3E%3Cpath d='M8.4,53.1c0-13.9,0-27.7,0-41.6c0-0.3,0-0.7,0-1c0.2-1.4,1.6-2.1,2.9-1.6c2.1,0.8,4.2,1.7,6.3,2.6c6.9,2.9,13.8,5.7,20.7,8.6c1.8,0.7,2.6,2.1,2.6,4c0,19.3,0,38.6,0,57.9c0,2.1-0.8,3.3-2.7,4.1c-8.9,3.7-17.8,7.3-26.6,11.1c-1.8,0.7-3.3-0.4-3.3-2.2C8.4,81,8.4,67.1,8.4,53.1z M10.6,10.9c0,28.2,0,56.3,0,84.4c0.3-0.1,0.5-0.2,0.7-0.2c8.6-3.6,17.3-7.1,25.9-10.7c1.4-0.6,1.7-1,1.7-2.5c0-3.2,0-6.3,0-9.5c0-11.2,0-22.4,0-33.5c0-4.8,0-9.6,0-14.4c0-1.5-0.3-1.9-1.7-2.5c-7.4-3.1-14.8-6.1-22.2-9.2C13.5,12.1,12.1,11.5,10.6,10.9z'/%3E%3Cpath d='M91.8,53.1c0,13.9,0,27.9,0,41.8c0,1.3-0.5,2.1-1.6,2.4c-0.6,0.2-1.2,0-1.8-0.3c-3.7-1.7-7.5-3.5-11.2-5.2c-4-1.9-8-3.8-12.1-5.6c-1.7-0.8-2.5-2.1-2.5-4c0-0.1,0-0.2,0-0.3c0-19.2,0-38.4,0-57.6c0-0.5,0-1,0.1-1.5c0.2-1.2,1-2.1,2.1-2.6c2.7-1.3,5.4-2.5,8.1-3.8c5.2-2.4,10.3-4.8,15.5-7.2c1.7-0.8,3.4,0.2,3.4,2.2C91.8,25.2,91.8,39.1,91.8,53.1z M89.7,11c-0.3,0.1-0.5,0.2-0.7,0.3c-7.5,3.5-15,7-22.6,10.5c-1.2,0.5-1.6,1.3-1.6,2.5c0,19.2,0,38.4,0,57.6c0,1.2,0.4,1.9,1.6,2.5c6.5,3,13.1,6.1,19.6,9.1c1.2,0.6,2.4,1.1,3.7,1.7C89.7,67.1,89.7,39.1,89.7,11z'/%3E%3Cpath d='M4.8,26.4c0-0.7,0-1.3,0-2c0-0.7,0.4-1.1,1-1.1c0.6,0,1,0.4,1.1,1.1c0,1.3,0,2.7,0,4c0,0.6-0.5,1.1-1.1,1.1c-0.6,0-1-0.5-1-1.1C4.8,27.7,4.8,27,4.8,26.4z'/%3E%3Cpath d='M6.9,78.3c0,0.6,0,1.3,0,1.9c0,0.7-0.4,1.1-1.1,1.1c-0.6,0-1-0.5-1-1.2c0-1.3,0-2.6,0-3.8c0-0.7,0.4-1.1,1-1.1c0.7,0,1.1,0.4,1.1,1.2C6.9,77,6.9,77.6,6.9,78.3z'/%3E%3Cpath d='M94.9,78.3c0,0.7,0,1.3,0,2c0,0.7-0.4,1.1-1,1.1c-0.5,0-1-0.4-1.1-1.1c0-0.6,0-1.2,0-1.8c0-0.7,0-1.4,0-2.1c0-0.7,0.4-1.2,1.1-1.2c0.7,0,1,0.4,1,1.2C94.9,77,94.9,77.6,94.9,78.3z'/%3E%3Cpath d='M94.9,26.4c0,0.7,0,1.4,0,2c0,0.6-0.4,1-0.9,1c-0.6,0-1.1-0.3-1.1-0.9c-0.1-1.4-0.1-2.8,0-4.2c0-0.7,0.5-1,1.1-1c0.6,0.1,0.9,0.4,0.9,1.1C94.9,25.1,94.9,25.7,94.9,26.4z'/%3E%3Cpath d='M31.6,51.3c0.6,0,1.1,0,1.7,0c0.6,0,1,0.4,1.1,1c0,0.6-0.4,1.1-1,1.1c-1.2,0-2.4,0-3.5,0c-0.7,0-1.1-0.5-1-1.1c0-0.6,0.4-1,1.2-1C30.5,51.3,31,51.3,31.6,51.3z'/%3E%3Cpath d='M72.6,51.3c0.6,0,1.1,0,1.7,0c0.6,0,1,0.4,1.1,1c0,0.6-0.4,1.1-1,1.1c-1.2,0-2.4,0-3.5,0c-0.6,0-1.1-0.6-1-1.1c0-0.6,0.5-1,1.1-1C71.5,51.3,72.1,51.3,72.6,51.3z'/%3E%3C/g%3E%3C/svg%3E"); }
    .door-features-wrap .door-feature.quaity-construction {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23616161'%3E%3Cg%3E%3Cpath d='M78.3,78.3c-0.1,0.3-0.2,0.5-0.2,0.8c-0.1,1-0.2,2.1-0.3,3.1c-0.1,1.8-0.3,3.6-0.4,5.4c-0.2,2.8-0.5,5.6-0.8,8.4c0,0.4-0.1,0.8-0.1,1.2c0,0.4-0.6,1.1-1,1.1c-0.5,0-1-0.2-1.2-0.7c-0.5-0.8-1-1.6-1.5-2.4c-4.1-6.6-8.2-13.2-12.3-19.8c-1.6-2.5-3.1-5.1-4.7-7.6c-0.3-0.5-0.4-0.5-0.8,0c-1.2,1.3-2.3,2.7-3.5,4c-0.2,0.2-0.3,0.3-0.5,0.5c-0.6,0.8-1.5,0.8-2.1,0.1c-1.4-1.6-2.7-3.2-4.1-4.7c-0.1-0.1-0.1-0.1-0.3-0.2c-0.2,0.3-0.4,0.5-0.5,0.7c-5.3,8.6-10.6,17.1-15.9,25.7c-0.8,1.2-1.5,2.5-2.3,3.7c-0.2,0.3-0.6,0.6-0.9,0.8c-0.5,0.2-1.3-0.4-1.3-1.1c-0.1-1.7-0.3-3.4-0.4-5.2c-0.1-1.1-0.3-2.2-0.3-3.3c-0.2-2.1-0.3-4.2-0.5-6.2c-0.1-1.1-0.2-2.3-0.3-3.4c0-0.3-0.1-0.5-0.2-0.8c-1.5,0.6-3,1.1-4.5,1.7c-4.3,1.6-8.5,3.1-12.8,4.6C3.4,85,3.1,84.9,2.4,84c-0.1-0.1-0.1-0.4,0-0.5c1.1-1.8,2.3-3.6,3.4-5.4c3.8-5.9,7.6-11.9,11.4-17.8c1.4-2.2,2.8-4.4,4.2-6.7c0.4-0.6,0.3-0.6-0.3-0.9c-1.1-0.4-2.1-0.7-3.2-1.1c-0.9-0.4-1.1-1-0.7-1.8c1-2,2-4,3-6c0.3-0.5,0.1-0.9-0.3-1.2c-1.7-1.4-3.3-2.8-5-4.3c-0.8-0.6-0.8-1.4-0.1-2c1.8-1.6,3.6-3.1,5.4-4.7c0.3-0.2,0.2-0.4,0-0.6c-1-1.9-1.9-3.8-2.9-5.7c-0.7-1.5-0.6-2,1-2.5c2-0.7,4-1.4,6-2c0.4-0.1,0.6-0.3,0.6-0.8c-0.1-1.1-0.2-2.2-0.3-3.2c-0.1-1.4-0.1-2.7-0.1-4.1c0-0.5,0.5-0.9,1.2-0.9c1.6,0.1,3.2,0.2,4.7,0.3c0.8,0.1,1.6,0.1,2.4,0.1c0.5,0,0.5-0.3,0.6-0.7c0.6-1.9,1.3-3.9,1.9-5.8c0.1-0.2,0.2-0.4,0.2-0.7c0.3-0.9,1-1.1,1.8-0.7c2,1,4.1,2,6.1,3c0.4,0.2,0.7,0.1,1-0.2c1.5-1.7,3-3.4,4.5-5.1c0.6-0.6,1.2-0.6,1.8,0c1.2,1.3,2.4,2.7,3.5,4c0.4,0.5,0.8,0.9,1.2,1.3c0.1,0.1,0.5,0.1,0.6,0.1c1.9-0.9,3.9-1.9,5.8-2.8c0.1-0.1,0.3-0.1,0.4-0.2c0.9-0.4,1.5-0.2,1.8,0.7c0.7,2.2,1.5,4.3,2.2,6.5c0.2,0.5,0.4,0.6,0.9,0.5c1.3-0.1,2.5-0.2,3.8-0.3c1-0.1,2-0.1,3-0.2c0.7-0.1,1.4,0.3,1.4,1.1c0,1.4-0.1,2.8-0.2,4.2c-0.1,1-0.2,2-0.2,3c0,0.4,0.1,0.6,0.5,0.7c2.1,0.7,4.2,1.4,6.2,2.1c0.4,0.1,0.8,0.3,1,0.6c0.3,0.4,0.2,0.8,0,1.3c-1,2-2,4-3,6c-0.4,0.7-0.3,0.7,0.3,1.2c1.7,1.4,3.3,2.8,4.9,4.3c0.8,0.7,0.7,1.5-0.1,2.2c-1.3,1.1-2.6,2.3-3.9,3.5c-0.4,0.3-0.7,0.7-1.1,1c-0.3,0.2-0.3,0.5-0.1,0.8c1,1.9,2,3.9,2.9,5.8c0.6,1.2,0.4,1.8-0.9,2.2c-0.9,0.3-1.8,0.6-2.7,0.9c-0.9,0.3-0.9,0.3-0.4,1.1c3,4.7,6,9.5,9.1,14.2c2.9,4.6,5.8,9.1,8.7,13.7c0.3,0.5,0.6,0.9,0.8,1.4c0.2,0.4,0.2,0.8,0,1.2c-0.3,0.4-0.7,0.5-1.1,0.4c-1.2-0.4-2.4-0.8-3.5-1.2c-4.4-1.6-8.9-3.2-13.3-4.8C79.1,78.6,78.7,78.5,78.3,78.3z M19.8,49.8c0.3,0.1,0.5,0.2,0.8,0.3c2,0.7,4,1.4,6,2c0.4,0.1,0.8,0.3,0.8,0.8c0,1.2-0.1,2.5-0.2,3.7c-0.1,1.1-0.2,2.2-0.3,3.3c0,0.3,0,0.5,0.4,0.5c0.8-0.1,1.5-0.1,2.3-0.2c1.5-0.1,3-0.2,4.5-0.3c0.6,0,0.9,0.2,1.1,0.7c0.7,2,1.4,4,2.1,6c0.3,0.8,0.3,0.8,1,0.4c1.8-0.9,3.6-1.8,5.4-2.6c0.9-0.4,1.1-0.4,1.8,0.3c1.2,1.4,2.5,2.7,3.7,4.1c1,1.1,0.7,1.3,1.8,0c1.3-1.4,2.5-2.9,3.8-4.3c0.6-0.7,0.8-0.6,1.6-0.2c1.9,0.9,3.8,1.8,5.6,2.7c0.4,0.2,0.7,0.2,0.8-0.3c0.1-0.3,0.2-0.5,0.3-0.8c0.6-1.7,1.1-3.5,1.7-5.2c0.3-0.8,0.5-1,1.3-1c0.8,0,1.6,0.1,2.4,0.1c1.4,0.1,2.8,0.2,4.2,0.3c0.3,0,0.5,0,0.5-0.4c-0.1-1.1-0.1-2.1-0.2-3.2c-0.1-1.2-0.2-2.3-0.2-3.5c0-0.8,0.2-1,0.9-1.3c1.6-0.6,3.3-1.1,5-1.7c0.5-0.2,1.1-0.4,1.7-0.6c-0.1-0.3-0.2-0.5-0.4-0.7c-0.9-1.9-1.8-3.8-2.8-5.7c-0.3-0.5-0.2-0.9,0.2-1.3c0.2-0.2,0.3-0.3,0.5-0.5c1.4-1.2,2.8-2.5,4.3-3.7c0.6-0.5,0.6-0.6,0-1.1c-1.5-1.3-3-2.7-4.5-4c-0.7-0.6-0.8-1-0.4-1.8c0.9-1.8,1.8-3.7,2.7-5.5c0.3-0.7,0.3-0.7-0.4-0.9c-1.9-0.6-3.8-1.3-5.7-1.9c-0.9-0.3-1.1-0.6-1.2-1.6c0-0.4,0.1-0.9,0.1-1.3c0.1-1.4,0.1-2.9,0.3-4.3c0.1-1.3,0-1.4-1.3-1.3c-1.3,0.1-2.7,0.2-4,0.3c-0.2,0-0.5,0-0.7,0.1c-1.4,0.1-1.9,0.2-2.5-1.4c-0.6-1.8-1.2-3.6-1.8-5.4c-0.1-0.2-0.2-0.4-0.3-0.7c-2.1,1-4.1,2-6.1,3c-0.8,0.4-1.3,0.3-1.9-0.4c-0.6-0.7-1.1-1.4-1.7-2c-0.9-1-1.8-2-2.7-3.1c-0.1,0.1-0.2,0.1-0.2,0.2c-1.4,1.7-2.9,3.3-4.3,5c-0.4,0.4-0.8,0.6-1.4,0.5c-0.4-0.1-0.7-0.2-1-0.4c-1.2-0.6-2.5-1.2-3.7-1.9c-0.6-0.3-1.2-0.6-1.9-0.9c-0.1,0.2-0.2,0.4-0.3,0.6c-0.7,2-1.4,3.9-2,5.9c-0.3,0.8-0.6,1-1.4,1c-1.2-0.1-2.4-0.2-3.6-0.3c-0.9-0.1-1.8-0.1-2.7-0.2c-0.7,0-0.8,0.1-0.7,0.8c0.2,1.9,0.3,3.8,0.5,5.6c0.1,1.3-0.1,1.6-1.4,2c-1.9,0.6-3.7,1.3-5.6,1.9c-0.4,0.1-0.6,0.3-0.3,0.8c1,1.9,1.9,3.8,2.8,5.7c0.4,0.7,0.3,1.1-0.3,1.6c-1.3,1.2-2.7,2.4-4.1,3.6c-0.4,0.3-0.8,0.7-1.2,1.1c0.5,0.4,0.8,0.8,1.2,1.1c1.2,1.1,2.5,2.1,3.6,3.2c1.2,1.1,1.2,1.1,0.5,2.5C21.7,46,20.8,47.9,19.8,49.8z M93.3,81.2c0,0,0.1-0.1,0.1-0.1C87.6,72,81.8,62.9,76.1,53.7c-0.4,0.2-0.9,0.2-0.9,0.8c0.1,1.1,0.1,2.2,0.2,3.3c0.1,1.4,0.2,2.7,0.2,4.1c0,0.6-0.4,1-1,1c-1.1,0-2.2-0.1-3.3-0.1c-1.3-0.1-2.5-0.2-3.8-0.3c-0.5,0-0.7,0.1-0.9,0.6c-0.7,2.1-1.4,4.2-2.1,6.3c-0.3,0.9-1,1.2-1.8,0.8c-1-0.5-2.1-1-3.1-1.5c-0.1-0.1-0.2-0.1-0.4-0.1c0,0-0.1,0.1-0.1,0.1c5.1,8.2,10.2,16.4,15.3,24.6c0.1,0,0.1,0,0.2-0.1c0.2-2.2,0.4-4.5,0.6-6.7c0.1-1.3,0.2-2.7,0.3-4c0.2-1.9,0.4-3.8,0.5-5.7c0.1-1,0.8-1.5,1.7-1.2c1.1,0.4,2.1,0.8,3.2,1.2c3.9,1.4,7.9,2.9,11.8,4.3C92.9,81.2,93.1,81.2,93.3,81.2zM6.7,81.1c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0,0.3-0.1,0.5-0.1c3-1.1,6-2.2,9-3.3c2-0.7,4-1.4,6-2.2c0.9-0.3,1.6,0,1.8,1c0.1,0.5,0.1,1.1,0.2,1.6c0.2,2.5,0.4,5,0.6,7.5c0.2,1.9,0.3,3.9,0.5,5.8c0.1,0.6,0.1,1.2,0.2,1.8c0.1,0,0.1,0,0.2,0c5.1-8.2,10.2-16.4,15.3-24.6c0,0-0.1-0.1-0.1-0.1c-0.2,0.1-0.4,0.1-0.6,0.2c-1,0.5-1.9,1-2.9,1.4c-0.8,0.4-1.4,0.1-1.7-0.6c-0.1-0.2-0.2-0.5-0.3-0.7c-0.7-2-1.3-4-2-5.9c-0.1-0.2-0.3-0.4-0.4-0.4c-1.2,0-2.5,0.1-3.7,0.1c-1.3,0.1-2.5,0.2-3.8,0.3c-0.7,0-1.1-0.4-1-1.1c0-0.9,0.1-1.7,0.2-2.6c0.1-1.5,0.2-2.9,0.3-4.4c0-0.8-0.1-0.9-1-1C18.3,62.9,12.5,72,6.7,81.1z'/%3E%3Cpath d='M70.8,37.9c-0.1-1.2-0.1-2-0.2-2.8c0-0.6,0.6-1.2,1.2-1.3c0.5,0,1.1,0.5,1.2,1c0.7,5.9-0.8,11.2-4.1,16c-2.2,3.2-5.1,5.7-8.7,7.4c-1.7,0.8-3.5,1.5-5.4,1.8c-1.7,0.3-3.5,0.6-5.2,0.5c-5-0.2-9.6-1.8-13.6-4.9c-4.4-3.4-7.2-7.9-8.4-13.4c-0.4-2-0.6-3.9-0.5-6c0.3-4.5,1.7-8.6,4.3-12.3c2.1-2.9,4.7-5.2,7.8-6.9c2.2-1.2,4.5-2,7-2.4c1.6-0.2,3.1-0.4,4.7-0.4c4.2,0.2,8.2,1.4,11.7,3.7c0.5,0.3,0.9,0.6,1.3,1c0.6,0.5,0.7,1.2,0.3,1.7c-0.4,0.6-1.1,0.6-1.8,0.2c-1.5-1.1-3.2-2.1-4.9-2.8c-1.6-0.6-3.2-1.1-5-1.2c-1.5-0.1-3-0.2-4.4-0.1c-1.5,0.1-3.1,0.4-4.5,0.9c-2.8,0.9-5.3,2.3-7.4,4.3c-2.7,2.5-4.8,5.5-5.9,9c-0.7,2.1-1,4.3-1,6.5c0,4.7,1.5,8.9,4.4,12.5c3.3,4.2,7.5,6.8,12.8,7.7c1.8,0.3,3.6,0.4,5.4,0.3c2-0.2,4-0.7,5.9-1.5c2.8-1.1,5.2-2.9,7.3-5.1c2.7-2.9,4.5-6.3,5.2-10.3C70.7,40.1,70.7,38.8,70.8,37.9z'/%3E%3Cpath d='M38.8,32.9c0-0.5,0.2-0.9,0.7-1.1c0.5-0.2,1-0.1,1.4,0.3c3.2,3.2,6.4,6.4,9.6,9.6c0.1,0.1,0.2,0.2,0.3,0.3c0.3,0.3,0.5,0.3,0.8,0c0.5-0.5,1-1,1.5-1.6c5.5-5.5,11.1-11.1,16.6-16.6c0.3-0.3,0.6-0.6,1-0.4c0.3,0.1,0.8,0.3,0.9,0.6c0.1,0.3,0,0.8-0.1,1.2c0,0.2-0.3,0.3-0.4,0.4C64.9,32,58.7,38.2,52.4,44.5c-1.1,1.1-1.4,1.1-2.5,0c-3.5-3.5-7.1-7.1-10.6-10.6c-0.2-0.2-0.4-0.6-0.6-0.9C38.7,32.9,38.8,32.9,38.8,32.9z'/%3E%3C/g%3E%3C/svg%3E"); }

.charlotte-showroom .appointment-calendly-outer {
  padding: 60px 0 40px; }
  .charlotte-showroom .appointment-calendly-outer .design-title {
    text-align: center;
    margin-bottom: 60px; }
    .charlotte-showroom .appointment-calendly-outer .design-title .title-separator {
      margin: 0.74rem auto; }
  .charlotte-showroom .appointment-calendly-outer .app-calendly-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px; }
    .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .showroom-app {
      width: 100%;
      padding: 40px;
      box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
      border-radius: 8px; }
      @media (min-width: 800px) {
        .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .showroom-app {
          width: calc(50% - 25px); } }
      .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .showroom-app .showroom-app-hd {
        margin: 0 0 34px 0;
        text-align: center;
        font-family: "Open Sans", sans-serif;
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        line-height: 27px; }
      .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .showroom-app p {
        max-width: 640px;
        width: 100%;
        margin: 0 auto 15px;
        text-align: center;
        font-family: "Open Sans", sans-serif;
        color: #000000;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px; }
    .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .calendly-widget-wrap {
      width: 100%;
      min-height: 600px;
      box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
      border-radius: 8px; }
      @media (min-width: 800px) {
        .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .calendly-widget-wrap {
          width: calc(50% - 25px);
          min-height: 450px; } }
      .charlotte-showroom .appointment-calendly-outer .app-calendly-inner .calendly-widget-wrap .calendly-inline-widget {
        height: 100%; }

.charlotte-showroom .door-cons-outer {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 60px 0; }
  .charlotte-showroom .door-cons-outer .door-considerations {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px; }
    .charlotte-showroom .door-cons-outer .door-considerations .door-con-img {
      width: 100%; }
      @media (min-width: 800px) {
        .charlotte-showroom .door-cons-outer .door-considerations .door-con-img {
          width: calc(50% - 30px); } }
      .charlotte-showroom .door-cons-outer .door-considerations .door-con-img img {
        width: 100%;
        height: 100%;
        max-height: 535px;
        object-fit: cover;
        object-position: center;
        vertical-align: middle; }
    .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp {
      width: 100%; }
      @media (min-width: 800px) {
        .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp {
          width: calc(50% - 30px); } }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp h3 {
        font-family: "Open Sans", sans-serif;
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        line-height: 27px;
        margin: 0 auto 15px; }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp p,
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp span {
        display: inline-block;
        font-family: "Open Sans", sans-serif;
        color: #000000;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px; }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp p {
        margin: 0 0 12px 0; }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp span {
        margin: 0 0 10px 0; }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp ul {
        list-style: none;
        margin-bottom: 15px; }
        .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp ul li {
          font-family: "Open Sans", sans-serif;
          color: #000000;
          font-size: 16px;
          font-weight: 400;
          line-height: 22px;
          position: relative;
          padding-left: 45px;
          margin: 0 auto 10px; }
          .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp ul li:last-child {
            margin: 0; }
          .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp ul li::before {
            content: "";
            position: absolute;
            height: 7px;
            width: 7px;
            border-radius: 40px;
            background-color: #000000;
            left: 24px;
            top: 8px; }
      .charlotte-showroom .door-cons-outer .door-considerations .door-cons-descrp h4 {
        font-family: "Open Sans", sans-serif;
        color: #000000;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        margin: 10px auto 15px; }
    .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n) .door-con-img {
      order: 1; }
    .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n) .door-cons-descrp {
      order: 2; }
    .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n + 1) .door-con-img {
      order: 1; }
    .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n + 1) .door-cons-descrp {
      order: 2; }
    @media (min-width: 800px) {
      .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n) .door-con-img {
        order: 2; }
      .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n) .door-cons-descrp {
        order: 1; }
      .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n + 1) .door-con-img {
        order: 1; }
      .charlotte-showroom .door-cons-outer .door-considerations:nth-child(2n + 1) .door-cons-descrp {
        order: 2; } }

.charlotte-showroom .showroom-location {
  padding: 30px 0 60px; }
  .charlotte-showroom .showroom-location .design-title {
    text-align: center;
    margin-bottom: 60px; }
    .charlotte-showroom .showroom-location .design-title .title-separator {
      margin: 0.74rem auto; }
  .charlotte-showroom .showroom-location .showroom-loc-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse; }
    @media (min-width: 800px) {
      .charlotte-showroom .showroom-location .showroom-loc-inner {
        flex-direction: row; } }
    .charlotte-showroom .showroom-location .showroom-loc-inner .google-map {
      width: 100%; }
      @media (min-width: 800px) {
        .charlotte-showroom .showroom-location .showroom-loc-inner .google-map {
          width: 65%; } }
      .charlotte-showroom .showroom-location .showroom-loc-inner .google-map iframe {
        width: 100%; }
    .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info {
      background-color: #f7f7f7;
      padding: 80px 60px;
      text-align: center;
      width: 100%; }
      @media (min-width: 800px) {
        .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info {
          width: 35%; } }
      .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info img {
        margin: 0 0 40px 0;
        max-width: 370px; }
      .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px; }
        .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li {
          display: flex;
          gap: 15px;
          padding: 0 0 0 15px; }
          .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li span {
            align-items: center;
            background: #6e3a16;
            border-radius: 50px;
            display: flex;
            height: 30px;
            justify-content: center;
            padding: 8px;
            width: 30px; }
            .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li span svg {
              height: 100%;
              width: auto; }
          .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li a {
            text-decoration: none; }
          .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li p,
          .charlotte-showroom .showroom-location .showroom-loc-inner .contact-info ul li a {
            font-family: "Righteous", sans-serif;
            color: #000000;
            font-size: 18px;
            font-weight: 400;
            line-height: 24px;
            text-align: left; }

#c0e6XFtGg {
  min-height: 506px; }
  @media (min-width: 801px) {
    #c0e6XFtGg {
      min-height: 756px; } }

#customExitModal {
  inset: 0;
  display: none;
  z-index: 9999;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif; }
  #customExitModal .modal-content {
    left: 0;
    right: 0;
    top: 50%;
    padding: 40px 30px;
    margin: auto;
    bottom: unset;
    background: #fff;
    max-width: 520px;
    outline: 2px solid;
    text-align: center;
    position: absolute;
    outline-offset: -22px;
    transform: translateY(-50%); }
    #customExitModal .modal-content .modal-content-inner {
      width: 100%;
      max-width: 380px;
      margin: 0 auto; }
    #customExitModal .modal-content h3 {
      margin-top: 0;
      font-size: 20px;
      font-weight: 600;
      text-transform: none; }
      @media (min-width: 641px) {
        #customExitModal .modal-content h3 {
          font-size: 24px; } }
    #customExitModal .modal-content p {
      margin: 0;
      font-size: 16px;
      line-height: 24px; }
      @media (min-width: 641px) {
        #customExitModal .modal-content p {
          font-size: 18px; } }
      #customExitModal .modal-content p.small {
        font-size: 14px;
        line-height: 18px; }
        @media (min-width: 641px) {
          #customExitModal .modal-content p.small {
            font-size: 16px;
            line-height: 21px; } }
    #customExitModal .modal-content small {
      display: block; }
    #customExitModal .modal-content .req_quote_window {
      border: 0;
      color: #fff;
      width: 100%;
      max-width: 80%;
      cursor: pointer;
      display: block;
      font-size: 16px;
      box-shadow: none;
      font-weight: 500;
      margin: 30px auto;
      padding: 12px 10px;
      background: #4EA72E;
      text-decoration: none;
      transition: .2s all ease;
      border: 1px solid #4EA72E; }
      #customExitModal .modal-content .req_quote_window:hover {
        color: #4EA72E;
        background: #fff;
        transition: .2s all ease; }
  #customExitModal #customExitModalClose {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    font-size: 0;
    height: 25px;
    cursor: pointer;
    background-color: #fff;
    background-image: url('data:image/svg+xml,<svg width="64px" height="64px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>cross-circle</title><desc>Created with Sketch Beta.</desc><defs></defs><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage"><g id="Icon-Set" sketch:type="MSLayerGroup" transform="translate(-568.000000, -1087.000000)" fill="%23000000"><path d="M584,1117 C576.268,1117 570,1110.73 570,1103 C570,1095.27 576.268,1089 584,1089 C591.732,1089 598,1095.27 598,1103 C598,1110.73 591.732,1117 584,1117 L584,1117 Z M584,1087 C575.163,1087 568,1094.16 568,1103 C568,1111.84 575.163,1119 584,1119 C592.837,1119 600,1111.84 600,1103 C600,1094.16 592.837,1087 584,1087 L584,1087 Z M589.717,1097.28 C589.323,1096.89 588.686,1096.89 588.292,1097.28 L583.994,1101.58 L579.758,1097.34 C579.367,1096.95 578.733,1096.95 578.344,1097.34 C577.953,1097.73 577.953,1098.37 578.344,1098.76 L582.58,1102.99 L578.314,1107.26 C577.921,1107.65 577.921,1108.29 578.314,1108.69 C578.708,1109.08 579.346,1109.08 579.74,1108.69 L584.006,1104.42 L588.242,1108.66 C588.633,1109.05 589.267,1109.05 589.657,1108.66 C590.048,1108.27 590.048,1107.63 589.657,1107.24 L585.42,1103.01 L589.717,1098.71 C590.11,1098.31 590.11,1097.68 589.717,1097.28 L589.717,1097.28 Z" id="cross-circle" sketch:type="MSShapeGroup"></path></g></g></g></svg>');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat; }

@media (max-width: 800px) {
  .body-category .front-doors nav .sidebarBlock.front-doors {
    display: none; } }

.option-help-icon.door-impact-resistant-option,
.option-help-icon.door-design-pressure-rating-option {
  display: inline-block !important;
  cursor: pointer;
  margin: 0; }

.productView {
  margin: 0;
  padding: 0; }

.unique-main-banner {
  position: relative; }
  .unique-main-banner .unique-banner-img {
    display: block;
    min-height: 500px;
    object-fit: cover;
    object-position: center center; }
  .unique-main-banner .unique-banner-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding: 0 10px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5); }
  .unique-main-banner .unique-custom {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 14.4px;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
  .unique-main-banner .productView-title {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    max-width: 840px;
    margin: 0 0 15px;
    line-height: 30px;
    text-align: center;
    font-family: Righteous-Regular; }
    @media (min-width: 641px) {
      .unique-main-banner .productView-title {
        font-size: 32px;
        margin: 0 0 20px;
        line-height: 40px; } }
    @media (min-width: 801px) {
      .unique-main-banner .productView-title {
        font-size: 40px;
        line-height: 50px; } }
    @media (min-width: 1261px) {
      .unique-main-banner .productView-title {
        font-size: 45px;
        line-height: 60px;
        margin: 0 0 34.4px; } }
  .unique-main-banner .prod-description {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    max-width: 1160px;
    line-height: 22px;
    text-align: center;
    margin: 0 auto 15px;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
    @media (min-width: 641px) {
      .unique-main-banner .prod-description {
        font-size: 16px;
        margin: 0 auto 30px; } }
    @media (min-width: 801px) {
      .unique-main-banner .prod-description {
        font-size: 18px;
        margin: 0 auto 45px; } }
    .unique-main-banner .prod-description h4, .unique-main-banner .prod-description p {
      margin: 0;
      color: #fff;
      font-size: 15px;
      font-weight: 300;
      line-height: 24px;
      font-family: "Open Sans",Arial,Helvetica,sans-serif; }
      @media (min-width: 641px) {
        .unique-main-banner .prod-description h4, .unique-main-banner .prod-description p {
          font-size: 16px; } }
      @media (min-width: 801px) {
        .unique-main-banner .prod-description h4, .unique-main-banner .prod-description p {
          font-size: 18px;
          line-height: 30px; } }

.unique-quote {
  color: #fff;
  width: 100%;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 5px;
  background: #6E3A16;
  text-decoration: none;
  border: 2px solid #000;
  transition: .2s all ease;
  text-transform: uppercase;
  font-family: "Work Sans",Times,"Times New Roman",serif; }
  @media (min-width: 641px) {
    .unique-quote {
      padding: 20px;
      font-size: 16px;
      max-width: 393px; } }
  .unique-quote:hover {
    color: #6E3A16;
    background: #fff;
    border-color: #6E3A16;
    transition: .2s all ease; }

.design-title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 28px;
  text-align: center;
  font-family: Righteous-Regular; }
  @media (min-width: 641px) {
    .design-title {
      margin: 0 0 12px;
      font-size: 22px; } }
  .design-title p {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px;
    line-height: 28px;
    text-align: center;
    font-family: Righteous-Regular; }
    @media (min-width: 641px) {
      .design-title p {
        margin: 0 0 12px;
        font-size: 22px; } }
  .design-title a {
    text-decoration: none; }
    .design-title a:hover {
      color: #6E3A16; }
  .design-title div {
    padding: 0;
    width: 100%;
    display: block; }
  .design-title + hr {
    margin-bottom: 20px; }
    @media (min-width: 641px) {
      .design-title + hr {
        margin-bottom: 36px; } }

.design-custom-wrap {
  margin: 40px 0; }
  @media (min-width: 801px) {
    .design-custom-wrap {
      margin: 75px 0 103px; } }
  .design-custom-wrap .design-details p {
    color: #232B2E;
    font-size: 15px;
    font-weight: 400;
    max-width: 1364px;
    line-height: 25px;
    margin: 0 auto 15px;
    text-align: center;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
    @media (min-width: 641px) {
      .design-custom-wrap .design-details p {
        font-size: 16px;
        margin: 0 auto 46px; } }
  .design-custom-wrap .design-img-wrap img {
    width: 100%; }
    .design-custom-wrap .design-img-wrap img.for-dsktp {
      display: none; }
      @media (min-width: 641px) {
        .design-custom-wrap .design-img-wrap img.for-dsktp {
          display: block; } }
    .design-custom-wrap .design-img-wrap img.for-mbl {
      display: block; }
      @media (min-width: 641px) {
        .design-custom-wrap .design-img-wrap img.for-mbl {
          display: none; } }
    .design-custom-wrap .design-img-wrap img.lazyload, .design-custom-wrap .design-img-wrap img.lazyloading {
      max-height: 476px; }
  .design-custom-wrap .design-steps-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
    justify-content: space-between; }
    @media (min-width: 641px) {
      .design-custom-wrap .design-steps-wrap {
        gap: 30px 20px; } }
    @media (min-width: 801px) {
      .design-custom-wrap .design-steps-wrap {
        margin: 85px 0 65px; } }
    .design-custom-wrap .design-steps-wrap .design-inner {
      position: relative;
      text-align: center;
      background: #F7F7F7;
      width: calc(100% - 20px);
      padding: 20px 20px 20px 60px; }
      @media (min-width: 641px) {
        .design-custom-wrap .design-steps-wrap .design-inner {
          width: calc(50% - 20px);
          padding: 30px 20px 30px 60px; } }
      @media (min-width: 801px) {
        .design-custom-wrap .design-steps-wrap .design-inner {
          width: calc(33.33% - 20px); } }
      @media (min-width: 1261px) {
        .design-custom-wrap .design-steps-wrap .design-inner {
          padding: 42px 42px 42px 72px; } }
      .design-custom-wrap .design-steps-wrap .design-inner:before {
        content: "";
        width: 30px;
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0; }
        @media (min-width: 1261px) {
          .design-custom-wrap .design-steps-wrap .design-inner:before {
            width: 36px; } }
      .design-custom-wrap .design-steps-wrap .design-inner .step-count {
        position: absolute;
        left: 0;
        top: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        display: flex;
        font-size: 30px;
        line-height: 47px;
        font-weight: bold;
        background: #6E3A16;
        align-items: center;
        border-radius: 100%;
        border: 5px solid #fff;
        justify-content: center;
        transform: translateY(-50%);
        font-family: "Open Sans",Arial,Helvetica,sans-serif; }
        @media (min-width: 1261px) {
          .design-custom-wrap .design-steps-wrap .design-inner .step-count {
            width: 72px;
            height: 72px;
            font-size: 35px; } }
      .design-custom-wrap .design-steps-wrap .design-inner .step-title {
        color: #232B2E;
        font-size: 16px;
        margin: 0 0 5px;
        line-height: 22px;
        font-weight: 400;
        text-transform: uppercase;
        font-family: Righteous-Regular; }
        @media (min-width: 641px) {
          .design-custom-wrap .design-steps-wrap .design-inner .step-title {
            margin: 0 0 9px;
            font-size: 18px; } }
        @media (min-width: 1261px) {
          .design-custom-wrap .design-steps-wrap .design-inner .step-title {
            font-size: 22px;
            line-height: 28px; } }
        .design-custom-wrap .design-steps-wrap .design-inner .step-title p {
          color: #232B2E;
          font-size: 16px;
          margin: 0 0 5px;
          line-height: 22px;
          font-weight: 400;
          font-family: Righteous-Regular; }
          @media (min-width: 641px) {
            .design-custom-wrap .design-steps-wrap .design-inner .step-title p {
              margin: 0 0 9px;
              font-size: 18px; } }
          @media (min-width: 1261px) {
            .design-custom-wrap .design-steps-wrap .design-inner .step-title p {
              font-size: 22px;
              line-height: 28px; } }
      .design-custom-wrap .design-steps-wrap .design-inner .step-info {
        margin: 0;
        color: #232B2E;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        font-family: "Open Sans",Arial,Helvetica,sans-serif; }
        @media (min-width: 641px) {
          .design-custom-wrap .design-steps-wrap .design-inner .step-info {
            font-size: 16px;
            line-height: 24px; } }
        .design-custom-wrap .design-steps-wrap .design-inner .step-info p {
          margin: 0;
          color: #232B2E;
          font-size: 14px;
          font-weight: 400;
          line-height: 20px;
          font-family: "Open Sans",Arial,Helvetica,sans-serif; }
          @media (min-width: 641px) {
            .design-custom-wrap .design-steps-wrap .design-inner .step-info p {
              font-size: 16px;
              line-height: 24px; } }
  .design-custom-wrap .help-customise-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0 0 0;
    justify-content: space-between; }
    @media (min-width: 801px) {
      .design-custom-wrap .help-customise-wrap {
        gap: 50px;
        margin: 106px 0 0 0; } }
    @media (min-width: 1261px) {
      .design-custom-wrap .help-customise-wrap {
        gap: 74px; } }
    .design-custom-wrap .help-customise-wrap .help-customise-inner {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      @media (min-width: 801px) {
        .design-custom-wrap .help-customise-wrap .help-customise-inner {
          width: calc(50% - 25px); } }
      @media (min-width: 1261px) {
        .design-custom-wrap .help-customise-wrap .help-customise-inner {
          width: calc(50% - 37px); } }
      .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-banner-img {
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: left; }
        .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-banner-img.lazyload, .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-banner-img.lazyloading {
          max-height: 467px; }
      .design-custom-wrap .help-customise-wrap .help-customise-inner .title-separator--solid {
        margin: 0 0 20px;
        border-style: solid; }
        @media (min-width: 641px) {
          .design-custom-wrap .help-customise-wrap .help-customise-inner .title-separator--solid {
            margin: 0 0 35px; } }
        @media (min-width: 1261px) {
          .design-custom-wrap .help-customise-wrap .help-customise-inner .title-separator--solid {
            margin: 0 0 47px; } }
      .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-title {
        text-align: left; }
        .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-title div {
          padding: 0;
          width: 100%;
          display: block; }
        .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-title p {
          color: #232B2E;
          font-size: 20px;
          font-weight: 400;
          text-align: left;
          margin: 0 0 12px;
          line-height: 26px;
          font-family: Righteous-Regular; }
          @media (min-width: 641px) {
            .design-custom-wrap .help-customise-wrap .help-customise-inner .customise-title p {
              font-size: 22px; } }
      .design-custom-wrap .help-customise-wrap .help-customise-inner h3 {
        color: #232B2E;
        font-size: 20px;
        font-weight: 400;
        margin: 0 0 12px;
        line-height: 26px;
        font-family: Righteous-Regular; }
        @media (min-width: 641px) {
          .design-custom-wrap .help-customise-wrap .help-customise-inner h3 {
            font-size: 22px; } }
      .design-custom-wrap .help-customise-wrap .help-customise-inner p {
        color: #232B2E;
        font-size: 15px;
        margin: 0 0 20px;
        font-weight: 400;
        text-align: left;
        line-height: 25px;
        font-family: "Open Sans",Arial,Helvetica,sans-serif; }
        @media (min-width: 641px) {
          .design-custom-wrap .help-customise-wrap .help-customise-inner p {
            margin: 0 0 35px;
            font-size: 16px; } }
        @media (min-width: 1261px) {
          .design-custom-wrap .help-customise-wrap .help-customise-inner p {
            margin: 0 0 47px; } }
      .design-custom-wrap .help-customise-wrap .help-customise-inner .unique-quote {
        margin: 0; }
      .design-custom-wrap .help-customise-wrap .help-customise-inner div {
        padding: 0;
        width: 100%;
        display: block; }

.required-info-options {
  background: #F7F7F7;
  padding: 40px 20px; }
  @media (min-width: 801px) {
    .required-info-options {
      padding: 60px 50px 80px 50px; } }
  @media (min-width: 1261px) {
    .required-info-options {
      padding: 79px 91px 106px 91px; } }
  .required-info-options .design-title {
    margin: 0 0 25px; }
    @media (min-width: 641px) {
      .required-info-options .design-title {
        margin: 0 0 67px; } }
  .required-info-options .form div[data-product-option-change=""] {
    column-gap: 47px; }
    @media (min-width: 641px) {
      .required-info-options .form div[data-product-option-change=""] {
        column-count: 2; } }
    .required-info-options .form div[data-product-option-change=""] .form-field {
      width: 100%;
      margin: 0 0 26px;
      display: inline-block; }
      .required-info-options .form div[data-product-option-change=""] .form-field[data-product-attribute="set-rectangle"] .form-option {
        color: #232B2E;
        background: #fff;
        padding: 10px 17px;
        border-radius: 10px;
        border: 1px solid transparent; }
        .required-info-options .form div[data-product-option-change=""] .form-field[data-product-attribute="set-rectangle"] .form-option .form-option-variant {
          padding: 0;
          color: #232B2E;
          font-size: 14px;
          font-weight: 400;
          font-family: "Open Sans",Arial,Helvetica,sans-serif; }
  .required-info-options .form .form-label, .required-info-options .form .form-fileDescription {
    color: #232B2E;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 12px;
    font-family: "Work Sans",Times,"Times New Roman",serif; }
    .required-info-options .form .form-label span[data-option-value=""], .required-info-options .form .form-fileDescription span[data-option-value=""] {
      font-weight: 500; }
    .required-info-options .form .form-label small, .required-info-options .form .form-fileDescription small {
      color: #232B2E;
      font-size: 14px;
      font-weight: 500;
      line-height: 16px;
      font-family: "Work Sans",Times,"Times New Roman",serif; }
  .required-info-options .form-field--increments {
    display: none; }
  .required-info-options .qn-add-to-quote {
    color: #fff;
    width: 100%;
    display: block;
    cursor: pointer;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 5px;
    background: #6E3A16;
    text-decoration: none;
    border: 2px solid #000;
    transition: .2s all ease;
    margin: 60px auto 0 auto !important;
    font-family: "Work Sans",Times,"Times New Roman",serif; }
    @media (min-width: 641px) {
      .required-info-options .qn-add-to-quote {
        padding: 20px;
        font-size: 16px;
        max-width: 393px; } }
    .required-info-options .qn-add-to-quote:hover {
      color: #6E3A16;
      background: #fff;
      border-color: #6E3A16;
      transition: .2s all ease; }
  .required-info-options textarea {
    border-radius: 10px; }
  .required-info-options div[data-product-attribute="swatch"] .productOptions-list {
    border: 0;
    padding: 0 18px;
    background: #fff;
    border-radius: 10px; }
    .required-info-options div[data-product-attribute="swatch"] .productOptions-list .productOptions-list-item {
      padding: 1.5rem 0; }
      .required-info-options div[data-product-attribute="swatch"] .productOptions-list .productOptions-list-item + .productOptions-list-item {
        border-top: 1px solid #707070; }
    .required-info-options div[data-product-attribute="swatch"] .productOptions-list .form-label {
      color: #232B2E;
      cursor: pointer;
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 0;
      line-height: 19px;
      font-family: "Open Sans",Arial,Helvetica,sans-serif; }
  .required-info-options div[data-product-attribute="swatch"] .form-checkbox + .form-label::before, .required-info-options div[data-product-attribute="swatch"] .form-radio + .form-label::before {
    border: 1px solid #707070; }
  .required-info-options div[data-product-attribute="set-select"] {
    width: 100%; }
    .required-info-options div[data-product-attribute="set-select"] .form-select {
      width: 100%;
      height: 56px;
      color: #232B2E;
      display: block;
      max-width: 100%;
      font-size: 14px;
      font-weight: 400;
      padding: 10px 15px;
      border-radius: 10px;
      border-color: transparent;
      font-family: "Open Sans",Arial,Helvetica,sans-serif; }
  .required-info-options div[data-product-attribute="input-text"] {
    margin: 0 0 15px !important; }
    .required-info-options div[data-product-attribute="input-text"] label {
      display: inline-block;
      float: left;
      width: auto;
      margin: 0 10px 10px 0;
      line-height: 21px !important; }
    .required-info-options div[data-product-attribute="input-text"] .form-input {
      width: auto;
      color: #232B2E;
      font-size: 14px;
      font-weight: 400;
      line-height: 19px;
      padding: 10px 15px;
      border-radius: 10px;
      background-color: #fff;
      border-color: transparent;
      font-family: "Open Sans",Arial,Helvetica,sans-serif; }
      .required-info-options div[data-product-attribute="input-text"] .form-input[readonly] {
        padding: 0;
        height: auto;
        background-color: transparent; }
  .required-info-options .form-radio:checked + .form-option {
    box-shadow: 0px 0px 0px 1px #232B2E; }
  .required-info-options .form-radio + .form-label:after {
    background: #6E3A16; }

.contact-custom-team {
  padding: 40px 0; }
  @media (min-width: 801px) {
    .contact-custom-team {
      padding: 85px 0; } }
  .contact-custom-team .design-title {
    margin: 0 0 15px; }
    @media (min-width: 641px) {
      .contact-custom-team .design-title {
        margin: 0 0 33px; } }
    .contact-custom-team .design-title hr {
      margin: 12px auto 0; }
  .contact-custom-team .unique-quote {
    margin: 0 auto; }
  .contact-custom-team .contact-team-info {
    color: #232B2E;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 15px;
    line-height: 25px;
    text-align: center;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
    @media (min-width: 641px) {
      .contact-custom-team .contact-team-info {
        font-size: 16px;
        margin: 0 0 33px; } }
    .contact-custom-team .contact-team-info a {
      font-weight: bold;
      text-decoration: none; }
      .contact-custom-team .contact-team-info a:hover {
        color: #6E3A16;
        text-decoration: underline; }

.why-design-custom {
  background: #F7F7F7;
  padding: 40px 20px; }
  @media (min-width: 641px) {
    .why-design-custom {
      padding: 70px 45px; } }
  .why-design-custom .design-title {
    margin: 0 0 20px; }
    @media (min-width: 641px) {
      .why-design-custom .design-title {
        margin: 0 0 44px; } }
  .why-design-custom .why-custom-img {
    display: block;
    margin: 0 0 25px; }
    @media (min-width: 641px) {
      .why-design-custom .why-custom-img {
        margin: 0 0 56px; } }
    .why-design-custom .why-custom-img.lazyload, .why-design-custom .why-custom-img.lazyloading {
      max-height: 638px; }
  .why-design-custom h4 {
    color: #232B2E;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px;
    line-height: 23px;
    font-family: Righteous-Regular; }
    @media (min-width: 641px) {
      .why-design-custom h4 {
        font-size: 18px;
        margin: 0 0 20px; } }
  .why-design-custom p {
    color: #232B2E;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 20px;
    line-height: 22px;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
    @media (min-width: 641px) {
      .why-design-custom p {
        font-size: 16px;
        margin: 0 0 39px; } }
  .why-design-custom div {
    padding: 0;
    width: 100%;
    display: block; }
  .why-design-custom .read-more-why {
    display: inline-block;
    color: #232B2E;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    padding: 0 20px 0 0;
    text-transform: uppercase;
    font-family: "Work Sans",Times,"Times New Roman",serif; }
    .why-design-custom .read-more-why:before {
      content: "";
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.313" height="7.158" viewBox="0 0 12.313 7.158"><path id="Path_31" data-name="Path 31" d="M1221.177,1097.731l-4.743,4.743-4.741-4.741" transform="translate(-1210.278 -1096.316)" fill="none" stroke="%23232b2e" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>');
      position: absolute;
      top: 50%;
      right: 0;
      width: 11px;
      height: 10px;
      background-size: 100%;
      transition: .2s all ease;
      background-repeat: no-repeat;
      background-position: center center;
      transform: translateY(-50%) rotate(0deg); }
    .why-design-custom .read-more-why.shown:before {
      transition: .2s all ease;
      transform: translateY(-50%) rotate(180deg); }
  .why-design-custom .more-content-why {
    display: none; }

.required-info-options .form div[data-product-option-change=""] .form-field.form-field-frame-size, .required-info-options .form div[data-product-option-change=""] .form-field.form-field-rough-opening {
  margin: 0 !important; }

.required-info-options .form div[data-product-option-change=""] .form-field.door-swing .form-select {
  margin-bottom: 1rem; }

.body.showroom {
  margin: 0; }

.unique-quote.gallery {
  background-color: #000000; }
  .unique-quote.gallery:hover {
    color: #000;
    border-color: #000000;
    background-color: #fff; }

.showroom-wrap .unique-main-banner {
  background-color: #F7F7F7; }
  .showroom-wrap .unique-main-banner .unique-custom {
    text-transform: uppercase; }
  .showroom-wrap .unique-main-banner .productView-title, .showroom-wrap .unique-main-banner .prod-description {
    width: 100%;
    max-width: 580px; }
  .showroom-wrap .unique-main-banner .unique-banner-details {
    background-color: transparent; }
  .showroom-wrap .unique-main-banner .quote-btns-wrap {
    width: 100%;
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    @media (min-width: 641px) {
      .showroom-wrap .unique-main-banner .quote-btns-wrap {
        flex-direction: row;
        max-width: 500px;
        flex-wrap: wrap; } }
    .showroom-wrap .unique-main-banner .quote-btns-wrap .unique-quote {
      margin: 0;
      width: auto; }

.showroom-wrap .inside-shworoom {
  padding: 40px 0 0px;
  background: #F7F7F7; }
  @media (min-width: 801px) {
    .showroom-wrap .inside-shworoom {
      padding: 90px 0 0px; } }
  .showroom-wrap .inside-shworoom .design-title {
    padding: 0 10px; }
  .showroom-wrap .inside-shworoom .design-details {
    margin: 0 auto;
    color: #232B2E;
    font-size: 15px;
    padding: 0 10px;
    font-weight: 400;
    max-width: 1228px;
    line-height: 25px;
    text-align: center;
    font-family: "Open Sans",Arial,Helvetica,sans-serif; }
    @media (min-width: 641px) {
      .showroom-wrap .inside-shworoom .design-details {
        font-size: 16px; } }
  .showroom-wrap .inside-shworoom .inside-showroom-banner {
    z-index: 1;
    background: #fff;
    padding-top: 15px;
    text-align: center;
    margin: 35px 0 0 0;
    position: relative; }
    @media (min-width: 801px) {
      .showroom-wrap .inside-shworoom .inside-showroom-banner {
        padding-top: 0px;
        margin: 55px 0 0 0;
        background: #F7F7F7; } }
    .showroom-wrap .inside-shworoom .inside-showroom-banner:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 50%;
      width: 100%;
      z-index: -1;
      background: #fff; }
    .showroom-wrap .inside-shworoom .inside-showroom-banner img {
      width: 100%;
      display: block;
      margin: 0 auto;
      max-width: 1195px; }
      .showroom-wrap .inside-shworoom .inside-showroom-banner img.lazyload, .showroom-wrap .inside-shworoom .inside-showroom-banner img.lazyloading {
        max-height: 505px; }

.showroom-wrap .our-gallery-wrap {
  margin: 40px 0; }
  @media (min-width: 801px) {
    .showroom-wrap .our-gallery-wrap {
      margin: 80px 0 93px; } }
  .showroom-wrap .our-gallery-wrap .gallery-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column; }
    @media (min-width: 801px) {
      .showroom-wrap .our-gallery-wrap .gallery-wrap {
        gap: 15px; } }
    .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media (min-width: 641px) {
        .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row {
          flex-wrap: nowrap; } }
      @media (min-width: 801px) {
        .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row {
          gap: 15px; } }
      .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row .gallery-img {
        width: 100%; }
        @media (min-width: 641px) {
          .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row .gallery-img {
            width: auto; } }
        .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row .gallery-img img {
          width: 100%; }
          .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row .gallery-img img.lazyload, .showroom-wrap .our-gallery-wrap .gallery-wrap .gallery-row .gallery-img img.lazyloading {
            margin: 0 auto;
            max-height: 535px; }

.showroom-wrap .contact-custom-team {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #F7F7F7; }

.showroom-wrap .map-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0;
  justify-content: space-between; }
  @media (min-width: 801px) {
    .showroom-wrap .map-wrap {
      margin: 94px auto 0; } }
  .showroom-wrap .map-wrap .design-title {
    width: 100%; }
  .showroom-wrap .map-wrap .map-left {
    width: 100%; }
    @media (min-width: 801px) {
      .showroom-wrap .map-wrap .map-left {
        width: 70%; } }
    .showroom-wrap .map-wrap .map-left iframe {
      width: 100%;
      height: 100%;
      min-height: 350px; }
      @media (min-width: 801px) {
        .showroom-wrap .map-wrap .map-left iframe {
          min-height: unset; } }
  .showroom-wrap .map-wrap .map-right {
    width: 100%;
    display: flex;
    gap: 15px;
    padding: 40px 20px;
    background: #F7F7F7;
    align-items: center;
    flex-direction: column;
    justify-content: center; }
    @media (min-width: 641px) {
      .showroom-wrap .map-wrap .map-right {
        gap: 20px; } }
    @media (min-width: 801px) {
      .showroom-wrap .map-wrap .map-right {
        width: 30%;
        align-items: flex-start; } }
    @media (min-width: 1261px) {
      .showroom-wrap .map-wrap .map-right {
        gap: 40px;
        padding: 72px; } }
    .showroom-wrap .map-wrap .map-right img {
      width: 100%;
      max-width: 250px; }
      @media (min-width: 641px) {
        .showroom-wrap .map-wrap .map-right img {
          max-width: 370px; } }
      .showroom-wrap .map-wrap .map-right img.lazyload, .showroom-wrap .map-wrap .map-right img.lazyloading {
        max-height: 79px; }
    .showroom-wrap .map-wrap .map-right ul {
      margin: 0;
      padding: 0;
      width: auto;
      list-style: none;
      text-align: left; }
      @media (min-width: 801px) {
        .showroom-wrap .map-wrap .map-right ul {
          width: 100%;
          text-align: left; } }
      .showroom-wrap .map-wrap .map-right ul li {
        display: flex;
        gap: 12px;
        color: #232B2E;
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
        align-items: center;
        justify-content: center;
        font-family: Righteous-Regular; }
        @media (min-width: 641px) {
          .showroom-wrap .map-wrap .map-right ul li {
            font-size: 18px; } }
        @media (min-width: 801px) {
          .showroom-wrap .map-wrap .map-right ul li {
            font-size: 20px; } }
        .showroom-wrap .map-wrap .map-right ul li span {
          display: flex;
          width: 30px;
          height: 30px;
          background: #6E3A16;
          border-radius: 50px;
          align-items: center;
          justify-content: center; }
          @media (min-width: 801px) {
            .showroom-wrap .map-wrap .map-right ul li span {
              width: 38px;
              height: 38px; } }
          .showroom-wrap .map-wrap .map-right ul li span svg {
            width: 15px;
            height: 15px; }
            @media (min-width: 801px) {
              .showroom-wrap .map-wrap .map-right ul li span svg {
                width: 15px;
                height: 15px; } }
        .showroom-wrap .map-wrap .map-right ul li a {
          text-decoration: none; }
          .showroom-wrap .map-wrap .map-right ul li a:hover {
            color: #6E3A16; }
        .showroom-wrap .map-wrap .map-right ul li p {
          margin: 0;
          width: calc(100% - 52px); }
          @media (min-width: 801px) {
            .showroom-wrap .map-wrap .map-right ul li p {
              width: calc(100% - 52px); } }
        .showroom-wrap .map-wrap .map-right ul li + li {
          margin-top: 14px; }
    .showroom-wrap .map-wrap .map-right .unique-quote {
      margin: 0; }
      @media (min-width: 641px) {
        .showroom-wrap .map-wrap .map-right .unique-quote {
          max-width: 250px;
          padding: 16px; } }

.showroom-wrap .calendly-wrap {
  margin: 40px 0; }
  @media (min-width: 801px) {
    .showroom-wrap .calendly-wrap {
      margin: 94px 0 59px; } }

.showroom-appointment {
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media (min-width: 801px) {
    .showroom-appointment {
      flex-direction: row; } }
  .showroom-appointment .showroom-location {
    margin: 0 0 6rem;
    width: 100%; }
    @media (min-width: 801px) {
      .showroom-appointment .showroom-location {
        margin: 0;
        width: 40%; } }
    .showroom-appointment .showroom-location .contact-info {
      text-align: center; }
      .showroom-appointment .showroom-location .contact-info img {
        display: none;
        max-width: 280px;
        margin: 0 auto 1rem;
        width: 100%; }
      .showroom-appointment .showroom-location .contact-info ul {
        list-style: none;
        margin: 0 0 1.7rem;
        padding: 0; }
        .showroom-appointment .showroom-location .contact-info ul li {
          align-items: center;
          color: #232B2E;
          display: flex;
          font-size: 15px;
          font-family: Righteous-Regular;
          font-weight: 400;
          gap: 12px;
          justify-content: center;
          line-height: 28px;
          margin: 0 0 0.8rem; }
          .showroom-appointment .showroom-location .contact-info ul li span {
            align-items: center;
            background: #6E3A16;
            border-radius: 50px;
            display: flex;
            height: 30px;
            justify-content: center;
            padding: 0.7rem;
            width: 30px; }
            .showroom-appointment .showroom-location .contact-info ul li span svg {
              height: 100%;
              width: 100%; }
          .showroom-appointment .showroom-location .contact-info ul li p {
            font-size: 18px;
            margin: 0; }
          .showroom-appointment .showroom-location .contact-info ul li a {
            text-decoration: none; }
    .showroom-appointment .showroom-location .google-map iframe {
      border-radius: 10px;
      width: 100%; }
  .showroom-appointment .appointment-calendly {
    width: 100%; }
    @media (min-width: 801px) {
      .showroom-appointment .appointment-calendly {
        width: 60%; } }
    .showroom-appointment .appointment-calendly .calendly-widget-wrap .calendly-inline-widget {
      height: 700px;
      min-width: 320px;
      position: relative; }
