
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*!
 * 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 {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}
/**
 * Swiper 11.1.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 21, 2024
 */
@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}
:root{--swiper-theme-color:#007aff}
:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}
.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}
.swiper-vertical>.swiper-wrapper{flex-direction:column}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:initial;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}
.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}
.swiper-horizontal{touch-action:pan-y}
.swiper-vertical{touch-action:pan-x}
.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}
.swiper-slide-invisible-blank{visibility:hidden}
.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}
.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}
.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}
.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}
.swiper-3d .swiper-wrapper{transform-style:preserve-3d}
.swiper-3d{perspective:1200px}
.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}
.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}
.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}
.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}
.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}
.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}
.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid #007aff;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}
.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}
.swiper-lazy-preloader-black{--swiper-preloader-color:#000}
@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}
:root{--swiper-navigation-size:44px}
.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;top:var(--swiper-navigation-top-offset,50%);width:calc(44px/ 44 * 27);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:44px;height:var(--swiper-navigation-size);margin-top:calc(0px - (44px/ 2));margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#007aff;color:var(--swiper-navigation-color,var(--swiper-theme-color))}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}
.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}
.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}
.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center}
.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}
.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;left:var(--swiper-navigation-sides-offset,10px);right:auto}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;right:var(--swiper-navigation-sides-offset,10px);left:auto}
.swiper-button-lock{display:none}
.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:44px;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-feature-settings:;font-variant:normal;font-variant:initial;line-height:1}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;right:var(--swiper-navigation-sides-offset,10px);left:auto}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}
.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}
.swiper-pagination.swiper-pagination-hidden{opacity:0}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:8px;bottom:var(--swiper-pagination-bottom,8px);top:auto;top:var(--swiper-pagination-top,auto);left:0;width:100%}
.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}
.swiper-pagination-bullet{width:8px;width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:8px;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:#000;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:.2;opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}
button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}
.swiper-pagination-bullet:only-child{display:none!important}
.swiper-pagination-bullet-active{opacity:1;opacity:var(--swiper-pagination-bullet-opacity, 1);background:#007aff;background:var(--swiper-pagination-color,var(--swiper-theme-color))}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:8px;right:var(--swiper-pagination-right,8px);left:auto;left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px;margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}
.swiper-pagination-fraction{color:inherit;color:var(--swiper-pagination-fraction-color,inherit)}
.swiper-pagination-progressbar{background:rgba(0,0,0,.25);background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}
.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}
.swiper-pagination-lock{display:none}
.swiper-scrollbar{border-radius:10px;border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:rgba(0,0,0,.1);background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}
.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}
.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;left:var(--swiper-scrollbar-sides-offset,1%);bottom:4px;bottom:var(--swiper-scrollbar-bottom,4px);top:auto;top:var(--swiper-scrollbar-top,auto);z-index:50;height:4px;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * 1%);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}
.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:auto;left:var(--swiper-scrollbar-left,auto);right:4px;right:var(--swiper-scrollbar-right,4px);top:1%;top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:4px;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * 1%);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:10px;border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-scrollbar-lock{display:none}
.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}
.swiper-slide-zoomed{cursor:move;touch-action:none}
.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}
.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}
.swiper-grid>.swiper-wrapper{flex-wrap:wrap}
.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}
.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}
.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}
.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}
.swiper-fade .swiper-slide-active{pointer-events:auto}
.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube{overflow:visible}
.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}
.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}
.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}
.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}
.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}
.swiper-flip{overflow:visible}
.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}
.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}
.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}
.swiper-cards{overflow:visible}
.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}
/**
 * tom-select.css (v2.3.1)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: #7d7d7d;
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}
.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}
.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}
.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}
/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(0, 8px);
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}
.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}
.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}
.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-moz-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}
.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}
.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}
:root {
  --ts-pr-clear-button: 0;
  --ts-pr-caret: 0;
  --ts-pr-min: .75rem;
}
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}
.ts-control:not(.rtl) {
  padding-right: max(.75rem, 0 + 0) !important;
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-control.rtl {
  padding-left: max(.75rem, 0 + 0) !important;
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-wrapper {
  position: relative;
}
.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}
.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}
.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;box-sizing:border-box;touch-action:manipulation;background:#fff;box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08)}
.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}
.flatpickr-calendar.open{display:inline-block;z-index:99999}
.flatpickr-calendar.animate.open{animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}
.flatpickr-calendar.inline{display:block;position:relative;top:2px}
.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}
.flatpickr-calendar.static.open{z-index:999;display:block}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){box-shadow:none !important}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}
.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}
.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}
.flatpickr-calendar.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}
.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}
.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after{left:auto;right:22px}
.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after{left:50%;right:50%}
.flatpickr-calendar:before{border-width:5px;margin:0 -5px}
.flatpickr-calendar:after{border-width:4px;margin:0 -4px}
.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}
.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}
.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}
.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}
.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}
.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}
.flatpickr-calendar:focus{outline:0}
.flatpickr-wrapper{position:relative;display:inline-block}
.flatpickr-months{display:flex}
.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;overflow:hidden;flex:1 1}
.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{-webkit-user-select:none;-moz-user-select:none;user-select:none;text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9)}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}
.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
      /*rtl:begin:ignore*/left:0/*
      /*rtl:end:ignore*/}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
      /*rtl:begin:ignore*/right:0/*
      /*rtl:end:ignore*/}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9}
.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}
.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px}
.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{transition:fill .1s;fill:inherit}
.numInputWrapper{position:relative;height:auto}
.numInputWrapper input,.numInputWrapper span{display:inline-block}
.numInputWrapper input{width:100%}
.numInputWrapper input::-ms-clear{display:none}
.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}
.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);box-sizing:border-box}
.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}
.numInputWrapper span:active{background:rgba(0,0,0,0.2)}
.numInputWrapper span:after{display:block;content:"";position:absolute}
.numInputWrapper span.arrowUp{top:0;border-bottom:0}
.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}
.numInputWrapper span.arrowDown{top:50%}
.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}
.numInputWrapper span svg{width:inherit;height:auto}
.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}
.numInputWrapper:hover{background:rgba(0,0,0,0.05)}
.numInputWrapper:hover span{opacity:1}
.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;transform:translate3d(0,0,0)}
.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}
.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}
.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block}
.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}
.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}
.flatpickr-current-month input.cur-year{background:transparent;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:baseline;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}
.flatpickr-current-month input.cur-year:focus{outline:0}
.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}
.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:baseline;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}
.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:flex;align-items:center;height:28px}
.flatpickr-weekdays .flatpickr-weekdaycontainer{display:flex;flex:1 1}
span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;flex:1 1;font-weight:bolder}
.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}
.flatpickr-days{position:relative;overflow:hidden;display:flex;align-items:flex-start;width:307.875px}
.flatpickr-days:focus{outline:0}
.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;box-sizing:border-box;display:inline-block;display:flex;flex-wrap:wrap;-ms-flex-wrap:wrap;justify-content:space-around;transform:translate3d(0,0,0);opacity:1}
.dayContainer + .dayContainer{box-shadow:-1px 0 0 #e6e6e6}
.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;justify-content:center;text-align:center}
.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}
.flatpickr-day.today{border-color:#959ea9}
.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}
.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;box-shadow:none;color:#fff;border-color:#569ff7}
.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}
.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){box-shadow:-10px 0 0 #569ff7}
.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}
.flatpickr-day.inRange{border-radius:0;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}
.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}
.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}
.flatpickr-day.week.selected{border-radius:0;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}
.flatpickr-day.hidden{visibility:hidden}
.rangeMode .flatpickr-day{margin-top:1px}
.flatpickr-weekwrapper{float:left}
.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;box-shadow:1px 0 0 #e6e6e6}
.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}
.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}
.flatpickr-innerContainer{display:block;display:flex;box-sizing:border-box;overflow:hidden}
.flatpickr-rContainer{display:inline-block;padding:0;box-sizing:border-box}
.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;box-sizing:border-box;overflow:hidden;display:flex}
.flatpickr-time:after{content:"";display:table;clear:both}
.flatpickr-time .numInputWrapper{flex:1 1;width:40%;height:40px;float:left}
.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}
.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}
.flatpickr-time.hasSeconds .numInputWrapper{width:26%}
.flatpickr-time.time24hr .numInputWrapper{width:49%}
.flatpickr-time input{background:transparent;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}
.flatpickr-time input.flatpickr-hour{font-weight:bold}
.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}
.flatpickr-time input:focus{outline:0;border:0}
.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-self:center}
.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}
.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}
.flatpickr-input[readonly]{cursor:pointer}
@keyframes fpFadeInDown{from{opacity:0;transform:translate3d(0,-20px,0)}to{opacity:1;transform:translate3d(0,0,0)}}
.tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;-webkit-text-decoration:none;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:baseline;vertical-align:initial;white-space:normal}
.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}
.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}
.tox:not([dir=rtl]){direction:ltr;text-align:left}
.tox[dir=rtl]{direction:rtl;text-align:right}
.tox-tinymce{border:2px solid #eee;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}
.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:visible;overflow:initial}
.tox.tox-tinymce-inline .tox-editor-container{overflow:visible;overflow:initial}
.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:2px solid #eee;border-radius:10px;box-shadow:none;overflow:hidden}
.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}
.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}
button::-moz-focus-inner{border:0}
.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}
.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}
.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}
.tox .accessibility-issue__description>div{padding-bottom:4px}
.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}
.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}
.tox .accessibility-issue__repair{margin-top:16px}
.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.1);color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#006ce7}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#006ce7}
.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}
.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}
.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}
.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}
.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}
.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}
.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}
.tox .mce-codemirror{background:#fff;bottom:0;font-size:13px;left:0;position:absolute;right:0;top:0;z-index:1}
.tox .mce-codemirror.tox-inline-codemirror{margin:8px;position:absolute}
.tox .tox-advtemplate .tox-form__grid{flex:1 1}
.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}
.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}
.tox .tox-advtemplate iframe{border-color:#eee;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}
.tox .tox-anchorbar{display:flex;flex:0 0 auto}
.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}
.tox .tox-bar{display:flex;flex:0 0 auto}
.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;-webkit-text-decoration:none;text-decoration:none;text-transform:none;white-space:nowrap}
.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #006ce7;content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}
.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}
.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}
.tox .tox-button:focus:not(:disabled)::before{opacity:1}
.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}
.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}
.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}
.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}
.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}
.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}
.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}
.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}
.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}
.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;-webkit-text-decoration:none;text-decoration:none;text-transform:none}
.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}
.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary.tox-button--enabled{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:rgba(34,47,62,.5)}
.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}
.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#7daee4;background-image:none;border-color:#7daee4;box-shadow:none;color:#222f3e}
.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}
.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}
.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}
.tox .tox-button-link--sm{font-size:14px}
.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}
.tox .tox-button--naked[disabled]{background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:rgba(34,47,62,.5)}
.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}
.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}
.tox .tox-button--naked:active:not(:disabled){background-color:rgba(34,47,62,.18);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}
.tox .tox-button--naked .tox-icon svg{fill:currentColor}
.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}
.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}
.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}
.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}
.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,0.3)}
@media (forced-colors:active){.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:currentColor!important}}
.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}
.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}
.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,0.5)}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,0.5)}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,0.5)}
.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}
.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}
.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}
.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}
.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}
.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}
.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}
.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}
.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}
.tox[dir=rtl] .tox-checkbox__input{right:-10000px}
.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}
.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}
.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}
.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#e3e3e3;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}
.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}
.tox .tox-collection__group-heading{background-color:#fcfcfc;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.tox .tox-collection--list .tox-collection__item{padding:4px 8px}
.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}
.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}
.tox .tox-collection--list .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#fff;color:#222f3e}
.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#006ce7;color:#fff}
@media (forced-colors:active){.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){border:solid 1px}}
.tox .tox-collection--grid .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#a6ccf7;color:#222f3e}
.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#f0f0f0;color:#222f3e;position:relative;z-index:1}
.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7 inset;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border:2px solid highlight}}
.tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#a6ccf7;color:#222f3e}
@media (forced-colors:active){.tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){border-radius:3px;outline:solid 1px}}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e;background-color:#fff;position:relative}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{background-color:#f0f0f0;color:#222f3e}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus{background-color:#f0f0f0;color:#222f3e}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border:2px solid highlight}}
@media (forced-colors:active){.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{border-radius:3px;outline:solid 1px}}
.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}
.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}
.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}
.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1 1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}
.tox .tox-collection__item-accessory{color:currentColor;display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}
.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}
.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}
.tox .tox-collection__item-caret svg{fill:currentColor}
.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,0.5)}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}
.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #e3e3e3;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}
.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}
.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}
.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}
.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}
.tox .tox-collection__item-container{display:flex}
.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}
.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}
.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}
.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}
.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}
.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}
.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}
.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}
.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}
@media (forced-colors:active){.tox .tox-hue-slider,.tox .tox-rgb-form .tox-rgba-preview{background-color:currentColor!important;border:1px solid highlight!important;forced-color-adjust:none}}
.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}
.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}
.tox .tox-sv-palette-spectrum{height:100%}
.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}
.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}
.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}
.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}
.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}
.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}
.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}
.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}
.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}
.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}
.tox .tox-rgb-form input{min-width:6em}
.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important;box-shadow:0 0 0 1px red}
.tox .tox-rgb-container{position:relative}
.tox .tox-rgb-form .tox-invalid-icon{align-content:center;align-items:center;display:none;height:100%;position:absolute;right:0;top:0}
.tox .tox-rgb-form .tox-invalid-icon .tox-control-wrap__status-icon-invalid{margin:0}
.tox .tox-rgb-warning-note{background-color:#f5cccc;border:1px solid #f0b3b3;border-radius:3px;color:#77181f;padding:3px}
.tox input.tox-invalid+.tox-invalid-icon{display:flex}
.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}
.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}
.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}
.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}
.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}
.tox[dir=rtl] .tox-sv-palette{margin-left:15px}
.tox[dir=rtl] .tox-hue-slider{margin-left:15px}
.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}
.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}
.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}
.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}
.tox .tox-swatches__row{display:flex}
@media (forced-colors:active){.tox .tox-swatches__row{forced-color-adjust:none}}
.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}
.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}
.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}
.tox .tox-swatch--remove svg path{stroke:#e74c3c}
.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}
.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}
.tox .tox-swatches__picker-btn:hover{background:#f0f0f0}
.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}
.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}
.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}
.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}
.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}
.tox .tox-conversations{display:flex;flex-direction:column;position:relative;height:100%;min-width:300px;max-width:300px;width:300px}
.tox .tox-conversations__header{align-items:center;display:flex;justify-content:space-between;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 12px;background:#fff}
.tox .tox-conversations__title{font-size:20px;font-weight:400;padding:8px 0 8px 0;color:#222f3e;line-height:28px}
.tox .tox-comment{background:#fff;border:1px solid #eee;border-radius:6px;padding:8px 8px 16px 8px;position:relative}
.tox .tox-comment:hover{box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}
.tox .tox-comment.tox-comment--selected{background-color:#fff2c9;border:1px solid #ffcf30;box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}
.tox .tox-comment.tox-comment--selected:focus{border:2px solid #006ce7;margin:-1px}
.tox .tox-comment.tox-comment--selected:focus:not(:first-child){margin-top:7px}
.tox .tox-comment.tox-comment--selected .tox-comment__single{margin-bottom:12px}
.tox .tox-comment.tox-comment--selected .tox-comment__single:focus{position:relative}
.tox .tox-comment.tox-comment--selected .tox-comment__single:focus::after{top:-9px;pointer-events:none;position:absolute;content:"";display:block;bottom:-9px;left:-9px;right:-9px;border-radius:6px;border:2px solid #006ce7}
.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}
.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}
.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:none;text-transform:initial;transition:max-height .5s cubic-bezier(0, 1, 0, 1);white-space:pre-wrap}
.tox .tox-comment__body.tox-comment__body--expanded{max-height:100em;transition:max-height 1s ease-in-out}
.tox .tox-comment__body.tox-comment__body--pending{transition:max-height 0s}
.tox .tox-comment__body p{margin:0}
.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}
.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}
.tox .tox-comment__loading-text>div{padding-bottom:16px}
.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}
.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}
.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}
.tox .tox-comment__expander{padding-top:8px}
.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}
.tox .tox-comment__expander p:focus{font-weight:700}
.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}
.tox .tox-tbtn.tox-comment__mention-btn{display:flex;width:34px;height:34px;padding:5px;justify-content:center;align-items:center;margin:0;background-color:transparent}
.tox .tox-comment-thread{background:#fff;position:relative;border-radius:6px;background-color:transparent}
.tox .tox-comment-thread>:not(:first-child){margin-top:8px}
.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}
.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}
.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}
.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}
.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}
.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}
.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}
.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto;padding:12px;scroll-behavior:smooth}
.tox .tox-comment--disappearing{transition:opacity .5s ease}
.tox .tox-comment[data-transitioning-destination=deleting]{opacity:0}
.tox .tox-skeleton .tox-skeleton__line{height:16px;width:100%;background:linear-gradient(to right,rgba(240,240,240,.5) 8%,rgba(240,240,240,.7) 18%,rgba(240,240,240,.5) 33%);animation:wave 2s infinite ease-out}
.tox .tox-skeleton .tox-skeleton__circle{height:36px;width:36px;margin-right:8px;border-radius:100%;background:linear-gradient(to right,rgba(240,240,240,.5) 8%,rgba(240,240,240,.7) 18%,rgba(240,240,240,.5) 33%);animation:wave 2s infinite ease-out}
@keyframes wave{0%{background-position:-268px 0}100%{background-position:268px 0}}
.tox .tox-ring-loader{width:10px;height:10px;border:1px solid #fff;border-bottom-color:transparent;border-radius:50%;display:inline-block;box-sizing:border-box;animation:rotation 1s linear infinite}
@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}
.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}
.tox[dir=rtl] .tox-comment__edit{margin-right:8px}
.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}
.tox .tox-user{align-items:center;display:flex}
.tox .tox-user__avatar svg{fill:rgba(34,47,62,0.7)}
.tox .tox-user__avatar img{border-radius:50%;height:36px;-o-object-fit:cover;object-fit:cover;vertical-align:middle;width:36px}
.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}
.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}
.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}
.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}
.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}
.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}
.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}
.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}
.tox .tox-dialog{background-color:#fff;border-color:#eee;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}
.tox .tox-dialog-inline{z-index:1100}
.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}
.tox .tox-dialog__header .tox-button{z-index:1}
.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}
.tox .tox-dialog__draghandle:active{cursor:grabbing}
.tox .tox-dialog__dismiss{margin-left:auto}
.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}
.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1 1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}
.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}
@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}
.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;-webkit-text-decoration:none;text-decoration:none}
.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}
.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #006ce7;color:#006ce7}
@media (forced-colors:active){.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid highlight;color:highlight}}
.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1 1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}
.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}
.tox .tox-dialog__body-content>:first-child{margin-top:0}
.tox .tox-dialog__body-content>:last-child{margin-bottom:0}
.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}
.tox .tox-dialog__body-content a{color:#006ce7;cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#003c81;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #006ce7;outline-offset:2px}
.tox .tox-dialog__body-content a:active{color:#00244e;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-dialog__body-content svg{fill:#222f3e}
.tox .tox-dialog__body-content strong{font-weight:700}
.tox .tox-dialog__body-content ul{list-style-type:disc}
.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}
.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}
.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}
.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}
.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}
.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}
.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}
.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}
.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}
.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}
.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}
.tox .tox-dialog--width-lg{height:650px;max-width:1200px}
.tox .tox-dialog--fullscreen{height:100%;max-width:100%}
.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}
.tox .tox-dialog--width-md{max-width:800px}
.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}
.tox .tox-dialog__body-content--centered{text-align:center}
.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}
.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}
.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}
.tox .tox-dialog__table{border-collapse:collapse;width:100%}
.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}
.tox .tox-dialog__table thead th:first-child{padding-right:8px}
.tox .tox-dialog__table tbody tr{border-bottom:1px solid #626262}
.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}
.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}
.tox .tox-dialog__table td:first-child{padding-right:8px}
.tox .tox-dialog__iframe{min-height:200px}
.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}
.tox .tox-navobj-bordered{position:relative}
.tox .tox-navobj-bordered::before{border:1px solid #eee;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}
.tox .tox-navobj-bordered iframe{border-radius:6px}
.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}
.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}
.tox .tox-dialog__body-iframe{display:flex;flex:1 1;flex-direction:column}
.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1 1}
.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1 1;height:100%}
.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}
.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}
.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}
.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}
.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}
.tox[dir=rtl] .tox-dialog__body{text-align:right}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}
@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}
.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}
body.tox-dialog__disable-scroll{overflow:hidden}
.tox .tox-dropzone-container{display:flex;flex:1 1}
.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #eee;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}
.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}
.tox .tox-edit-area{display:flex;flex:1 1;overflow:hidden;position:relative}
.tox .tox-edit-area::before{border:2px solid #006ce7;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}
@media (forced-colors:active){.tox .tox-edit-area::before{border:2px solid highlight}}
.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1 1;height:100%;position:absolute;width:100%}
.tox.tox-edit-focus .tox-edit-area::before{opacity:1}
.tox.tox-inline-edit-area{border:1px dotted #eee}
.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}
.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}
.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:0 2px 2px -2px rgba(34,47,62,.1),0 8px 8px -4px rgba(34,47,62,.07);padding:4px 0}
.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}
.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #e3e3e3;box-shadow:none}
.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15);padding:4px 0}
.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15)}
.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}
.tox-editor-dock-fadeout{opacity:0;visibility:hidden}
.tox-editor-dock-fadein{opacity:1;visibility:visible}
.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}
.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}
.tox .tox-control-wrap{flex:1 1;position:relative}
.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}
.tox .tox-control-wrap svg{display:block}
.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}
.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}
.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}
.tox .tox-control-wrap__status-icon-valid svg{fill:green}
.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}
.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}
.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}
.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}
.tox .tox-custom-preview{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;flex:1 1;padding:8px}
.tox .tox-autocompleter{max-width:25em}
.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}
.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}
.tox .tox-color-input{display:flex;position:relative;z-index:1}
.tox .tox-color-input .tox-textfield{z-index:-1}
.tox .tox-color-input span{border-color:rgba(34 47 3.1%);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}
@media (forced-colors:active){.tox .tox-color-input span{border-color:currentColor;border-width:2px!important;forced-color-adjust:none}}
.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}
.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}
@media (forced-colors:active){.tox .tox-color-input span::before{border:none}}
.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}
.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}
.tox:not([dir=rtl]) .tox-color-input span{left:6px}
.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}
.tox[dir=rtl] .tox-color-input span{right:6px}
.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}
.tox .tox-toolbar-label{padding:0 8px}
.tox[dir=rtl] .tox-label{padding:0 0 0 8px}
.tox .tox-form{display:flex;flex:1 1;flex-direction:column}
.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}
.tox .tox-form-group--maximize{flex:1 1}
.tox .tox-form__group--error{color:#c00}
.tox .tox-form__group--collection{display:flex}
.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}
.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}
.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}
.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}
.tox .tox-form__controls-h-stack{align-items:center;display:flex}
.tox .tox-form__group--inline{align-items:center;display:flex}
.tox .tox-form__group--stretched{display:flex;flex:1 1;flex-direction:column}
.tox .tox-form__group--stretched .tox-textarea{flex:1 1}
.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1 1}
.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1 1;height:100%}
.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}
.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}
.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}
.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}
.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}
.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}
.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}
.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:none;box-shadow:initial;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}
.tox .tox-naked-btn svg{display:block;fill:#222f3e}
.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}
.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}
.tox .tox-listboxfield{cursor:pointer;position:relative}
.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}
.tox .tox-listbox__select-label{cursor:default;flex:1 1;margin:0 4px}
.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}
.tox .tox-listbox__select-chevron svg{fill:#222f3e}
@media (forced-colors:active){.tox .tox-listbox__select-chevron svg{fill:currentColor!important}}
.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}
.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}
.tox[dir=rtl] .tox-listboxfield svg{left:8px}
.tox .tox-selectfield{cursor:pointer;position:relative}
.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}
.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}
.tox .tox-selectfield select::-ms-expand{display:none}
.tox .tox-selectfield select:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}
.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}
.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}
.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}
.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}
.tox[dir=rtl] .tox-selectfield svg{left:8px}
.tox .tox-textarea-wrap{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1 1;overflow:hidden}
.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}
.tox .tox-textarea-wrap .tox-textarea{border:none}
.tox .tox-textarea-wrap .tox-textarea:focus{border:none}
.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}
.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}
.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}
.tox.tox-tinymce.tox-fullscreen{background-color:transparent}
.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}
.tox .tox-help__more-link{list-style:none;margin-top:1em}
.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}
.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}
.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}
.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}
.tox .tox-image-tools .tox-spacer{flex:1 1}
.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}
.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}
.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}
.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}
.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}
.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}
.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}
.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}
.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}
.tox .tox-insert-table-picker{background-color:#fff;display:flex;flex-wrap:wrap;width:170px}
.tox .tox-insert-table-picker>div{border-color:#eee;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}
.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}
.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:#006ce7;border-color:#eee}
@media (forced-colors:active){.tox .tox-insert-table-picker .tox-insert-table-picker__selected{border-color:Highlight;filter:contrast(50%)}}
.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}
.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}
.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}
.tox .tox-menu{background-color:#fff;border:1px solid transparent;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}
.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}
.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}
.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}
@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}
.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}
.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}
.tox .tox-promotion+.tox-menubar{grid-column:1}
.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}
.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}
.tox .tox-promotion-link:hover{background-color:#b4d7ff}
.tox .tox-promotion-link:focus{background-color:#d9edf7}
.tox .tox-mbtn{align-items:center;background:#fff;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;padding:0 4px;text-transform:none;width:auto}
.tox .tox-mbtn[disabled]{background-color:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-mbtn:focus:not(:disabled){background:#fff;border:0;box-shadow:none;color:#222f3e;position:relative;z-index:1}
.tox .tox-mbtn:focus:not(:disabled)::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-mbtn:focus:not(:disabled)::after{border:2px solid highlight}}
.tox .tox-mbtn--active,.tox .tox-mbtn:not(:disabled).tox-mbtn--active:focus{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}
.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}
.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}
.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}
.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}
.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-left:auto;margin-right:auto;margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in;width:-moz-max-content;width:max-content}
.tox .tox-notification a{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification p{font-size:14px;font-weight:400}
.tox .tox-notification:focus{border-color:#006ce7;box-shadow:0 0 0 1px #006ce7}
.tox .tox-notification--in{opacity:1}
.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}
.tox .tox-notification--success p{color:#222f3e}
.tox .tox-notification--success a{color:#517342}
.tox .tox-notification--success a:focus,.tox .tox-notification--success a:hover{color:#24321d;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--success a:focus-visible{border-radius:1px;outline:2px solid #517342;outline-offset:2px}
.tox .tox-notification--success a:active{color:#0d120a;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--success svg{fill:#222f3e}
.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}
.tox .tox-notification--error p{color:#222f3e}
.tox .tox-notification--error a{color:#77181f}
.tox .tox-notification--error a:focus,.tox .tox-notification--error a:hover{color:#220709;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--error a:focus-visible{border-radius:1px;outline:2px solid #77181f;outline-offset:2px}
.tox .tox-notification--error a:active{color:#000;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--error svg{fill:#222f3e}
.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}
.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}
.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}
.tox .tox-notification--warn a:focus,.tox .tox-notification--warn a:hover,.tox .tox-notification--warning a:focus,.tox .tox-notification--warning a:hover{color:#2c280d;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--warn a:focus-visible,.tox .tox-notification--warning a:focus-visible{border-radius:1px;outline:2px solid #7a6e25;outline-offset:2px}
.tox .tox-notification--warn a:active,.tox .tox-notification--warning a:active{color:#050502;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}
.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}
.tox .tox-notification--info p{color:#222f3e}
.tox .tox-notification--info a{color:#2a64a6}
.tox .tox-notification--info a:focus,.tox .tox-notification--info a:hover{color:#163355;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--info a:focus-visible{border-radius:1px;outline:2px solid #2a64a6;outline-offset:2px}
.tox .tox-notification--info a:active{color:#0b1a2c;-webkit-text-decoration:underline;text-decoration:underline}
.tox .tox-notification--info svg{fill:#222f3e}
.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}
.tox .tox-notification__body>*{margin:0}
.tox .tox-notification__body>*+*{margin-top:1rem}
.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}
.tox .tox-notification__icon svg{display:block}
.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}
.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}
.tox .tox-notification-container-dock-fadeout{opacity:0;visibility:hidden}
.tox .tox-notification-container-dock-fadein{opacity:1;visibility:visible}
.tox .tox-notification-container-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}
.tox .tox-notification-container-dock-transition.tox-notification-container-dock-fadein{transition-delay:0s}
.tox .tox-pop{display:inline-block;position:relative}
.tox .tox-pop--resizing{transition:width .1s ease}
.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}
.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}
.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}
.tox .tox-pop__dialog{background-color:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}
.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}
.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}
.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}
@media (forced-colors:active){.tox .tox-pop::after,.tox .tox-pop::before{content:none}}
.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}
.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}
.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}
.tox .tox-pop.tox-pop--bottom::before{border-color:#eee transparent transparent transparent;border-width:9px;margin-left:-9px}
.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}
.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}
.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #eee transparent;border-width:9px;margin-left:-9px}
.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}
.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}
.tox .tox-pop.tox-pop--left::before{border-color:transparent #eee transparent transparent;border-width:10px;margin-left:-19px}
.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}
.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}
.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #eee;border-width:10px;margin-left:-1px}
.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}
.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}
.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}
.tox .tox-sidebar{background-color:#f0f0f0;display:flex;flex-direction:row;justify-content:flex-end}
.tox .tox-sidebar__slider{display:flex;overflow:hidden}
.tox .tox-sidebar__pane-container{display:flex}
.tox .tox-sidebar__pane{display:flex}
.tox .tox-sidebar--sliding-closed{opacity:0}
.tox .tox-sidebar--sliding-open{opacity:1}
.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}
.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}
.tox.tox-platform-touch .tox-selector{height:12px;width:12px}
.tox .tox-slider{align-items:center;display:flex;flex:1 1;height:24px;justify-content:center;position:relative}
.tox .tox-slider__rail{background-color:transparent;border:1px solid #eee;border-radius:6px;height:10px;min-width:120px;width:100%}
.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}
.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}
.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}
.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}
.tox .tox-source-code{overflow:auto}
.tox .tox-spinner{display:flex}
.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}
.tox .tox-spinner>div:first-child{animation-delay:-.32s}
.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}
@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}
.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}
.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}
.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #e3e3e3;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}
.tox .tox-statusbar__path{display:flex;flex:1 1 auto;text-overflow:ellipsis;white-space:nowrap}
.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}
.tox .tox-statusbar__help-text{text-align:center}
.tox .tox-statusbar__text-container{align-items:flex-start;display:flex;flex:1 1 auto;height:16px;justify-content:space-between}
@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex-grow: 0;flex-shrink: 0;flex-basis: calc(100% / 3)}}
.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}
.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}
.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}
.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}
.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}
@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}
.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);position:relative;-webkit-text-decoration:none;text-decoration:none}
.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}
.tox .tox-statusbar a:focus-visible::after,.tox .tox-statusbar__path-item:focus-visible::after,.tox .tox-statusbar__wordcount:focus-visible::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-statusbar a:focus-visible::after,.tox .tox-statusbar__path-item:focus-visible::after,.tox .tox-statusbar__wordcount:focus-visible::after{border:2px solid highlight}}
.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,0.8);height:1em;margin-left:.3em;width:auto}
@media (forced-colors:active){.tox .tox-statusbar__branding svg{fill:currentColor}}
.tox .tox-statusbar__branding a{align-items:center;display:inline-flex}
.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}
.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-bottom:3px;margin-left:4px;margin-right:calc(3px - 8px);margin-top:3px;padding-bottom:0;padding-left:0;padding-right:0;position:relative}
.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,0.5)}
.tox .tox-statusbar__resize-handle:focus svg,.tox .tox-statusbar__resize-handle:hover svg{fill:#222f3e}
.tox .tox-statusbar__resize-handle:focus-visible{background-color:transparent;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px transparent}
.tox .tox-statusbar__resize-handle:focus-visible::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-statusbar__resize-handle:focus-visible::after{border:2px solid highlight}}
.tox .tox-statusbar__resize-handle:only-child{margin-left:auto}
.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}
.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}
.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}
.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}
.tox[dir=rtl] .tox-statusbar__branding svg{margin-left:0;margin-right:.3em}
.tox .tox-throbber{z-index:1299}
.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}
.tox .tox-tbtn{align-items:center;background:#fff;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;padding:0;text-transform:none;width:34px}
@media (forced-colors:active){.tox .tox-tbtn.tox-tbtn:hover,.tox .tox-tbtn:hover{outline:1px dashed currentColor}.tox .tox-tbtn.tox-tbtn--active,.tox .tox-tbtn.tox-tbtn--enabled,.tox .tox-tbtn.tox-tbtn--enabled:focus,.tox .tox-tbtn.tox-tbtn--enabled:hover,.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){outline:1px solid currentColor;position:relative}}
.tox .tox-tbtn svg{display:block;fill:#222f3e}
@media (forced-colors:active){.tox .tox-tbtn svg{fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--enabled,.tox .tox-tbtn svg:focus:not(.tox-tbtn--disabled){fill:currentColor!important}.tox .tox-tbtn svg .tox-tbtn:disabled,.tox .tox-tbtn svg .tox-tbtn:disabled:hover,.tox .tox-tbtn svg.tox-tbtn--disabled,.tox .tox-tbtn svg.tox-tbtn--disabled:hover{filter:contrast(0%)}}
.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}
.tox .tox-tbtn:focus{background:#fff;border:0;box-shadow:none;position:relative;z-index:1}
.tox .tox-tbtn:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-tbtn:focus::after{border:2px solid highlight}}
.tox .tox-tbtn:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}
.tox .tox-tbtn:hover svg{fill:#222f3e}
.tox .tox-tbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}
.tox .tox-tbtn:active svg{fill:#222f3e}
.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,0.5)}
.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,0.5)}
.tox .tox-tbtn--active,.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:focus,.tox .tox-tbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e;position:relative}
.tox .tox-tbtn--active>*,.tox .tox-tbtn--enabled:focus>*,.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}
.tox .tox-tbtn--active svg,.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:focus svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}
.tox .tox-tbtn--active.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:focus.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,0.5)}
.tox .tox-tbtn--enabled:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-tbtn--enabled:focus::after{border:2px solid highlight}}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}
.tox .tox-tbtn:active>*{transform:none}
.tox .tox-tbtn--md{height:42px;width:51px}
.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}
.tox .tox-tbtn--return{align-self:stretch;height:auto;height:initial;width:16px}
.tox .tox-tbtn--labeled{padding:0 4px;width:auto;width:initial}
.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}
.tox .tox-number-input{background:#f7f7f7;border-radius:3px;display:flex;margin:6px 1px 5px 0;position:relative;width:auto}
.tox .tox-number-input:focus{background:#f7f7f7}
.tox .tox-number-input:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-number-input:focus::after{border:2px solid highlight}}
.tox .tox-number-input .tox-input-wrapper{display:flex;pointer-events:none;position:relative;text-align:center}
.tox .tox-number-input .tox-input-wrapper:focus{background-color:#f7f7f7;z-index:1}
.tox .tox-number-input .tox-input-wrapper:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-number-input .tox-input-wrapper:focus::after{border:2px solid highlight}}
.tox .tox-number-input .tox-input-wrapper:has(input:focus)::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-number-input .tox-input-wrapper:has(input:focus)::after{border:2px solid highlight}}
.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;position:relative;width:60px}
.tox .tox-number-input input:hover{background:#f0f0f0;color:#222f3e}
.tox .tox-number-input input:focus{background-color:#f7f7f7}
.tox .tox-number-input input:disabled{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-number-input button{color:#222f3e;height:28px;position:relative;text-align:center;width:24px}
@media (forced-colors:active){.tox .tox-number-input button:active,.tox .tox-number-input button:focus,.tox .tox-number-input button:hover{outline:1px solid currentColor!important}}
.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}
@media (forced-colors:active){.tox .tox-number-input button svg,.tox .tox-number-input button svg:active,.tox .tox-number-input button svg:hover{fill:currentColor!important}.tox .tox-number-input button svg:disabled{filter:contrast(0)}}
.tox .tox-number-input button:focus{background:#f7f7f7;z-index:1}
.tox .tox-number-input button:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-number-input button:focus::after{border:2px solid highlight}}
.tox .tox-number-input button:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}
.tox .tox-number-input button:hover svg{fill:#222f3e}
.tox .tox-number-input button:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}
.tox .tox-number-input button:active svg{fill:#222f3e}
.tox .tox-number-input button:disabled{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,0.5)}
.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}
.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}
.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#f7f7f7}
.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}
.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:auto;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}
.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,0.5)}
@media (forced-colors:active){.tox .tox-tbtn__select-chevron svg{fill:currentColor}}
.tox .tox-tbtn--bespoke{background:#f7f7f7}
.tox .tox-tbtn--bespoke:focus{background:#f7f7f7}
.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}
.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}
.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}
.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0}
.tox .tox-split-button:hover{box-shadow:0 0 0 1px #f0f0f0 inset}
.tox .tox-split-button:focus{background:#fff;box-shadow:none;color:#222f3e;position:relative;z-index:1}
.tox .tox-split-button:focus::after{pointer-events:none;border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}
@media (forced-colors:active){.tox .tox-split-button:focus::after{border:2px solid highlight}}
.tox .tox-split-button>*{border-radius:0}
.tox .tox-split-button>:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}
.tox .tox-split-button>:nth-child(2){border-bottom-right-radius:3px;border-top-right-radius:3px}
.tox .tox-split-button__chevron{width:16px}
.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,0.5)}
@media (forced-colors:active){.tox .tox-split-button__chevron svg{fill:currentColor}}
.tox .tox-split-button .tox-tbtn{margin:0}
.tox .tox-split-button:focus .tox-tbtn{background-color:transparent}
.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:#fff;box-shadow:none;color:rgba(34,47,62,.5)}
.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}
.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}
.tox.tox-platform-touch .tox-split-button__chevron{width:20px}
.tox .tox-split-button.tox-tbtn--disabled svg .tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg .tox-icon-text-color__color{opacity:.3}
.tox .tox-toolbar-overlord{background-color:#fff}
.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#e3e3e3 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}
.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}
.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}
.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}
.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}
.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}
.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}
@media (forced-colors:active){.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{outline:1px solid currentColor}}
.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}
.tox .tox-pop .tox-toolbar{border-width:0}
.tox .tox-toolbar--no-divider{background-image:none}
.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}
.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}
.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}
@media (forced-colors:active){.tox.tox-tinymce-aux .tox-toolbar__overflow{border:solid}}
.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}
.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}
.tox .tox-toolbar__group--pull-right{margin-left:auto}
.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}
.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}
.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}
.tox .tox-tooltip{display:inline-block;max-width:15em;padding:8px;pointer-events:none;position:relative;width:-moz-max-content;width:max-content;z-index:1150}
.tox .tox-tooltip__body{background-color:#222f3e;border-radius:6px;box-shadow:none;color:#fff;font-size:12px;font-style:normal;font-weight:600;overflow-wrap:break-word;padding:4px 6px;text-transform:none}
@media (forced-colors:active){.tox .tox-tooltip__body{outline:outset 1px}}
.tox .tox-tooltip__arrow{position:absolute}
.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}
.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}
.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}
.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}
.tox .tox-tree{display:flex;flex-direction:column}
.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}
.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}
.tox .tox-tree .tox-trbtn:focus{background:#f0f0f0;border:0;box-shadow:none}
.tox .tox-tree .tox-trbtn:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}
.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}
.tox .tox-tree .tox-trbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}
.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}
.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}
.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,0.5)}
.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}
.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}
.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}
.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}
.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}
.tox .tox-tree .tox-trbtn:active>*{transform:none}
.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:auto;height:initial;width:16px}
.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:auto;width:initial}
.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}
.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}
.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}
.tox .tox-tree .tox-tree--leaf__label{font-weight:400}
.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}
.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}
.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}
.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}
.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}
.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}
.tox .tox-tree .tox-icon-custom-state{flex-grow:1;display:flex;justify-content:flex-end}
.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}
.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}
.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}
.tox .tox-revisionhistory__pane{padding:0!important}
.tox .tox-revisionhistory__container{display:flex;flex-direction:column;height:100%}
.tox .tox-revisionhistory{background-color:#fff;border-top:1px solid #f0f0f0;display:flex;flex:1 1;height:100%;margin-top:8px;overflow-x:auto;overflow-y:hidden;position:relative;width:100%}
.tox .tox-revisionhistory--align-right{margin-left:auto}
.tox .tox-revisionhistory__iframe{flex:1 1}
.tox .tox-revisionhistory__sidebar{display:flex;flex-direction:column;height:100%;min-width:248px;width:316px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__sidebar-title{background-color:#fff;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);color:#222f3e;font-size:20px;font-weight:400;line-height:28px;padding:12px;z-index:1}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions{background-color:#f0f0f0;display:flex;flex:1 1;flex-direction:column;gap:12px;overflow-y:auto;padding:10px 12px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus{height:100%;position:relative;z-index:1}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;bottom:1px;left:1px;right:1px;top:1px}
@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after{border:2px solid highlight}}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card{background-color:#fff;border:1px solid #f0f0f0;border-radius:6px;color:#222f3e;cursor:pointer;display:flex;flex-direction:column;font-size:14px;gap:12px;padding:12px;width:100%}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:hover{box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus{position:relative;z-index:1}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7 #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;box-shadow:0 0 0 2px #006ce7;box-shadow:0 0 0 2px #006ce7!important}
@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after{border:2px solid highlight}}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected{background-color:#fff5cc;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);position:relative}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7 #e3b82a;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;box-shadow:0 0 0 2px #e3b82a}
@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after{border:2px solid highlight}}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-date{display:flex;gap:12px;justify-content:space-between}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-date-label{font-size:16px;line-height:24px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-label{font-size:12px;font-weight:600;line-height:24px;padding:0}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-author{align-items:center;display:flex;flex:1 0;gap:8px;height:36px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-author-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;font-weight:700;line-height:18px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__avatar{border-radius:50%;height:36px;-o-object-fit:cover;object-fit:cover;vertical-align:middle;width:36px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__norevision{color:rgba(34,47,62,.7);font-size:16px;line-height:24px;padding:5px 5.5px}
.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-check-icon{color:#222f3e;height:24px}
.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1 1;flex-direction:column;height:100%}
.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}
.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:10px 10px 2px 10px;position:relative}
.tox .tox-view__label{color:#222f3e;font-weight:700;line-height:24px;padding:4px 16px;text-align:center;white-space:nowrap}
.tox .tox-view__label--normal{font-size:16px}
.tox .tox-view__label--large{font-size:20px}
.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}
.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}
.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;overflow-x:auto;padding:10px 10px 2px 10px}
.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}
.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}
.tox .tox-view__pane{height:100%;padding:8px;position:relative;width:100%}
.tox .tox-view__pane_panel{border:1px solid #eee;border-radius:6px}
.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}
.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}
.tox .tox-well{border:1px solid #eee;border-radius:6px;padding:8px;width:100%}
.tox .tox-well>:first-child{margin-top:0}
.tox .tox-well>:last-child{margin-bottom:0}
.tox .tox-well>:only-child{margin:0}
.tox .tox-custom-editor{border:1px solid #eee;border-radius:6px;display:flex;flex:1 1;overflow:hidden;position:relative}
.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}
.tox .tox-tab{cursor:pointer}
.tox .tox-dialog__content-js{display:flex;flex:1 1}
.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1 1}
@tailwind base;
@tailwind components;
@tailwind utilities;
/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: "Font Awesome 6 Free";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: 900;
  font-weight: var(--fa-style, 900);
}
.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab,
.fa-sharp-solid,
.fa-classic,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}
.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}
.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-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}
.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}
.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}
.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}
.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}
.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: calc(-1 * 2em);
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: 2em;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.fa-border {
  border-color: #eee;
  border-color: var(--fa-border-color, #eee);
  border-radius: 0.1em;
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: solid;
  border-style: var(--fa-border-style, solid);
  border-width: 0.08em;
  border-width: var(--fa-border-width, 0.08em);
  padding: 0.2em 0.25em 0.15em;
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
  float: left;
  margin-right: 0.3em;
  margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
  float: right;
  margin-left: 0.3em;
  margin-left: var(--fa-pull-margin, 0.3em);
}
.fa-beat {
  animation-name: fa-beat;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.fa-fade {
  animation-name: fa-fade;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-flip {
  animation-name: fa-flip;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-shake {
  animation-name: fa-shake;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: linear;
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin {
  animation-name: fa-spin;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 2s;
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: linear;
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin-reverse {
  --fa-animation-direction: reverse;
}
.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: steps(8);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.25);
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-0.5em);
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-0.125em);
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: 0.4;
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: 0.4;
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.125);
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(0, 1, 0, -180deg);
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}
.fa-rotate-180 {
  transform: rotate(180deg);
}
.fa-rotate-270 {
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}
.fa-rotate-by {
  transform: rotate(0);
  transform: rotate(var(--fa-rotate-angle, 0));
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: auto;
  z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
  color: var(--fa-inverse, #fff);
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}
.fa-1::before {
  content: "\31 ";
}
.fa-2::before {
  content: "\32 ";
}
.fa-3::before {
  content: "\33 ";
}
.fa-4::before {
  content: "\34 ";
}
.fa-5::before {
  content: "\35 ";
}
.fa-6::before {
  content: "\36 ";
}
.fa-7::before {
  content: "\37 ";
}
.fa-8::before {
  content: "\38 ";
}
.fa-9::before {
  content: "\39 ";
}
.fa-fill-drip::before {
  content: "\f576";
}
.fa-arrows-to-circle::before {
  content: "\e4bd";
}
.fa-circle-chevron-right::before {
  content: "\f138";
}
.fa-chevron-circle-right::before {
  content: "\f138";
}
.fa-at::before {
  content: "\@";
}
.fa-trash-can::before {
  content: "\f2ed";
}
.fa-trash-alt::before {
  content: "\f2ed";
}
.fa-text-height::before {
  content: "\f034";
}
.fa-user-xmark::before {
  content: "\f235";
}
.fa-user-times::before {
  content: "\f235";
}
.fa-stethoscope::before {
  content: "\f0f1";
}
.fa-message::before {
  content: "\f27a";
}
.fa-comment-alt::before {
  content: "\f27a";
}
.fa-info::before {
  content: "\f129";
}
.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}
.fa-compress-alt::before {
  content: "\f422";
}
.fa-explosion::before {
  content: "\e4e9";
}
.fa-file-lines::before {
  content: "\f15c";
}
.fa-file-alt::before {
  content: "\f15c";
}
.fa-file-text::before {
  content: "\f15c";
}
.fa-wave-square::before {
  content: "\f83e";
}
.fa-ring::before {
  content: "\f70b";
}
.fa-building-un::before {
  content: "\e4d9";
}
.fa-dice-three::before {
  content: "\f527";
}
.fa-calendar-days::before {
  content: "\f073";
}
.fa-calendar-alt::before {
  content: "\f073";
}
.fa-anchor-circle-check::before {
  content: "\e4aa";
}
.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}
.fa-volleyball::before {
  content: "\f45f";
}
.fa-volleyball-ball::before {
  content: "\f45f";
}
.fa-arrows-up-to-line::before {
  content: "\e4c2";
}
.fa-sort-down::before {
  content: "\f0dd";
}
.fa-sort-desc::before {
  content: "\f0dd";
}
.fa-circle-minus::before {
  content: "\f056";
}
.fa-minus-circle::before {
  content: "\f056";
}
.fa-door-open::before {
  content: "\f52b";
}
.fa-right-from-bracket::before {
  content: "\f2f5";
}
.fa-sign-out-alt::before {
  content: "\f2f5";
}
.fa-atom::before {
  content: "\f5d2";
}
.fa-soap::before {
  content: "\e06e";
}
.fa-icons::before {
  content: "\f86d";
}
.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}
.fa-microphone-lines-slash::before {
  content: "\f539";
}
.fa-microphone-alt-slash::before {
  content: "\f539";
}
.fa-bridge-circle-check::before {
  content: "\e4c9";
}
.fa-pump-medical::before {
  content: "\e06a";
}
.fa-fingerprint::before {
  content: "\f577";
}
.fa-hand-point-right::before {
  content: "\f0a4";
}
.fa-magnifying-glass-location::before {
  content: "\f689";
}
.fa-search-location::before {
  content: "\f689";
}
.fa-forward-step::before {
  content: "\f051";
}
.fa-step-forward::before {
  content: "\f051";
}
.fa-face-smile-beam::before {
  content: "\f5b8";
}
.fa-smile-beam::before {
  content: "\f5b8";
}
.fa-flag-checkered::before {
  content: "\f11e";
}
.fa-football::before {
  content: "\f44e";
}
.fa-football-ball::before {
  content: "\f44e";
}
.fa-school-circle-exclamation::before {
  content: "\e56c";
}
.fa-crop::before {
  content: "\f125";
}
.fa-angles-down::before {
  content: "\f103";
}
.fa-angle-double-down::before {
  content: "\f103";
}
.fa-users-rectangle::before {
  content: "\e594";
}
.fa-people-roof::before {
  content: "\e537";
}
.fa-people-line::before {
  content: "\e534";
}
.fa-beer-mug-empty::before {
  content: "\f0fc";
}
.fa-beer::before {
  content: "\f0fc";
}
.fa-diagram-predecessor::before {
  content: "\e477";
}
.fa-arrow-up-long::before {
  content: "\f176";
}
.fa-long-arrow-up::before {
  content: "\f176";
}
.fa-fire-flame-simple::before {
  content: "\f46a";
}
.fa-burn::before {
  content: "\f46a";
}
.fa-person::before {
  content: "\f183";
}
.fa-male::before {
  content: "\f183";
}
.fa-laptop::before {
  content: "\f109";
}
.fa-file-csv::before {
  content: "\f6dd";
}
.fa-menorah::before {
  content: "\f676";
}
.fa-truck-plane::before {
  content: "\e58f";
}
.fa-record-vinyl::before {
  content: "\f8d9";
}
.fa-face-grin-stars::before {
  content: "\f587";
}
.fa-grin-stars::before {
  content: "\f587";
}
.fa-bong::before {
  content: "\f55c";
}
.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}
.fa-pastafarianism::before {
  content: "\f67b";
}
.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}
.fa-spoon::before {
  content: "\f2e5";
}
.fa-utensil-spoon::before {
  content: "\f2e5";
}
.fa-jar-wheat::before {
  content: "\e517";
}
.fa-envelopes-bulk::before {
  content: "\f674";
}
.fa-mail-bulk::before {
  content: "\f674";
}
.fa-file-circle-exclamation::before {
  content: "\e4eb";
}
.fa-circle-h::before {
  content: "\f47e";
}
.fa-hospital-symbol::before {
  content: "\f47e";
}
.fa-pager::before {
  content: "\f815";
}
.fa-address-book::before {
  content: "\f2b9";
}
.fa-contact-book::before {
  content: "\f2b9";
}
.fa-strikethrough::before {
  content: "\f0cc";
}
.fa-k::before {
  content: "K";
}
.fa-landmark-flag::before {
  content: "\e51c";
}
.fa-pencil::before {
  content: "\f303";
}
.fa-pencil-alt::before {
  content: "\f303";
}
.fa-backward::before {
  content: "\f04a";
}
.fa-caret-right::before {
  content: "\f0da";
}
.fa-comments::before {
  content: "\f086";
}
.fa-paste::before {
  content: "\f0ea";
}
.fa-file-clipboard::before {
  content: "\f0ea";
}
.fa-code-pull-request::before {
  content: "\e13c";
}
.fa-clipboard-list::before {
  content: "\f46d";
}
.fa-truck-ramp-box::before {
  content: "\f4de";
}
.fa-truck-loading::before {
  content: "\f4de";
}
.fa-user-check::before {
  content: "\f4fc";
}
.fa-vial-virus::before {
  content: "\e597";
}
.fa-sheet-plastic::before {
  content: "\e571";
}
.fa-blog::before {
  content: "\f781";
}
.fa-user-ninja::before {
  content: "\f504";
}
.fa-person-arrow-up-from-line::before {
  content: "\e539";
}
.fa-scroll-torah::before {
  content: "\f6a0";
}
.fa-torah::before {
  content: "\f6a0";
}
.fa-broom-ball::before {
  content: "\f458";
}
.fa-quidditch::before {
  content: "\f458";
}
.fa-quidditch-broom-ball::before {
  content: "\f458";
}
.fa-toggle-off::before {
  content: "\f204";
}
.fa-box-archive::before {
  content: "\f187";
}
.fa-archive::before {
  content: "\f187";
}
.fa-person-drowning::before {
  content: "\e545";
}
.fa-arrow-down-9-1::before {
  content: "\f886";
}
.fa-sort-numeric-desc::before {
  content: "\f886";
}
.fa-sort-numeric-down-alt::before {
  content: "\f886";
}
.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}
.fa-grin-tongue-squint::before {
  content: "\f58a";
}
.fa-spray-can::before {
  content: "\f5bd";
}
.fa-truck-monster::before {
  content: "\f63b";
}
.fa-w::before {
  content: "W";
}
.fa-earth-africa::before {
  content: "\f57c";
}
.fa-globe-africa::before {
  content: "\f57c";
}
.fa-rainbow::before {
  content: "\f75b";
}
.fa-circle-notch::before {
  content: "\f1ce";
}
.fa-tablet-screen-button::before {
  content: "\f3fa";
}
.fa-tablet-alt::before {
  content: "\f3fa";
}
.fa-paw::before {
  content: "\f1b0";
}
.fa-cloud::before {
  content: "\f0c2";
}
.fa-trowel-bricks::before {
  content: "\e58a";
}
.fa-face-flushed::before {
  content: "\f579";
}
.fa-flushed::before {
  content: "\f579";
}
.fa-hospital-user::before {
  content: "\f80d";
}
.fa-tent-arrow-left-right::before {
  content: "\e57f";
}
.fa-gavel::before {
  content: "\f0e3";
}
.fa-legal::before {
  content: "\f0e3";
}
.fa-binoculars::before {
  content: "\f1e5";
}
.fa-microphone-slash::before {
  content: "\f131";
}
.fa-box-tissue::before {
  content: "\e05b";
}
.fa-motorcycle::before {
  content: "\f21c";
}
.fa-bell-concierge::before {
  content: "\f562";
}
.fa-concierge-bell::before {
  content: "\f562";
}
.fa-pen-ruler::before {
  content: "\f5ae";
}
.fa-pencil-ruler::before {
  content: "\f5ae";
}
.fa-people-arrows::before {
  content: "\e068";
}
.fa-people-arrows-left-right::before {
  content: "\e068";
}
.fa-mars-and-venus-burst::before {
  content: "\e523";
}
.fa-square-caret-right::before {
  content: "\f152";
}
.fa-caret-square-right::before {
  content: "\f152";
}
.fa-scissors::before {
  content: "\f0c4";
}
.fa-cut::before {
  content: "\f0c4";
}
.fa-sun-plant-wilt::before {
  content: "\e57a";
}
.fa-toilets-portable::before {
  content: "\e584";
}
.fa-hockey-puck::before {
  content: "\f453";
}
.fa-table::before {
  content: "\f0ce";
}
.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}
.fa-tachograph-digital::before {
  content: "\f566";
}
.fa-digital-tachograph::before {
  content: "\f566";
}
.fa-users-slash::before {
  content: "\e073";
}
.fa-clover::before {
  content: "\e139";
}
.fa-reply::before {
  content: "\f3e5";
}
.fa-mail-reply::before {
  content: "\f3e5";
}
.fa-star-and-crescent::before {
  content: "\f699";
}
.fa-house-fire::before {
  content: "\e50c";
}
.fa-square-minus::before {
  content: "\f146";
}
.fa-minus-square::before {
  content: "\f146";
}
.fa-helicopter::before {
  content: "\f533";
}
.fa-compass::before {
  content: "\f14e";
}
.fa-square-caret-down::before {
  content: "\f150";
}
.fa-caret-square-down::before {
  content: "\f150";
}
.fa-file-circle-question::before {
  content: "\e4ef";
}
.fa-laptop-code::before {
  content: "\f5fc";
}
.fa-swatchbook::before {
  content: "\f5c3";
}
.fa-prescription-bottle::before {
  content: "\f485";
}
.fa-bars::before {
  content: "\f0c9";
}
.fa-navicon::before {
  content: "\f0c9";
}
.fa-people-group::before {
  content: "\e533";
}
.fa-hourglass-end::before {
  content: "\f253";
}
.fa-hourglass-3::before {
  content: "\f253";
}
.fa-heart-crack::before {
  content: "\f7a9";
}
.fa-heart-broken::before {
  content: "\f7a9";
}
.fa-square-up-right::before {
  content: "\f360";
}
.fa-external-link-square-alt::before {
  content: "\f360";
}
.fa-face-kiss-beam::before {
  content: "\f597";
}
.fa-kiss-beam::before {
  content: "\f597";
}
.fa-film::before {
  content: "\f008";
}
.fa-ruler-horizontal::before {
  content: "\f547";
}
.fa-people-robbery::before {
  content: "\e536";
}
.fa-lightbulb::before {
  content: "\f0eb";
}
.fa-caret-left::before {
  content: "\f0d9";
}
.fa-circle-exclamation::before {
  content: "\f06a";
}
.fa-exclamation-circle::before {
  content: "\f06a";
}
.fa-school-circle-xmark::before {
  content: "\e56d";
}
.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}
.fa-sign-out::before {
  content: "\f08b";
}
.fa-circle-chevron-down::before {
  content: "\f13a";
}
.fa-chevron-circle-down::before {
  content: "\f13a";
}
.fa-unlock-keyhole::before {
  content: "\f13e";
}
.fa-unlock-alt::before {
  content: "\f13e";
}
.fa-cloud-showers-heavy::before {
  content: "\f740";
}
.fa-headphones-simple::before {
  content: "\f58f";
}
.fa-headphones-alt::before {
  content: "\f58f";
}
.fa-sitemap::before {
  content: "\f0e8";
}
.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}
.fa-donate::before {
  content: "\f4b9";
}
.fa-memory::before {
  content: "\f538";
}
.fa-road-spikes::before {
  content: "\e568";
}
.fa-fire-burner::before {
  content: "\e4f1";
}
.fa-flag::before {
  content: "\f024";
}
.fa-hanukiah::before {
  content: "\f6e6";
}
.fa-feather::before {
  content: "\f52d";
}
.fa-volume-low::before {
  content: "\f027";
}
.fa-volume-down::before {
  content: "\f027";
}
.fa-comment-slash::before {
  content: "\f4b3";
}
.fa-cloud-sun-rain::before {
  content: "\f743";
}
.fa-compress::before {
  content: "\f066";
}
.fa-wheat-awn::before {
  content: "\e2cd";
}
.fa-wheat-alt::before {
  content: "\e2cd";
}
.fa-ankh::before {
  content: "\f644";
}
.fa-hands-holding-child::before {
  content: "\e4fa";
}
.fa-asterisk::before {
  content: "\*";
}
.fa-square-check::before {
  content: "\f14a";
}
.fa-check-square::before {
  content: "\f14a";
}
.fa-peseta-sign::before {
  content: "\e221";
}
.fa-heading::before {
  content: "\f1dc";
}
.fa-header::before {
  content: "\f1dc";
}
.fa-ghost::before {
  content: "\f6e2";
}
.fa-list::before {
  content: "\f03a";
}
.fa-list-squares::before {
  content: "\f03a";
}
.fa-square-phone-flip::before {
  content: "\f87b";
}
.fa-phone-square-alt::before {
  content: "\f87b";
}
.fa-cart-plus::before {
  content: "\f217";
}
.fa-gamepad::before {
  content: "\f11b";
}
.fa-circle-dot::before {
  content: "\f192";
}
.fa-dot-circle::before {
  content: "\f192";
}
.fa-face-dizzy::before {
  content: "\f567";
}
.fa-dizzy::before {
  content: "\f567";
}
.fa-egg::before {
  content: "\f7fb";
}
.fa-house-medical-circle-xmark::before {
  content: "\e513";
}
.fa-campground::before {
  content: "\f6bb";
}
.fa-folder-plus::before {
  content: "\f65e";
}
.fa-futbol::before {
  content: "\f1e3";
}
.fa-futbol-ball::before {
  content: "\f1e3";
}
.fa-soccer-ball::before {
  content: "\f1e3";
}
.fa-paintbrush::before {
  content: "\f1fc";
}
.fa-paint-brush::before {
  content: "\f1fc";
}
.fa-lock::before {
  content: "\f023";
}
.fa-gas-pump::before {
  content: "\f52f";
}
.fa-hot-tub-person::before {
  content: "\f593";
}
.fa-hot-tub::before {
  content: "\f593";
}
.fa-map-location::before {
  content: "\f59f";
}
.fa-map-marked::before {
  content: "\f59f";
}
.fa-house-flood-water::before {
  content: "\e50e";
}
.fa-tree::before {
  content: "\f1bb";
}
.fa-bridge-lock::before {
  content: "\e4cc";
}
.fa-sack-dollar::before {
  content: "\f81d";
}
.fa-pen-to-square::before {
  content: "\f044";
}
.fa-edit::before {
  content: "\f044";
}
.fa-car-side::before {
  content: "\f5e4";
}
.fa-share-nodes::before {
  content: "\f1e0";
}
.fa-share-alt::before {
  content: "\f1e0";
}
.fa-heart-circle-minus::before {
  content: "\e4ff";
}
.fa-hourglass-half::before {
  content: "\f252";
}
.fa-hourglass-2::before {
  content: "\f252";
}
.fa-microscope::before {
  content: "\f610";
}
.fa-sink::before {
  content: "\e06d";
}
.fa-bag-shopping::before {
  content: "\f290";
}
.fa-shopping-bag::before {
  content: "\f290";
}
.fa-arrow-down-z-a::before {
  content: "\f881";
}
.fa-sort-alpha-desc::before {
  content: "\f881";
}
.fa-sort-alpha-down-alt::before {
  content: "\f881";
}
.fa-mitten::before {
  content: "\f7b5";
}
.fa-person-rays::before {
  content: "\e54d";
}
.fa-users::before {
  content: "\f0c0";
}
.fa-eye-slash::before {
  content: "\f070";
}
.fa-flask-vial::before {
  content: "\e4f3";
}
.fa-hand::before {
  content: "\f256";
}
.fa-hand-paper::before {
  content: "\f256";
}
.fa-om::before {
  content: "\f679";
}
.fa-worm::before {
  content: "\e599";
}
.fa-house-circle-xmark::before {
  content: "\e50b";
}
.fa-plug::before {
  content: "\f1e6";
}
.fa-chevron-up::before {
  content: "\f077";
}
.fa-hand-spock::before {
  content: "\f259";
}
.fa-stopwatch::before {
  content: "\f2f2";
}
.fa-face-kiss::before {
  content: "\f596";
}
.fa-kiss::before {
  content: "\f596";
}
.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}
.fa-face-grin-tongue::before {
  content: "\f589";
}
.fa-grin-tongue::before {
  content: "\f589";
}
.fa-chess-bishop::before {
  content: "\f43a";
}
.fa-face-grin-wink::before {
  content: "\f58c";
}
.fa-grin-wink::before {
  content: "\f58c";
}
.fa-ear-deaf::before {
  content: "\f2a4";
}
.fa-deaf::before {
  content: "\f2a4";
}
.fa-deafness::before {
  content: "\f2a4";
}
.fa-hard-of-hearing::before {
  content: "\f2a4";
}
.fa-road-circle-check::before {
  content: "\e564";
}
.fa-dice-five::before {
  content: "\f523";
}
.fa-square-rss::before {
  content: "\f143";
}
.fa-rss-square::before {
  content: "\f143";
}
.fa-land-mine-on::before {
  content: "\e51b";
}
.fa-i-cursor::before {
  content: "\f246";
}
.fa-stamp::before {
  content: "\f5bf";
}
.fa-stairs::before {
  content: "\e289";
}
.fa-i::before {
  content: "I";
}
.fa-hryvnia-sign::before {
  content: "\f6f2";
}
.fa-hryvnia::before {
  content: "\f6f2";
}
.fa-pills::before {
  content: "\f484";
}
.fa-face-grin-wide::before {
  content: "\f581";
}
.fa-grin-alt::before {
  content: "\f581";
}
.fa-tooth::before {
  content: "\f5c9";
}
.fa-v::before {
  content: "V";
}
.fa-bangladeshi-taka-sign::before {
  content: "\e2e6";
}
.fa-bicycle::before {
  content: "\f206";
}
.fa-staff-snake::before {
  content: "\e579";
}
.fa-rod-asclepius::before {
  content: "\e579";
}
.fa-rod-snake::before {
  content: "\e579";
}
.fa-staff-aesculapius::before {
  content: "\e579";
}
.fa-head-side-cough-slash::before {
  content: "\e062";
}
.fa-truck-medical::before {
  content: "\f0f9";
}
.fa-ambulance::before {
  content: "\f0f9";
}
.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}
.fa-snowman::before {
  content: "\f7d0";
}
.fa-mortar-pestle::before {
  content: "\f5a7";
}
.fa-road-barrier::before {
  content: "\e562";
}
.fa-school::before {
  content: "\f549";
}
.fa-igloo::before {
  content: "\f7ae";
}
.fa-joint::before {
  content: "\f595";
}
.fa-angle-right::before {
  content: "\f105";
}
.fa-horse::before {
  content: "\f6f0";
}
.fa-q::before {
  content: "Q";
}
.fa-g::before {
  content: "G";
}
.fa-notes-medical::before {
  content: "\f481";
}
.fa-temperature-half::before {
  content: "\f2c9";
}
.fa-temperature-2::before {
  content: "\f2c9";
}
.fa-thermometer-2::before {
  content: "\f2c9";
}
.fa-thermometer-half::before {
  content: "\f2c9";
}
.fa-dong-sign::before {
  content: "\e169";
}
.fa-capsules::before {
  content: "\f46b";
}
.fa-poo-storm::before {
  content: "\f75a";
}
.fa-poo-bolt::before {
  content: "\f75a";
}
.fa-face-frown-open::before {
  content: "\f57a";
}
.fa-frown-open::before {
  content: "\f57a";
}
.fa-hand-point-up::before {
  content: "\f0a6";
}
.fa-money-bill::before {
  content: "\f0d6";
}
.fa-bookmark::before {
  content: "\f02e";
}
.fa-align-justify::before {
  content: "\f039";
}
.fa-umbrella-beach::before {
  content: "\f5ca";
}
.fa-helmet-un::before {
  content: "\e503";
}
.fa-bullseye::before {
  content: "\f140";
}
.fa-bacon::before {
  content: "\f7e5";
}
.fa-hand-point-down::before {
  content: "\f0a7";
}
.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}
.fa-folder::before {
  content: "\f07b";
}
.fa-folder-blank::before {
  content: "\f07b";
}
.fa-file-waveform::before {
  content: "\f478";
}
.fa-file-medical-alt::before {
  content: "\f478";
}
.fa-radiation::before {
  content: "\f7b9";
}
.fa-chart-simple::before {
  content: "\e473";
}
.fa-mars-stroke::before {
  content: "\f229";
}
.fa-vial::before {
  content: "\f492";
}
.fa-gauge::before {
  content: "\f624";
}
.fa-dashboard::before {
  content: "\f624";
}
.fa-gauge-med::before {
  content: "\f624";
}
.fa-tachometer-alt-average::before {
  content: "\f624";
}
.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}
.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}
.fa-e::before {
  content: "E";
}
.fa-pen-clip::before {
  content: "\f305";
}
.fa-pen-alt::before {
  content: "\f305";
}
.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}
.fa-user::before {
  content: "\f007";
}
.fa-school-circle-check::before {
  content: "\e56b";
}
.fa-dumpster::before {
  content: "\f793";
}
.fa-van-shuttle::before {
  content: "\f5b6";
}
.fa-shuttle-van::before {
  content: "\f5b6";
}
.fa-building-user::before {
  content: "\e4da";
}
.fa-square-caret-left::before {
  content: "\f191";
}
.fa-caret-square-left::before {
  content: "\f191";
}
.fa-highlighter::before {
  content: "\f591";
}
.fa-key::before {
  content: "\f084";
}
.fa-bullhorn::before {
  content: "\f0a1";
}
.fa-globe::before {
  content: "\f0ac";
}
.fa-synagogue::before {
  content: "\f69b";
}
.fa-person-half-dress::before {
  content: "\e548";
}
.fa-road-bridge::before {
  content: "\e563";
}
.fa-location-arrow::before {
  content: "\f124";
}
.fa-c::before {
  content: "C";
}
.fa-tablet-button::before {
  content: "\f10a";
}
.fa-building-lock::before {
  content: "\e4d6";
}
.fa-pizza-slice::before {
  content: "\f818";
}
.fa-money-bill-wave::before {
  content: "\f53a";
}
.fa-chart-area::before {
  content: "\f1fe";
}
.fa-area-chart::before {
  content: "\f1fe";
}
.fa-house-flag::before {
  content: "\e50d";
}
.fa-person-circle-minus::before {
  content: "\e540";
}
.fa-ban::before {
  content: "\f05e";
}
.fa-cancel::before {
  content: "\f05e";
}
.fa-camera-rotate::before {
  content: "\e0d8";
}
.fa-spray-can-sparkles::before {
  content: "\f5d0";
}
.fa-air-freshener::before {
  content: "\f5d0";
}
.fa-star::before {
  content: "\f005";
}
.fa-repeat::before {
  content: "\f363";
}
.fa-cross::before {
  content: "\f654";
}
.fa-box::before {
  content: "\f466";
}
.fa-venus-mars::before {
  content: "\f228";
}
.fa-arrow-pointer::before {
  content: "\f245";
}
.fa-mouse-pointer::before {
  content: "\f245";
}
.fa-maximize::before {
  content: "\f31e";
}
.fa-expand-arrows-alt::before {
  content: "\f31e";
}
.fa-charging-station::before {
  content: "\f5e7";
}
.fa-shapes::before {
  content: "\f61f";
}
.fa-triangle-circle-square::before {
  content: "\f61f";
}
.fa-shuffle::before {
  content: "\f074";
}
.fa-random::before {
  content: "\f074";
}
.fa-person-running::before {
  content: "\f70c";
}
.fa-running::before {
  content: "\f70c";
}
.fa-mobile-retro::before {
  content: "\e527";
}
.fa-grip-lines-vertical::before {
  content: "\f7a5";
}
.fa-spider::before {
  content: "\f717";
}
.fa-hands-bound::before {
  content: "\e4f9";
}
.fa-file-invoice-dollar::before {
  content: "\f571";
}
.fa-plane-circle-exclamation::before {
  content: "\e556";
}
.fa-x-ray::before {
  content: "\f497";
}
.fa-spell-check::before {
  content: "\f891";
}
.fa-slash::before {
  content: "\f715";
}
.fa-computer-mouse::before {
  content: "\f8cc";
}
.fa-mouse::before {
  content: "\f8cc";
}
.fa-arrow-right-to-bracket::before {
  content: "\f090";
}
.fa-sign-in::before {
  content: "\f090";
}
.fa-shop-slash::before {
  content: "\e070";
}
.fa-store-alt-slash::before {
  content: "\e070";
}
.fa-server::before {
  content: "\f233";
}
.fa-virus-covid-slash::before {
  content: "\e4a9";
}
.fa-shop-lock::before {
  content: "\e4a5";
}
.fa-hourglass-start::before {
  content: "\f251";
}
.fa-hourglass-1::before {
  content: "\f251";
}
.fa-blender-phone::before {
  content: "\f6b6";
}
.fa-building-wheat::before {
  content: "\e4db";
}
.fa-person-breastfeeding::before {
  content: "\e53a";
}
.fa-right-to-bracket::before {
  content: "\f2f6";
}
.fa-sign-in-alt::before {
  content: "\f2f6";
}
.fa-venus::before {
  content: "\f221";
}
.fa-passport::before {
  content: "\f5ab";
}
.fa-thumbtack-slash::before {
  content: "\e68f";
}
.fa-thumb-tack-slash::before {
  content: "\e68f";
}
.fa-heart-pulse::before {
  content: "\f21e";
}
.fa-heartbeat::before {
  content: "\f21e";
}
.fa-people-carry-box::before {
  content: "\f4ce";
}
.fa-people-carry::before {
  content: "\f4ce";
}
.fa-temperature-high::before {
  content: "\f769";
}
.fa-microchip::before {
  content: "\f2db";
}
.fa-crown::before {
  content: "\f521";
}
.fa-weight-hanging::before {
  content: "\f5cd";
}
.fa-xmarks-lines::before {
  content: "\e59a";
}
.fa-file-prescription::before {
  content: "\f572";
}
.fa-weight-scale::before {
  content: "\f496";
}
.fa-weight::before {
  content: "\f496";
}
.fa-user-group::before {
  content: "\f500";
}
.fa-user-friends::before {
  content: "\f500";
}
.fa-arrow-up-a-z::before {
  content: "\f15e";
}
.fa-sort-alpha-up::before {
  content: "\f15e";
}
.fa-chess-knight::before {
  content: "\f441";
}
.fa-face-laugh-squint::before {
  content: "\f59b";
}
.fa-laugh-squint::before {
  content: "\f59b";
}
.fa-wheelchair::before {
  content: "\f193";
}
.fa-circle-arrow-up::before {
  content: "\f0aa";
}
.fa-arrow-circle-up::before {
  content: "\f0aa";
}
.fa-toggle-on::before {
  content: "\f205";
}
.fa-person-walking::before {
  content: "\f554";
}
.fa-walking::before {
  content: "\f554";
}
.fa-l::before {
  content: "L";
}
.fa-fire::before {
  content: "\f06d";
}
.fa-bed-pulse::before {
  content: "\f487";
}
.fa-procedures::before {
  content: "\f487";
}
.fa-shuttle-space::before {
  content: "\f197";
}
.fa-space-shuttle::before {
  content: "\f197";
}
.fa-face-laugh::before {
  content: "\f599";
}
.fa-laugh::before {
  content: "\f599";
}
.fa-folder-open::before {
  content: "\f07c";
}
.fa-heart-circle-plus::before {
  content: "\e500";
}
.fa-code-fork::before {
  content: "\e13b";
}
.fa-city::before {
  content: "\f64f";
}
.fa-microphone-lines::before {
  content: "\f3c9";
}
.fa-microphone-alt::before {
  content: "\f3c9";
}
.fa-pepper-hot::before {
  content: "\f816";
}
.fa-unlock::before {
  content: "\f09c";
}
.fa-colon-sign::before {
  content: "\e140";
}
.fa-headset::before {
  content: "\f590";
}
.fa-store-slash::before {
  content: "\e071";
}
.fa-road-circle-xmark::before {
  content: "\e566";
}
.fa-user-minus::before {
  content: "\f503";
}
.fa-mars-stroke-up::before {
  content: "\f22a";
}
.fa-mars-stroke-v::before {
  content: "\f22a";
}
.fa-champagne-glasses::before {
  content: "\f79f";
}
.fa-glass-cheers::before {
  content: "\f79f";
}
.fa-clipboard::before {
  content: "\f328";
}
.fa-house-circle-exclamation::before {
  content: "\e50a";
}
.fa-file-arrow-up::before {
  content: "\f574";
}
.fa-file-upload::before {
  content: "\f574";
}
.fa-wifi::before {
  content: "\f1eb";
}
.fa-wifi-3::before {
  content: "\f1eb";
}
.fa-wifi-strong::before {
  content: "\f1eb";
}
.fa-bath::before {
  content: "\f2cd";
}
.fa-bathtub::before {
  content: "\f2cd";
}
.fa-underline::before {
  content: "\f0cd";
}
.fa-user-pen::before {
  content: "\f4ff";
}
.fa-user-edit::before {
  content: "\f4ff";
}
.fa-signature::before {
  content: "\f5b7";
}
.fa-stroopwafel::before {
  content: "\f551";
}
.fa-bold::before {
  content: "\f032";
}
.fa-anchor-lock::before {
  content: "\e4ad";
}
.fa-building-ngo::before {
  content: "\e4d7";
}
.fa-manat-sign::before {
  content: "\e1d5";
}
.fa-not-equal::before {
  content: "\f53e";
}
.fa-border-top-left::before {
  content: "\f853";
}
.fa-border-style::before {
  content: "\f853";
}
.fa-map-location-dot::before {
  content: "\f5a0";
}
.fa-map-marked-alt::before {
  content: "\f5a0";
}
.fa-jedi::before {
  content: "\f669";
}
.fa-square-poll-vertical::before {
  content: "\f681";
}
.fa-poll::before {
  content: "\f681";
}
.fa-mug-hot::before {
  content: "\f7b6";
}
.fa-car-battery::before {
  content: "\f5df";
}
.fa-battery-car::before {
  content: "\f5df";
}
.fa-gift::before {
  content: "\f06b";
}
.fa-dice-two::before {
  content: "\f528";
}
.fa-chess-queen::before {
  content: "\f445";
}
.fa-glasses::before {
  content: "\f530";
}
.fa-chess-board::before {
  content: "\f43c";
}
.fa-building-circle-check::before {
  content: "\e4d2";
}
.fa-person-chalkboard::before {
  content: "\e53d";
}
.fa-mars-stroke-right::before {
  content: "\f22b";
}
.fa-mars-stroke-h::before {
  content: "\f22b";
}
.fa-hand-back-fist::before {
  content: "\f255";
}
.fa-hand-rock::before {
  content: "\f255";
}
.fa-square-caret-up::before {
  content: "\f151";
}
.fa-caret-square-up::before {
  content: "\f151";
}
.fa-cloud-showers-water::before {
  content: "\e4e4";
}
.fa-chart-bar::before {
  content: "\f080";
}
.fa-bar-chart::before {
  content: "\f080";
}
.fa-hands-bubbles::before {
  content: "\e05e";
}
.fa-hands-wash::before {
  content: "\e05e";
}
.fa-less-than-equal::before {
  content: "\f537";
}
.fa-train::before {
  content: "\f238";
}
.fa-eye-low-vision::before {
  content: "\f2a8";
}
.fa-low-vision::before {
  content: "\f2a8";
}
.fa-crow::before {
  content: "\f520";
}
.fa-sailboat::before {
  content: "\e445";
}
.fa-window-restore::before {
  content: "\f2d2";
}
.fa-square-plus::before {
  content: "\f0fe";
}
.fa-plus-square::before {
  content: "\f0fe";
}
.fa-torii-gate::before {
  content: "\f6a1";
}
.fa-frog::before {
  content: "\f52e";
}
.fa-bucket::before {
  content: "\e4cf";
}
.fa-image::before {
  content: "\f03e";
}
.fa-microphone::before {
  content: "\f130";
}
.fa-cow::before {
  content: "\f6c8";
}
.fa-caret-up::before {
  content: "\f0d8";
}
.fa-screwdriver::before {
  content: "\f54a";
}
.fa-folder-closed::before {
  content: "\e185";
}
.fa-house-tsunami::before {
  content: "\e515";
}
.fa-square-nfi::before {
  content: "\e576";
}
.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}
.fa-martini-glass::before {
  content: "\f57b";
}
.fa-glass-martini-alt::before {
  content: "\f57b";
}
.fa-rotate-left::before {
  content: "\f2ea";
}
.fa-rotate-back::before {
  content: "\f2ea";
}
.fa-rotate-backward::before {
  content: "\f2ea";
}
.fa-undo-alt::before {
  content: "\f2ea";
}
.fa-table-columns::before {
  content: "\f0db";
}
.fa-columns::before {
  content: "\f0db";
}
.fa-lemon::before {
  content: "\f094";
}
.fa-head-side-mask::before {
  content: "\e063";
}
.fa-handshake::before {
  content: "\f2b5";
}
.fa-gem::before {
  content: "\f3a5";
}
.fa-dolly::before {
  content: "\f472";
}
.fa-dolly-box::before {
  content: "\f472";
}
.fa-smoking::before {
  content: "\f48d";
}
.fa-minimize::before {
  content: "\f78c";
}
.fa-compress-arrows-alt::before {
  content: "\f78c";
}
.fa-monument::before {
  content: "\f5a6";
}
.fa-snowplow::before {
  content: "\f7d2";
}
.fa-angles-right::before {
  content: "\f101";
}
.fa-angle-double-right::before {
  content: "\f101";
}
.fa-cannabis::before {
  content: "\f55f";
}
.fa-circle-play::before {
  content: "\f144";
}
.fa-play-circle::before {
  content: "\f144";
}
.fa-tablets::before {
  content: "\f490";
}
.fa-ethernet::before {
  content: "\f796";
}
.fa-euro-sign::before {
  content: "\f153";
}
.fa-eur::before {
  content: "\f153";
}
.fa-euro::before {
  content: "\f153";
}
.fa-chair::before {
  content: "\f6c0";
}
.fa-circle-check::before {
  content: "\f058";
}
.fa-check-circle::before {
  content: "\f058";
}
.fa-circle-stop::before {
  content: "\f28d";
}
.fa-stop-circle::before {
  content: "\f28d";
}
.fa-compass-drafting::before {
  content: "\f568";
}
.fa-drafting-compass::before {
  content: "\f568";
}
.fa-plate-wheat::before {
  content: "\e55a";
}
.fa-icicles::before {
  content: "\f7ad";
}
.fa-person-shelter::before {
  content: "\e54f";
}
.fa-neuter::before {
  content: "\f22c";
}
.fa-id-badge::before {
  content: "\f2c1";
}
.fa-marker::before {
  content: "\f5a1";
}
.fa-face-laugh-beam::before {
  content: "\f59a";
}
.fa-laugh-beam::before {
  content: "\f59a";
}
.fa-helicopter-symbol::before {
  content: "\e502";
}
.fa-universal-access::before {
  content: "\f29a";
}
.fa-circle-chevron-up::before {
  content: "\f139";
}
.fa-chevron-circle-up::before {
  content: "\f139";
}
.fa-lari-sign::before {
  content: "\e1c8";
}
.fa-volcano::before {
  content: "\f770";
}
.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}
.fa-sterling-sign::before {
  content: "\f154";
}
.fa-gbp::before {
  content: "\f154";
}
.fa-pound-sign::before {
  content: "\f154";
}
.fa-viruses::before {
  content: "\e076";
}
.fa-square-person-confined::before {
  content: "\e577";
}
.fa-user-tie::before {
  content: "\f508";
}
.fa-arrow-down-long::before {
  content: "\f175";
}
.fa-long-arrow-down::before {
  content: "\f175";
}
.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}
.fa-certificate::before {
  content: "\f0a3";
}
.fa-reply-all::before {
  content: "\f122";
}
.fa-mail-reply-all::before {
  content: "\f122";
}
.fa-suitcase::before {
  content: "\f0f2";
}
.fa-person-skating::before {
  content: "\f7c5";
}
.fa-skating::before {
  content: "\f7c5";
}
.fa-filter-circle-dollar::before {
  content: "\f662";
}
.fa-funnel-dollar::before {
  content: "\f662";
}
.fa-camera-retro::before {
  content: "\f083";
}
.fa-circle-arrow-down::before {
  content: "\f0ab";
}
.fa-arrow-circle-down::before {
  content: "\f0ab";
}
.fa-file-import::before {
  content: "\f56f";
}
.fa-arrow-right-to-file::before {
  content: "\f56f";
}
.fa-square-arrow-up-right::before {
  content: "\f14c";
}
.fa-external-link-square::before {
  content: "\f14c";
}
.fa-box-open::before {
  content: "\f49e";
}
.fa-scroll::before {
  content: "\f70e";
}
.fa-spa::before {
  content: "\f5bb";
}
.fa-location-pin-lock::before {
  content: "\e51f";
}
.fa-pause::before {
  content: "\f04c";
}
.fa-hill-avalanche::before {
  content: "\e507";
}
.fa-temperature-empty::before {
  content: "\f2cb";
}
.fa-temperature-0::before {
  content: "\f2cb";
}
.fa-thermometer-0::before {
  content: "\f2cb";
}
.fa-thermometer-empty::before {
  content: "\f2cb";
}
.fa-bomb::before {
  content: "\f1e2";
}
.fa-registered::before {
  content: "\f25d";
}
.fa-address-card::before {
  content: "\f2bb";
}
.fa-contact-card::before {
  content: "\f2bb";
}
.fa-vcard::before {
  content: "\f2bb";
}
.fa-scale-unbalanced-flip::before {
  content: "\f516";
}
.fa-balance-scale-right::before {
  content: "\f516";
}
.fa-subscript::before {
  content: "\f12c";
}
.fa-diamond-turn-right::before {
  content: "\f5eb";
}
.fa-directions::before {
  content: "\f5eb";
}
.fa-burst::before {
  content: "\e4dc";
}
.fa-house-laptop::before {
  content: "\e066";
}
.fa-laptop-house::before {
  content: "\e066";
}
.fa-face-tired::before {
  content: "\f5c8";
}
.fa-tired::before {
  content: "\f5c8";
}
.fa-money-bills::before {
  content: "\e1f3";
}
.fa-smog::before {
  content: "\f75f";
}
.fa-crutch::before {
  content: "\f7f7";
}
.fa-cloud-arrow-up::before {
  content: "\f0ee";
}
.fa-cloud-upload::before {
  content: "\f0ee";
}
.fa-cloud-upload-alt::before {
  content: "\f0ee";
}
.fa-palette::before {
  content: "\f53f";
}
.fa-arrows-turn-right::before {
  content: "\e4c0";
}
.fa-vest::before {
  content: "\e085";
}
.fa-ferry::before {
  content: "\e4ea";
}
.fa-arrows-down-to-people::before {
  content: "\e4b9";
}
.fa-seedling::before {
  content: "\f4d8";
}
.fa-sprout::before {
  content: "\f4d8";
}
.fa-left-right::before {
  content: "\f337";
}
.fa-arrows-alt-h::before {
  content: "\f337";
}
.fa-boxes-packing::before {
  content: "\e4c7";
}
.fa-circle-arrow-left::before {
  content: "\f0a8";
}
.fa-arrow-circle-left::before {
  content: "\f0a8";
}
.fa-group-arrows-rotate::before {
  content: "\e4f6";
}
.fa-bowl-food::before {
  content: "\e4c6";
}
.fa-candy-cane::before {
  content: "\f786";
}
.fa-arrow-down-wide-short::before {
  content: "\f160";
}
.fa-sort-amount-asc::before {
  content: "\f160";
}
.fa-sort-amount-down::before {
  content: "\f160";
}
.fa-cloud-bolt::before {
  content: "\f76c";
}
.fa-thunderstorm::before {
  content: "\f76c";
}
.fa-text-slash::before {
  content: "\f87d";
}
.fa-remove-format::before {
  content: "\f87d";
}
.fa-face-smile-wink::before {
  content: "\f4da";
}
.fa-smile-wink::before {
  content: "\f4da";
}
.fa-file-word::before {
  content: "\f1c2";
}
.fa-file-powerpoint::before {
  content: "\f1c4";
}
.fa-arrows-left-right::before {
  content: "\f07e";
}
.fa-arrows-h::before {
  content: "\f07e";
}
.fa-house-lock::before {
  content: "\e510";
}
.fa-cloud-arrow-down::before {
  content: "\f0ed";
}
.fa-cloud-download::before {
  content: "\f0ed";
}
.fa-cloud-download-alt::before {
  content: "\f0ed";
}
.fa-children::before {
  content: "\e4e1";
}
.fa-chalkboard::before {
  content: "\f51b";
}
.fa-blackboard::before {
  content: "\f51b";
}
.fa-user-large-slash::before {
  content: "\f4fa";
}
.fa-user-alt-slash::before {
  content: "\f4fa";
}
.fa-envelope-open::before {
  content: "\f2b6";
}
.fa-handshake-simple-slash::before {
  content: "\e05f";
}
.fa-handshake-alt-slash::before {
  content: "\e05f";
}
.fa-mattress-pillow::before {
  content: "\e525";
}
.fa-guarani-sign::before {
  content: "\e19a";
}
.fa-arrows-rotate::before {
  content: "\f021";
}
.fa-refresh::before {
  content: "\f021";
}
.fa-sync::before {
  content: "\f021";
}
.fa-fire-extinguisher::before {
  content: "\f134";
}
.fa-cruzeiro-sign::before {
  content: "\e152";
}
.fa-greater-than-equal::before {
  content: "\f532";
}
.fa-shield-halved::before {
  content: "\f3ed";
}
.fa-shield-alt::before {
  content: "\f3ed";
}
.fa-book-atlas::before {
  content: "\f558";
}
.fa-atlas::before {
  content: "\f558";
}
.fa-virus::before {
  content: "\e074";
}
.fa-envelope-circle-check::before {
  content: "\e4e8";
}
.fa-layer-group::before {
  content: "\f5fd";
}
.fa-arrows-to-dot::before {
  content: "\e4be";
}
.fa-archway::before {
  content: "\f557";
}
.fa-heart-circle-check::before {
  content: "\e4fd";
}
.fa-house-chimney-crack::before {
  content: "\f6f1";
}
.fa-house-damage::before {
  content: "\f6f1";
}
.fa-file-zipper::before {
  content: "\f1c6";
}
.fa-file-archive::before {
  content: "\f1c6";
}
.fa-square::before {
  content: "\f0c8";
}
.fa-martini-glass-empty::before {
  content: "\f000";
}
.fa-glass-martini::before {
  content: "\f000";
}
.fa-couch::before {
  content: "\f4b8";
}
.fa-cedi-sign::before {
  content: "\e0df";
}
.fa-italic::before {
  content: "\f033";
}
.fa-table-cells-column-lock::before {
  content: "\e678";
}
.fa-church::before {
  content: "\f51d";
}
.fa-comments-dollar::before {
  content: "\f653";
}
.fa-democrat::before {
  content: "\f747";
}
.fa-z::before {
  content: "Z";
}
.fa-person-skiing::before {
  content: "\f7c9";
}
.fa-skiing::before {
  content: "\f7c9";
}
.fa-road-lock::before {
  content: "\e567";
}
.fa-a::before {
  content: "A";
}
.fa-temperature-arrow-down::before {
  content: "\e03f";
}
.fa-temperature-down::before {
  content: "\e03f";
}
.fa-feather-pointed::before {
  content: "\f56b";
}
.fa-feather-alt::before {
  content: "\f56b";
}
.fa-p::before {
  content: "P";
}
.fa-snowflake::before {
  content: "\f2dc";
}
.fa-newspaper::before {
  content: "\f1ea";
}
.fa-rectangle-ad::before {
  content: "\f641";
}
.fa-ad::before {
  content: "\f641";
}
.fa-circle-arrow-right::before {
  content: "\f0a9";
}
.fa-arrow-circle-right::before {
  content: "\f0a9";
}
.fa-filter-circle-xmark::before {
  content: "\e17b";
}
.fa-locust::before {
  content: "\e520";
}
.fa-sort::before {
  content: "\f0dc";
}
.fa-unsorted::before {
  content: "\f0dc";
}
.fa-list-ol::before {
  content: "\f0cb";
}
.fa-list-1-2::before {
  content: "\f0cb";
}
.fa-list-numeric::before {
  content: "\f0cb";
}
.fa-person-dress-burst::before {
  content: "\e544";
}
.fa-money-check-dollar::before {
  content: "\f53d";
}
.fa-money-check-alt::before {
  content: "\f53d";
}
.fa-vector-square::before {
  content: "\f5cb";
}
.fa-bread-slice::before {
  content: "\f7ec";
}
.fa-language::before {
  content: "\f1ab";
}
.fa-face-kiss-wink-heart::before {
  content: "\f598";
}
.fa-kiss-wink-heart::before {
  content: "\f598";
}
.fa-filter::before {
  content: "\f0b0";
}
.fa-question::before {
  content: "\?";
}
.fa-file-signature::before {
  content: "\f573";
}
.fa-up-down-left-right::before {
  content: "\f0b2";
}
.fa-arrows-alt::before {
  content: "\f0b2";
}
.fa-house-chimney-user::before {
  content: "\e065";
}
.fa-hand-holding-heart::before {
  content: "\f4be";
}
.fa-puzzle-piece::before {
  content: "\f12e";
}
.fa-money-check::before {
  content: "\f53c";
}
.fa-star-half-stroke::before {
  content: "\f5c0";
}
.fa-star-half-alt::before {
  content: "\f5c0";
}
.fa-code::before {
  content: "\f121";
}
.fa-whiskey-glass::before {
  content: "\f7a0";
}
.fa-glass-whiskey::before {
  content: "\f7a0";
}
.fa-building-circle-exclamation::before {
  content: "\e4d3";
}
.fa-magnifying-glass-chart::before {
  content: "\e522";
}
.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}
.fa-external-link::before {
  content: "\f08e";
}
.fa-cubes-stacked::before {
  content: "\e4e6";
}
.fa-won-sign::before {
  content: "\f159";
}
.fa-krw::before {
  content: "\f159";
}
.fa-won::before {
  content: "\f159";
}
.fa-virus-covid::before {
  content: "\e4a8";
}
.fa-austral-sign::before {
  content: "\e0a9";
}
.fa-f::before {
  content: "F";
}
.fa-leaf::before {
  content: "\f06c";
}
.fa-road::before {
  content: "\f018";
}
.fa-taxi::before {
  content: "\f1ba";
}
.fa-cab::before {
  content: "\f1ba";
}
.fa-person-circle-plus::before {
  content: "\e541";
}
.fa-chart-pie::before {
  content: "\f200";
}
.fa-pie-chart::before {
  content: "\f200";
}
.fa-bolt-lightning::before {
  content: "\e0b7";
}
.fa-sack-xmark::before {
  content: "\e56a";
}
.fa-file-excel::before {
  content: "\f1c3";
}
.fa-file-contract::before {
  content: "\f56c";
}
.fa-fish-fins::before {
  content: "\e4f2";
}
.fa-building-flag::before {
  content: "\e4d5";
}
.fa-face-grin-beam::before {
  content: "\f582";
}
.fa-grin-beam::before {
  content: "\f582";
}
.fa-object-ungroup::before {
  content: "\f248";
}
.fa-poop::before {
  content: "\f619";
}
.fa-location-pin::before {
  content: "\f041";
}
.fa-map-marker::before {
  content: "\f041";
}
.fa-kaaba::before {
  content: "\f66b";
}
.fa-toilet-paper::before {
  content: "\f71e";
}
.fa-helmet-safety::before {
  content: "\f807";
}
.fa-hard-hat::before {
  content: "\f807";
}
.fa-hat-hard::before {
  content: "\f807";
}
.fa-eject::before {
  content: "\f052";
}
.fa-circle-right::before {
  content: "\f35a";
}
.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}
.fa-plane-circle-check::before {
  content: "\e555";
}
.fa-face-rolling-eyes::before {
  content: "\f5a5";
}
.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}
.fa-object-group::before {
  content: "\f247";
}
.fa-chart-line::before {
  content: "\f201";
}
.fa-line-chart::before {
  content: "\f201";
}
.fa-mask-ventilator::before {
  content: "\e524";
}
.fa-arrow-right::before {
  content: "\f061";
}
.fa-signs-post::before {
  content: "\f277";
}
.fa-map-signs::before {
  content: "\f277";
}
.fa-cash-register::before {
  content: "\f788";
}
.fa-person-circle-question::before {
  content: "\e542";
}
.fa-h::before {
  content: "H";
}
.fa-tarp::before {
  content: "\e57b";
}
.fa-screwdriver-wrench::before {
  content: "\f7d9";
}
.fa-tools::before {
  content: "\f7d9";
}
.fa-arrows-to-eye::before {
  content: "\e4bf";
}
.fa-plug-circle-bolt::before {
  content: "\e55b";
}
.fa-heart::before {
  content: "\f004";
}
.fa-mars-and-venus::before {
  content: "\f224";
}
.fa-house-user::before {
  content: "\e1b0";
}
.fa-home-user::before {
  content: "\e1b0";
}
.fa-dumpster-fire::before {
  content: "\f794";
}
.fa-house-crack::before {
  content: "\e3b1";
}
.fa-martini-glass-citrus::before {
  content: "\f561";
}
.fa-cocktail::before {
  content: "\f561";
}
.fa-face-surprise::before {
  content: "\f5c2";
}
.fa-surprise::before {
  content: "\f5c2";
}
.fa-bottle-water::before {
  content: "\e4c5";
}
.fa-circle-pause::before {
  content: "\f28b";
}
.fa-pause-circle::before {
  content: "\f28b";
}
.fa-toilet-paper-slash::before {
  content: "\e072";
}
.fa-apple-whole::before {
  content: "\f5d1";
}
.fa-apple-alt::before {
  content: "\f5d1";
}
.fa-kitchen-set::before {
  content: "\e51a";
}
.fa-r::before {
  content: "R";
}
.fa-temperature-quarter::before {
  content: "\f2ca";
}
.fa-temperature-1::before {
  content: "\f2ca";
}
.fa-thermometer-1::before {
  content: "\f2ca";
}
.fa-thermometer-quarter::before {
  content: "\f2ca";
}
.fa-cube::before {
  content: "\f1b2";
}
.fa-bitcoin-sign::before {
  content: "\e0b4";
}
.fa-shield-dog::before {
  content: "\e573";
}
.fa-solar-panel::before {
  content: "\f5ba";
}
.fa-lock-open::before {
  content: "\f3c1";
}
.fa-elevator::before {
  content: "\e16d";
}
.fa-money-bill-transfer::before {
  content: "\e528";
}
.fa-money-bill-trend-up::before {
  content: "\e529";
}
.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}
.fa-square-poll-horizontal::before {
  content: "\f682";
}
.fa-poll-h::before {
  content: "\f682";
}
.fa-circle::before {
  content: "\f111";
}
.fa-backward-fast::before {
  content: "\f049";
}
.fa-fast-backward::before {
  content: "\f049";
}
.fa-recycle::before {
  content: "\f1b8";
}
.fa-user-astronaut::before {
  content: "\f4fb";
}
.fa-plane-slash::before {
  content: "\e069";
}
.fa-trademark::before {
  content: "\f25c";
}
.fa-basketball::before {
  content: "\f434";
}
.fa-basketball-ball::before {
  content: "\f434";
}
.fa-satellite-dish::before {
  content: "\f7c0";
}
.fa-circle-up::before {
  content: "\f35b";
}
.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}
.fa-mobile-screen-button::before {
  content: "\f3cd";
}
.fa-mobile-alt::before {
  content: "\f3cd";
}
.fa-volume-high::before {
  content: "\f028";
}
.fa-volume-up::before {
  content: "\f028";
}
.fa-users-rays::before {
  content: "\e593";
}
.fa-wallet::before {
  content: "\f555";
}
.fa-clipboard-check::before {
  content: "\f46c";
}
.fa-file-audio::before {
  content: "\f1c7";
}
.fa-burger::before {
  content: "\f805";
}
.fa-hamburger::before {
  content: "\f805";
}
.fa-wrench::before {
  content: "\f0ad";
}
.fa-bugs::before {
  content: "\e4d0";
}
.fa-rupee-sign::before {
  content: "\f156";
}
.fa-rupee::before {
  content: "\f156";
}
.fa-file-image::before {
  content: "\f1c5";
}
.fa-circle-question::before {
  content: "\f059";
}
.fa-question-circle::before {
  content: "\f059";
}
.fa-plane-departure::before {
  content: "\f5b0";
}
.fa-handshake-slash::before {
  content: "\e060";
}
.fa-book-bookmark::before {
  content: "\e0bb";
}
.fa-code-branch::before {
  content: "\f126";
}
.fa-hat-cowboy::before {
  content: "\f8c0";
}
.fa-bridge::before {
  content: "\e4c8";
}
.fa-phone-flip::before {
  content: "\f879";
}
.fa-phone-alt::before {
  content: "\f879";
}
.fa-truck-front::before {
  content: "\e2b7";
}
.fa-cat::before {
  content: "\f6be";
}
.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}
.fa-truck-field::before {
  content: "\e58d";
}
.fa-route::before {
  content: "\f4d7";
}
.fa-clipboard-question::before {
  content: "\e4e3";
}
.fa-panorama::before {
  content: "\e209";
}
.fa-comment-medical::before {
  content: "\f7f5";
}
.fa-teeth-open::before {
  content: "\f62f";
}
.fa-file-circle-minus::before {
  content: "\e4ed";
}
.fa-tags::before {
  content: "\f02c";
}
.fa-wine-glass::before {
  content: "\f4e3";
}
.fa-forward-fast::before {
  content: "\f050";
}
.fa-fast-forward::before {
  content: "\f050";
}
.fa-face-meh-blank::before {
  content: "\f5a4";
}
.fa-meh-blank::before {
  content: "\f5a4";
}
.fa-square-parking::before {
  content: "\f540";
}
.fa-parking::before {
  content: "\f540";
}
.fa-house-signal::before {
  content: "\e012";
}
.fa-bars-progress::before {
  content: "\f828";
}
.fa-tasks-alt::before {
  content: "\f828";
}
.fa-faucet-drip::before {
  content: "\e006";
}
.fa-cart-flatbed::before {
  content: "\f474";
}
.fa-dolly-flatbed::before {
  content: "\f474";
}
.fa-ban-smoking::before {
  content: "\f54d";
}
.fa-smoking-ban::before {
  content: "\f54d";
}
.fa-terminal::before {
  content: "\f120";
}
.fa-mobile-button::before {
  content: "\f10b";
}
.fa-house-medical-flag::before {
  content: "\e514";
}
.fa-basket-shopping::before {
  content: "\f291";
}
.fa-shopping-basket::before {
  content: "\f291";
}
.fa-tape::before {
  content: "\f4db";
}
.fa-bus-simple::before {
  content: "\f55e";
}
.fa-bus-alt::before {
  content: "\f55e";
}
.fa-eye::before {
  content: "\f06e";
}
.fa-face-sad-cry::before {
  content: "\f5b3";
}
.fa-sad-cry::before {
  content: "\f5b3";
}
.fa-audio-description::before {
  content: "\f29e";
}
.fa-person-military-to-person::before {
  content: "\e54c";
}
.fa-file-shield::before {
  content: "\e4f0";
}
.fa-user-slash::before {
  content: "\f506";
}
.fa-pen::before {
  content: "\f304";
}
.fa-tower-observation::before {
  content: "\e586";
}
.fa-file-code::before {
  content: "\f1c9";
}
.fa-signal::before {
  content: "\f012";
}
.fa-signal-5::before {
  content: "\f012";
}
.fa-signal-perfect::before {
  content: "\f012";
}
.fa-bus::before {
  content: "\f207";
}
.fa-heart-circle-xmark::before {
  content: "\e501";
}
.fa-house-chimney::before {
  content: "\e3af";
}
.fa-home-lg::before {
  content: "\e3af";
}
.fa-window-maximize::before {
  content: "\f2d0";
}
.fa-face-frown::before {
  content: "\f119";
}
.fa-frown::before {
  content: "\f119";
}
.fa-prescription::before {
  content: "\f5b1";
}
.fa-shop::before {
  content: "\f54f";
}
.fa-store-alt::before {
  content: "\f54f";
}
.fa-floppy-disk::before {
  content: "\f0c7";
}
.fa-save::before {
  content: "\f0c7";
}
.fa-vihara::before {
  content: "\f6a7";
}
.fa-scale-unbalanced::before {
  content: "\f515";
}
.fa-balance-scale-left::before {
  content: "\f515";
}
.fa-sort-up::before {
  content: "\f0de";
}
.fa-sort-asc::before {
  content: "\f0de";
}
.fa-comment-dots::before {
  content: "\f4ad";
}
.fa-commenting::before {
  content: "\f4ad";
}
.fa-plant-wilt::before {
  content: "\e5aa";
}
.fa-diamond::before {
  content: "\f219";
}
.fa-face-grin-squint::before {
  content: "\f585";
}
.fa-grin-squint::before {
  content: "\f585";
}
.fa-hand-holding-dollar::before {
  content: "\f4c0";
}
.fa-hand-holding-usd::before {
  content: "\f4c0";
}
.fa-bacterium::before {
  content: "\e05a";
}
.fa-hand-pointer::before {
  content: "\f25a";
}
.fa-drum-steelpan::before {
  content: "\f56a";
}
.fa-hand-scissors::before {
  content: "\f257";
}
.fa-hands-praying::before {
  content: "\f684";
}
.fa-praying-hands::before {
  content: "\f684";
}
.fa-arrow-rotate-right::before {
  content: "\f01e";
}
.fa-arrow-right-rotate::before {
  content: "\f01e";
}
.fa-arrow-rotate-forward::before {
  content: "\f01e";
}
.fa-redo::before {
  content: "\f01e";
}
.fa-biohazard::before {
  content: "\f780";
}
.fa-location-crosshairs::before {
  content: "\f601";
}
.fa-location::before {
  content: "\f601";
}
.fa-mars-double::before {
  content: "\f227";
}
.fa-child-dress::before {
  content: "\e59c";
}
.fa-users-between-lines::before {
  content: "\e591";
}
.fa-lungs-virus::before {
  content: "\e067";
}
.fa-face-grin-tears::before {
  content: "\f588";
}
.fa-grin-tears::before {
  content: "\f588";
}
.fa-phone::before {
  content: "\f095";
}
.fa-calendar-xmark::before {
  content: "\f273";
}
.fa-calendar-times::before {
  content: "\f273";
}
.fa-child-reaching::before {
  content: "\e59d";
}
.fa-head-side-virus::before {
  content: "\e064";
}
.fa-user-gear::before {
  content: "\f4fe";
}
.fa-user-cog::before {
  content: "\f4fe";
}
.fa-arrow-up-1-9::before {
  content: "\f163";
}
.fa-sort-numeric-up::before {
  content: "\f163";
}
.fa-door-closed::before {
  content: "\f52a";
}
.fa-shield-virus::before {
  content: "\e06c";
}
.fa-dice-six::before {
  content: "\f526";
}
.fa-mosquito-net::before {
  content: "\e52c";
}
.fa-bridge-water::before {
  content: "\e4ce";
}
.fa-person-booth::before {
  content: "\f756";
}
.fa-text-width::before {
  content: "\f035";
}
.fa-hat-wizard::before {
  content: "\f6e8";
}
.fa-pen-fancy::before {
  content: "\f5ac";
}
.fa-person-digging::before {
  content: "\f85e";
}
.fa-digging::before {
  content: "\f85e";
}
.fa-trash::before {
  content: "\f1f8";
}
.fa-gauge-simple::before {
  content: "\f629";
}
.fa-gauge-simple-med::before {
  content: "\f629";
}
.fa-tachometer-average::before {
  content: "\f629";
}
.fa-book-medical::before {
  content: "\f7e6";
}
.fa-poo::before {
  content: "\f2fe";
}
.fa-quote-right::before {
  content: "\f10e";
}
.fa-quote-right-alt::before {
  content: "\f10e";
}
.fa-shirt::before {
  content: "\f553";
}
.fa-t-shirt::before {
  content: "\f553";
}
.fa-tshirt::before {
  content: "\f553";
}
.fa-cubes::before {
  content: "\f1b3";
}
.fa-divide::before {
  content: "\f529";
}
.fa-tenge-sign::before {
  content: "\f7d7";
}
.fa-tenge::before {
  content: "\f7d7";
}
.fa-headphones::before {
  content: "\f025";
}
.fa-hands-holding::before {
  content: "\f4c2";
}
.fa-hands-clapping::before {
  content: "\e1a8";
}
.fa-republican::before {
  content: "\f75e";
}
.fa-arrow-left::before {
  content: "\f060";
}
.fa-person-circle-xmark::before {
  content: "\e543";
}
.fa-ruler::before {
  content: "\f545";
}
.fa-align-left::before {
  content: "\f036";
}
.fa-dice-d6::before {
  content: "\f6d1";
}
.fa-restroom::before {
  content: "\f7bd";
}
.fa-j::before {
  content: "J";
}
.fa-users-viewfinder::before {
  content: "\e595";
}
.fa-file-video::before {
  content: "\f1c8";
}
.fa-up-right-from-square::before {
  content: "\f35d";
}
.fa-external-link-alt::before {
  content: "\f35d";
}
.fa-table-cells::before {
  content: "\f00a";
}
.fa-th::before {
  content: "\f00a";
}
.fa-file-pdf::before {
  content: "\f1c1";
}
.fa-book-bible::before {
  content: "\f647";
}
.fa-bible::before {
  content: "\f647";
}
.fa-o::before {
  content: "O";
}
.fa-suitcase-medical::before {
  content: "\f0fa";
}
.fa-medkit::before {
  content: "\f0fa";
}
.fa-user-secret::before {
  content: "\f21b";
}
.fa-otter::before {
  content: "\f700";
}
.fa-person-dress::before {
  content: "\f182";
}
.fa-female::before {
  content: "\f182";
}
.fa-comment-dollar::before {
  content: "\f651";
}
.fa-business-time::before {
  content: "\f64a";
}
.fa-briefcase-clock::before {
  content: "\f64a";
}
.fa-table-cells-large::before {
  content: "\f009";
}
.fa-th-large::before {
  content: "\f009";
}
.fa-book-tanakh::before {
  content: "\f827";
}
.fa-tanakh::before {
  content: "\f827";
}
.fa-phone-volume::before {
  content: "\f2a0";
}
.fa-volume-control-phone::before {
  content: "\f2a0";
}
.fa-hat-cowboy-side::before {
  content: "\f8c1";
}
.fa-clipboard-user::before {
  content: "\f7f3";
}
.fa-child::before {
  content: "\f1ae";
}
.fa-lira-sign::before {
  content: "\f195";
}
.fa-satellite::before {
  content: "\f7bf";
}
.fa-plane-lock::before {
  content: "\e558";
}
.fa-tag::before {
  content: "\f02b";
}
.fa-comment::before {
  content: "\f075";
}
.fa-cake-candles::before {
  content: "\f1fd";
}
.fa-birthday-cake::before {
  content: "\f1fd";
}
.fa-cake::before {
  content: "\f1fd";
}
.fa-envelope::before {
  content: "\f0e0";
}
.fa-angles-up::before {
  content: "\f102";
}
.fa-angle-double-up::before {
  content: "\f102";
}
.fa-paperclip::before {
  content: "\f0c6";
}
.fa-arrow-right-to-city::before {
  content: "\e4b3";
}
.fa-ribbon::before {
  content: "\f4d6";
}
.fa-lungs::before {
  content: "\f604";
}
.fa-arrow-up-9-1::before {
  content: "\f887";
}
.fa-sort-numeric-up-alt::before {
  content: "\f887";
}
.fa-litecoin-sign::before {
  content: "\e1d3";
}
.fa-border-none::before {
  content: "\f850";
}
.fa-circle-nodes::before {
  content: "\e4e2";
}
.fa-parachute-box::before {
  content: "\f4cd";
}
.fa-indent::before {
  content: "\f03c";
}
.fa-truck-field-un::before {
  content: "\e58e";
}
.fa-hourglass::before {
  content: "\f254";
}
.fa-hourglass-empty::before {
  content: "\f254";
}
.fa-mountain::before {
  content: "\f6fc";
}
.fa-user-doctor::before {
  content: "\f0f0";
}
.fa-user-md::before {
  content: "\f0f0";
}
.fa-circle-info::before {
  content: "\f05a";
}
.fa-info-circle::before {
  content: "\f05a";
}
.fa-cloud-meatball::before {
  content: "\f73b";
}
.fa-camera::before {
  content: "\f030";
}
.fa-camera-alt::before {
  content: "\f030";
}
.fa-square-virus::before {
  content: "\e578";
}
.fa-meteor::before {
  content: "\f753";
}
.fa-car-on::before {
  content: "\e4dd";
}
.fa-sleigh::before {
  content: "\f7cc";
}
.fa-arrow-down-1-9::before {
  content: "\f162";
}
.fa-sort-numeric-asc::before {
  content: "\f162";
}
.fa-sort-numeric-down::before {
  content: "\f162";
}
.fa-hand-holding-droplet::before {
  content: "\f4c1";
}
.fa-hand-holding-water::before {
  content: "\f4c1";
}
.fa-water::before {
  content: "\f773";
}
.fa-calendar-check::before {
  content: "\f274";
}
.fa-braille::before {
  content: "\f2a1";
}
.fa-prescription-bottle-medical::before {
  content: "\f486";
}
.fa-prescription-bottle-alt::before {
  content: "\f486";
}
.fa-landmark::before {
  content: "\f66f";
}
.fa-truck::before {
  content: "\f0d1";
}
.fa-crosshairs::before {
  content: "\f05b";
}
.fa-person-cane::before {
  content: "\e53c";
}
.fa-tent::before {
  content: "\e57d";
}
.fa-vest-patches::before {
  content: "\e086";
}
.fa-check-double::before {
  content: "\f560";
}
.fa-arrow-down-a-z::before {
  content: "\f15d";
}
.fa-sort-alpha-asc::before {
  content: "\f15d";
}
.fa-sort-alpha-down::before {
  content: "\f15d";
}
.fa-money-bill-wheat::before {
  content: "\e52a";
}
.fa-cookie::before {
  content: "\f563";
}
.fa-arrow-rotate-left::before {
  content: "\f0e2";
}
.fa-arrow-left-rotate::before {
  content: "\f0e2";
}
.fa-arrow-rotate-back::before {
  content: "\f0e2";
}
.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}
.fa-undo::before {
  content: "\f0e2";
}
.fa-hard-drive::before {
  content: "\f0a0";
}
.fa-hdd::before {
  content: "\f0a0";
}
.fa-face-grin-squint-tears::before {
  content: "\f586";
}
.fa-grin-squint-tears::before {
  content: "\f586";
}
.fa-dumbbell::before {
  content: "\f44b";
}
.fa-rectangle-list::before {
  content: "\f022";
}
.fa-list-alt::before {
  content: "\f022";
}
.fa-tarp-droplet::before {
  content: "\e57c";
}
.fa-house-medical-circle-check::before {
  content: "\e511";
}
.fa-person-skiing-nordic::before {
  content: "\f7ca";
}
.fa-skiing-nordic::before {
  content: "\f7ca";
}
.fa-calendar-plus::before {
  content: "\f271";
}
.fa-plane-arrival::before {
  content: "\f5af";
}
.fa-circle-left::before {
  content: "\f359";
}
.fa-arrow-alt-circle-left::before {
  content: "\f359";
}
.fa-train-subway::before {
  content: "\f239";
}
.fa-subway::before {
  content: "\f239";
}
.fa-chart-gantt::before {
  content: "\e0e4";
}
.fa-indian-rupee-sign::before {
  content: "\e1bc";
}
.fa-indian-rupee::before {
  content: "\e1bc";
}
.fa-inr::before {
  content: "\e1bc";
}
.fa-crop-simple::before {
  content: "\f565";
}
.fa-crop-alt::before {
  content: "\f565";
}
.fa-money-bill-1::before {
  content: "\f3d1";
}
.fa-money-bill-alt::before {
  content: "\f3d1";
}
.fa-left-long::before {
  content: "\f30a";
}
.fa-long-arrow-alt-left::before {
  content: "\f30a";
}
.fa-dna::before {
  content: "\f471";
}
.fa-virus-slash::before {
  content: "\e075";
}
.fa-minus::before {
  content: "\f068";
}
.fa-subtract::before {
  content: "\f068";
}
.fa-chess::before {
  content: "\f439";
}
.fa-arrow-left-long::before {
  content: "\f177";
}
.fa-long-arrow-left::before {
  content: "\f177";
}
.fa-plug-circle-check::before {
  content: "\e55c";
}
.fa-street-view::before {
  content: "\f21d";
}
.fa-franc-sign::before {
  content: "\e18f";
}
.fa-volume-off::before {
  content: "\f026";
}
.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}
.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}
.fa-asl-interpreting::before {
  content: "\f2a3";
}
.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}
.fa-gear::before {
  content: "\f013";
}
.fa-cog::before {
  content: "\f013";
}
.fa-droplet-slash::before {
  content: "\f5c7";
}
.fa-tint-slash::before {
  content: "\f5c7";
}
.fa-mosque::before {
  content: "\f678";
}
.fa-mosquito::before {
  content: "\e52b";
}
.fa-star-of-david::before {
  content: "\f69a";
}
.fa-person-military-rifle::before {
  content: "\e54b";
}
.fa-cart-shopping::before {
  content: "\f07a";
}
.fa-shopping-cart::before {
  content: "\f07a";
}
.fa-vials::before {
  content: "\f493";
}
.fa-plug-circle-plus::before {
  content: "\e55f";
}
.fa-place-of-worship::before {
  content: "\f67f";
}
.fa-grip-vertical::before {
  content: "\f58e";
}
.fa-arrow-turn-up::before {
  content: "\f148";
}
.fa-level-up::before {
  content: "\f148";
}
.fa-u::before {
  content: "U";
}
.fa-square-root-variable::before {
  content: "\f698";
}
.fa-square-root-alt::before {
  content: "\f698";
}
.fa-clock::before {
  content: "\f017";
}
.fa-clock-four::before {
  content: "\f017";
}
.fa-backward-step::before {
  content: "\f048";
}
.fa-step-backward::before {
  content: "\f048";
}
.fa-pallet::before {
  content: "\f482";
}
.fa-faucet::before {
  content: "\e005";
}
.fa-baseball-bat-ball::before {
  content: "\f432";
}
.fa-s::before {
  content: "S";
}
.fa-timeline::before {
  content: "\e29c";
}
.fa-keyboard::before {
  content: "\f11c";
}
.fa-caret-down::before {
  content: "\f0d7";
}
.fa-house-chimney-medical::before {
  content: "\f7f2";
}
.fa-clinic-medical::before {
  content: "\f7f2";
}
.fa-temperature-three-quarters::before {
  content: "\f2c8";
}
.fa-temperature-3::before {
  content: "\f2c8";
}
.fa-thermometer-3::before {
  content: "\f2c8";
}
.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}
.fa-mobile-screen::before {
  content: "\f3cf";
}
.fa-mobile-android-alt::before {
  content: "\f3cf";
}
.fa-plane-up::before {
  content: "\e22d";
}
.fa-piggy-bank::before {
  content: "\f4d3";
}
.fa-battery-half::before {
  content: "\f242";
}
.fa-battery-3::before {
  content: "\f242";
}
.fa-mountain-city::before {
  content: "\e52e";
}
.fa-coins::before {
  content: "\f51e";
}
.fa-khanda::before {
  content: "\f66d";
}
.fa-sliders::before {
  content: "\f1de";
}
.fa-sliders-h::before {
  content: "\f1de";
}
.fa-folder-tree::before {
  content: "\f802";
}
.fa-network-wired::before {
  content: "\f6ff";
}
.fa-map-pin::before {
  content: "\f276";
}
.fa-hamsa::before {
  content: "\f665";
}
.fa-cent-sign::before {
  content: "\e3f5";
}
.fa-flask::before {
  content: "\f0c3";
}
.fa-person-pregnant::before {
  content: "\e31e";
}
.fa-wand-sparkles::before {
  content: "\f72b";
}
.fa-ellipsis-vertical::before {
  content: "\f142";
}
.fa-ellipsis-v::before {
  content: "\f142";
}
.fa-ticket::before {
  content: "\f145";
}
.fa-power-off::before {
  content: "\f011";
}
.fa-right-long::before {
  content: "\f30b";
}
.fa-long-arrow-alt-right::before {
  content: "\f30b";
}
.fa-flag-usa::before {
  content: "\f74d";
}
.fa-laptop-file::before {
  content: "\e51d";
}
.fa-tty::before {
  content: "\f1e4";
}
.fa-teletype::before {
  content: "\f1e4";
}
.fa-diagram-next::before {
  content: "\e476";
}
.fa-person-rifle::before {
  content: "\e54e";
}
.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}
.fa-closed-captioning::before {
  content: "\f20a";
}
.fa-person-hiking::before {
  content: "\f6ec";
}
.fa-hiking::before {
  content: "\f6ec";
}
.fa-venus-double::before {
  content: "\f226";
}
.fa-images::before {
  content: "\f302";
}
.fa-calculator::before {
  content: "\f1ec";
}
.fa-people-pulling::before {
  content: "\e535";
}
.fa-n::before {
  content: "N";
}
.fa-cable-car::before {
  content: "\f7da";
}
.fa-tram::before {
  content: "\f7da";
}
.fa-cloud-rain::before {
  content: "\f73d";
}
.fa-building-circle-xmark::before {
  content: "\e4d4";
}
.fa-ship::before {
  content: "\f21a";
}
.fa-arrows-down-to-line::before {
  content: "\e4b8";
}
.fa-download::before {
  content: "\f019";
}
.fa-face-grin::before {
  content: "\f580";
}
.fa-grin::before {
  content: "\f580";
}
.fa-delete-left::before {
  content: "\f55a";
}
.fa-backspace::before {
  content: "\f55a";
}
.fa-eye-dropper::before {
  content: "\f1fb";
}
.fa-eye-dropper-empty::before {
  content: "\f1fb";
}
.fa-eyedropper::before {
  content: "\f1fb";
}
.fa-file-circle-check::before {
  content: "\e5a0";
}
.fa-forward::before {
  content: "\f04e";
}
.fa-mobile::before {
  content: "\f3ce";
}
.fa-mobile-android::before {
  content: "\f3ce";
}
.fa-mobile-phone::before {
  content: "\f3ce";
}
.fa-face-meh::before {
  content: "\f11a";
}
.fa-meh::before {
  content: "\f11a";
}
.fa-align-center::before {
  content: "\f037";
}
.fa-book-skull::before {
  content: "\f6b7";
}
.fa-book-dead::before {
  content: "\f6b7";
}
.fa-id-card::before {
  content: "\f2c2";
}
.fa-drivers-license::before {
  content: "\f2c2";
}
.fa-outdent::before {
  content: "\f03b";
}
.fa-dedent::before {
  content: "\f03b";
}
.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}
.fa-house::before {
  content: "\f015";
}
.fa-home::before {
  content: "\f015";
}
.fa-home-alt::before {
  content: "\f015";
}
.fa-home-lg-alt::before {
  content: "\f015";
}
.fa-calendar-week::before {
  content: "\f784";
}
.fa-laptop-medical::before {
  content: "\f812";
}
.fa-b::before {
  content: "B";
}
.fa-file-medical::before {
  content: "\f477";
}
.fa-dice-one::before {
  content: "\f525";
}
.fa-kiwi-bird::before {
  content: "\f535";
}
.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}
.fa-exchange::before {
  content: "\f0ec";
}
.fa-rotate-right::before {
  content: "\f2f9";
}
.fa-redo-alt::before {
  content: "\f2f9";
}
.fa-rotate-forward::before {
  content: "\f2f9";
}
.fa-utensils::before {
  content: "\f2e7";
}
.fa-cutlery::before {
  content: "\f2e7";
}
.fa-arrow-up-wide-short::before {
  content: "\f161";
}
.fa-sort-amount-up::before {
  content: "\f161";
}
.fa-mill-sign::before {
  content: "\e1ed";
}
.fa-bowl-rice::before {
  content: "\e2eb";
}
.fa-skull::before {
  content: "\f54c";
}
.fa-tower-broadcast::before {
  content: "\f519";
}
.fa-broadcast-tower::before {
  content: "\f519";
}
.fa-truck-pickup::before {
  content: "\f63c";
}
.fa-up-long::before {
  content: "\f30c";
}
.fa-long-arrow-alt-up::before {
  content: "\f30c";
}
.fa-stop::before {
  content: "\f04d";
}
.fa-code-merge::before {
  content: "\f387";
}
.fa-upload::before {
  content: "\f093";
}
.fa-hurricane::before {
  content: "\f751";
}
.fa-mound::before {
  content: "\e52d";
}
.fa-toilet-portable::before {
  content: "\e583";
}
.fa-compact-disc::before {
  content: "\f51f";
}
.fa-file-arrow-down::before {
  content: "\f56d";
}
.fa-file-download::before {
  content: "\f56d";
}
.fa-caravan::before {
  content: "\f8ff";
}
.fa-shield-cat::before {
  content: "\e572";
}
.fa-bolt::before {
  content: "\f0e7";
}
.fa-zap::before {
  content: "\f0e7";
}
.fa-glass-water::before {
  content: "\e4f4";
}
.fa-oil-well::before {
  content: "\e532";
}
.fa-vault::before {
  content: "\e2c5";
}
.fa-mars::before {
  content: "\f222";
}
.fa-toilet::before {
  content: "\f7d8";
}
.fa-plane-circle-xmark::before {
  content: "\e557";
}
.fa-yen-sign::before {
  content: "\f157";
}
.fa-cny::before {
  content: "\f157";
}
.fa-jpy::before {
  content: "\f157";
}
.fa-rmb::before {
  content: "\f157";
}
.fa-yen::before {
  content: "\f157";
}
.fa-ruble-sign::before {
  content: "\f158";
}
.fa-rouble::before {
  content: "\f158";
}
.fa-rub::before {
  content: "\f158";
}
.fa-ruble::before {
  content: "\f158";
}
.fa-sun::before {
  content: "\f185";
}
.fa-guitar::before {
  content: "\f7a6";
}
.fa-face-laugh-wink::before {
  content: "\f59c";
}
.fa-laugh-wink::before {
  content: "\f59c";
}
.fa-horse-head::before {
  content: "\f7ab";
}
.fa-bore-hole::before {
  content: "\e4c3";
}
.fa-industry::before {
  content: "\f275";
}
.fa-circle-down::before {
  content: "\f358";
}
.fa-arrow-alt-circle-down::before {
  content: "\f358";
}
.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}
.fa-florin-sign::before {
  content: "\e184";
}
.fa-arrow-down-short-wide::before {
  content: "\f884";
}
.fa-sort-amount-desc::before {
  content: "\f884";
}
.fa-sort-amount-down-alt::before {
  content: "\f884";
}
.fa-less-than::before {
  content: "\<";
}
.fa-angle-down::before {
  content: "\f107";
}
.fa-car-tunnel::before {
  content: "\e4de";
}
.fa-head-side-cough::before {
  content: "\e061";
}
.fa-grip-lines::before {
  content: "\f7a4";
}
.fa-thumbs-down::before {
  content: "\f165";
}
.fa-user-lock::before {
  content: "\f502";
}
.fa-arrow-right-long::before {
  content: "\f178";
}
.fa-long-arrow-right::before {
  content: "\f178";
}
.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}
.fa-ellipsis::before {
  content: "\f141";
}
.fa-ellipsis-h::before {
  content: "\f141";
}
.fa-chess-pawn::before {
  content: "\f443";
}
.fa-kit-medical::before {
  content: "\f479";
}
.fa-first-aid::before {
  content: "\f479";
}
.fa-person-through-window::before {
  content: "\e5a9";
}
.fa-toolbox::before {
  content: "\f552";
}
.fa-hands-holding-circle::before {
  content: "\e4fb";
}
.fa-bug::before {
  content: "\f188";
}
.fa-credit-card::before {
  content: "\f09d";
}
.fa-credit-card-alt::before {
  content: "\f09d";
}
.fa-car::before {
  content: "\f1b9";
}
.fa-automobile::before {
  content: "\f1b9";
}
.fa-hand-holding-hand::before {
  content: "\e4f7";
}
.fa-book-open-reader::before {
  content: "\f5da";
}
.fa-book-reader::before {
  content: "\f5da";
}
.fa-mountain-sun::before {
  content: "\e52f";
}
.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}
.fa-dice-d20::before {
  content: "\f6cf";
}
.fa-truck-droplet::before {
  content: "\e58c";
}
.fa-file-circle-xmark::before {
  content: "\e5a1";
}
.fa-temperature-arrow-up::before {
  content: "\e040";
}
.fa-temperature-up::before {
  content: "\e040";
}
.fa-medal::before {
  content: "\f5a2";
}
.fa-bed::before {
  content: "\f236";
}
.fa-square-h::before {
  content: "\f0fd";
}
.fa-h-square::before {
  content: "\f0fd";
}
.fa-podcast::before {
  content: "\f2ce";
}
.fa-temperature-full::before {
  content: "\f2c7";
}
.fa-temperature-4::before {
  content: "\f2c7";
}
.fa-thermometer-4::before {
  content: "\f2c7";
}
.fa-thermometer-full::before {
  content: "\f2c7";
}
.fa-bell::before {
  content: "\f0f3";
}
.fa-superscript::before {
  content: "\f12b";
}
.fa-plug-circle-xmark::before {
  content: "\e560";
}
.fa-star-of-life::before {
  content: "\f621";
}
.fa-phone-slash::before {
  content: "\f3dd";
}
.fa-paint-roller::before {
  content: "\f5aa";
}
.fa-handshake-angle::before {
  content: "\f4c4";
}
.fa-hands-helping::before {
  content: "\f4c4";
}
.fa-location-dot::before {
  content: "\f3c5";
}
.fa-map-marker-alt::before {
  content: "\f3c5";
}
.fa-file::before {
  content: "\f15b";
}
.fa-greater-than::before {
  content: "\>";
}
.fa-person-swimming::before {
  content: "\f5c4";
}
.fa-swimmer::before {
  content: "\f5c4";
}
.fa-arrow-down::before {
  content: "\f063";
}
.fa-droplet::before {
  content: "\f043";
}
.fa-tint::before {
  content: "\f043";
}
.fa-eraser::before {
  content: "\f12d";
}
.fa-earth-americas::before {
  content: "\f57d";
}
.fa-earth::before {
  content: "\f57d";
}
.fa-earth-america::before {
  content: "\f57d";
}
.fa-globe-americas::before {
  content: "\f57d";
}
.fa-person-burst::before {
  content: "\e53b";
}
.fa-dove::before {
  content: "\f4ba";
}
.fa-battery-empty::before {
  content: "\f244";
}
.fa-battery-0::before {
  content: "\f244";
}
.fa-socks::before {
  content: "\f696";
}
.fa-inbox::before {
  content: "\f01c";
}
.fa-section::before {
  content: "\e447";
}
.fa-gauge-high::before {
  content: "\f625";
}
.fa-tachometer-alt::before {
  content: "\f625";
}
.fa-tachometer-alt-fast::before {
  content: "\f625";
}
.fa-envelope-open-text::before {
  content: "\f658";
}
.fa-hospital::before {
  content: "\f0f8";
}
.fa-hospital-alt::before {
  content: "\f0f8";
}
.fa-hospital-wide::before {
  content: "\f0f8";
}
.fa-wine-bottle::before {
  content: "\f72f";
}
.fa-chess-rook::before {
  content: "\f447";
}
.fa-bars-staggered::before {
  content: "\f550";
}
.fa-reorder::before {
  content: "\f550";
}
.fa-stream::before {
  content: "\f550";
}
.fa-dharmachakra::before {
  content: "\f655";
}
.fa-hotdog::before {
  content: "\f80f";
}
.fa-person-walking-with-cane::before {
  content: "\f29d";
}
.fa-blind::before {
  content: "\f29d";
}
.fa-drum::before {
  content: "\f569";
}
.fa-ice-cream::before {
  content: "\f810";
}
.fa-heart-circle-bolt::before {
  content: "\e4fc";
}
.fa-fax::before {
  content: "\f1ac";
}
.fa-paragraph::before {
  content: "\f1dd";
}
.fa-check-to-slot::before {
  content: "\f772";
}
.fa-vote-yea::before {
  content: "\f772";
}
.fa-star-half::before {
  content: "\f089";
}
.fa-boxes-stacked::before {
  content: "\f468";
}
.fa-boxes::before {
  content: "\f468";
}
.fa-boxes-alt::before {
  content: "\f468";
}
.fa-link::before {
  content: "\f0c1";
}
.fa-chain::before {
  content: "\f0c1";
}
.fa-ear-listen::before {
  content: "\f2a2";
}
.fa-assistive-listening-systems::before {
  content: "\f2a2";
}
.fa-tree-city::before {
  content: "\e587";
}
.fa-play::before {
  content: "\f04b";
}
.fa-font::before {
  content: "\f031";
}
.fa-table-cells-row-lock::before {
  content: "\e67a";
}
.fa-rupiah-sign::before {
  content: "\e23d";
}
.fa-magnifying-glass::before {
  content: "\f002";
}
.fa-search::before {
  content: "\f002";
}
.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}
.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}
.fa-table-tennis::before {
  content: "\f45d";
}
.fa-person-dots-from-line::before {
  content: "\f470";
}
.fa-diagnoses::before {
  content: "\f470";
}
.fa-trash-can-arrow-up::before {
  content: "\f82a";
}
.fa-trash-restore-alt::before {
  content: "\f82a";
}
.fa-naira-sign::before {
  content: "\e1f6";
}
.fa-cart-arrow-down::before {
  content: "\f218";
}
.fa-walkie-talkie::before {
  content: "\f8ef";
}
.fa-file-pen::before {
  content: "\f31c";
}
.fa-file-edit::before {
  content: "\f31c";
}
.fa-receipt::before {
  content: "\f543";
}
.fa-square-pen::before {
  content: "\f14b";
}
.fa-pen-square::before {
  content: "\f14b";
}
.fa-pencil-square::before {
  content: "\f14b";
}
.fa-suitcase-rolling::before {
  content: "\f5c1";
}
.fa-person-circle-exclamation::before {
  content: "\e53f";
}
.fa-chevron-down::before {
  content: "\f078";
}
.fa-battery-full::before {
  content: "\f240";
}
.fa-battery::before {
  content: "\f240";
}
.fa-battery-5::before {
  content: "\f240";
}
.fa-skull-crossbones::before {
  content: "\f714";
}
.fa-code-compare::before {
  content: "\e13a";
}
.fa-list-ul::before {
  content: "\f0ca";
}
.fa-list-dots::before {
  content: "\f0ca";
}
.fa-school-lock::before {
  content: "\e56f";
}
.fa-tower-cell::before {
  content: "\e585";
}
.fa-down-long::before {
  content: "\f309";
}
.fa-long-arrow-alt-down::before {
  content: "\f309";
}
.fa-ranking-star::before {
  content: "\e561";
}
.fa-chess-king::before {
  content: "\f43f";
}
.fa-person-harassing::before {
  content: "\e549";
}
.fa-brazilian-real-sign::before {
  content: "\e46c";
}
.fa-landmark-dome::before {
  content: "\f752";
}
.fa-landmark-alt::before {
  content: "\f752";
}
.fa-arrow-up::before {
  content: "\f062";
}
.fa-tv::before {
  content: "\f26c";
}
.fa-television::before {
  content: "\f26c";
}
.fa-tv-alt::before {
  content: "\f26c";
}
.fa-shrimp::before {
  content: "\e448";
}
.fa-list-check::before {
  content: "\f0ae";
}
.fa-tasks::before {
  content: "\f0ae";
}
.fa-jug-detergent::before {
  content: "\e519";
}
.fa-circle-user::before {
  content: "\f2bd";
}
.fa-user-circle::before {
  content: "\f2bd";
}
.fa-user-shield::before {
  content: "\f505";
}
.fa-wind::before {
  content: "\f72e";
}
.fa-car-burst::before {
  content: "\f5e1";
}
.fa-car-crash::before {
  content: "\f5e1";
}
.fa-y::before {
  content: "Y";
}
.fa-person-snowboarding::before {
  content: "\f7ce";
}
.fa-snowboarding::before {
  content: "\f7ce";
}
.fa-truck-fast::before {
  content: "\f48b";
}
.fa-shipping-fast::before {
  content: "\f48b";
}
.fa-fish::before {
  content: "\f578";
}
.fa-user-graduate::before {
  content: "\f501";
}
.fa-circle-half-stroke::before {
  content: "\f042";
}
.fa-adjust::before {
  content: "\f042";
}
.fa-clapperboard::before {
  content: "\e131";
}
.fa-circle-radiation::before {
  content: "\f7ba";
}
.fa-radiation-alt::before {
  content: "\f7ba";
}
.fa-baseball::before {
  content: "\f433";
}
.fa-baseball-ball::before {
  content: "\f433";
}
.fa-jet-fighter-up::before {
  content: "\e518";
}
.fa-diagram-project::before {
  content: "\f542";
}
.fa-project-diagram::before {
  content: "\f542";
}
.fa-copy::before {
  content: "\f0c5";
}
.fa-volume-xmark::before {
  content: "\f6a9";
}
.fa-volume-mute::before {
  content: "\f6a9";
}
.fa-volume-times::before {
  content: "\f6a9";
}
.fa-hand-sparkles::before {
  content: "\e05d";
}
.fa-grip::before {
  content: "\f58d";
}
.fa-grip-horizontal::before {
  content: "\f58d";
}
.fa-share-from-square::before {
  content: "\f14d";
}
.fa-share-square::before {
  content: "\f14d";
}
.fa-child-combatant::before {
  content: "\e4e0";
}
.fa-child-rifle::before {
  content: "\e4e0";
}
.fa-gun::before {
  content: "\e19b";
}
.fa-square-phone::before {
  content: "\f098";
}
.fa-phone-square::before {
  content: "\f098";
}
.fa-plus::before {
  content: "\+";
}
.fa-add::before {
  content: "\+";
}
.fa-expand::before {
  content: "\f065";
}
.fa-computer::before {
  content: "\e4e5";
}
.fa-xmark::before {
  content: "\f00d";
}
.fa-close::before {
  content: "\f00d";
}
.fa-multiply::before {
  content: "\f00d";
}
.fa-remove::before {
  content: "\f00d";
}
.fa-times::before {
  content: "\f00d";
}
.fa-arrows-up-down-left-right::before {
  content: "\f047";
}
.fa-arrows::before {
  content: "\f047";
}
.fa-chalkboard-user::before {
  content: "\f51c";
}
.fa-chalkboard-teacher::before {
  content: "\f51c";
}
.fa-peso-sign::before {
  content: "\e222";
}
.fa-building-shield::before {
  content: "\e4d8";
}
.fa-baby::before {
  content: "\f77c";
}
.fa-users-line::before {
  content: "\e592";
}
.fa-quote-left::before {
  content: "\f10d";
}
.fa-quote-left-alt::before {
  content: "\f10d";
}
.fa-tractor::before {
  content: "\f722";
}
.fa-trash-arrow-up::before {
  content: "\f829";
}
.fa-trash-restore::before {
  content: "\f829";
}
.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}
.fa-lines-leaning::before {
  content: "\e51e";
}
.fa-ruler-combined::before {
  content: "\f546";
}
.fa-copyright::before {
  content: "\f1f9";
}
.fa-equals::before {
  content: "\=";
}
.fa-blender::before {
  content: "\f517";
}
.fa-teeth::before {
  content: "\f62e";
}
.fa-shekel-sign::before {
  content: "\f20b";
}
.fa-ils::before {
  content: "\f20b";
}
.fa-shekel::before {
  content: "\f20b";
}
.fa-sheqel::before {
  content: "\f20b";
}
.fa-sheqel-sign::before {
  content: "\f20b";
}
.fa-map::before {
  content: "\f279";
}
.fa-rocket::before {
  content: "\f135";
}
.fa-photo-film::before {
  content: "\f87c";
}
.fa-photo-video::before {
  content: "\f87c";
}
.fa-folder-minus::before {
  content: "\f65d";
}
.fa-store::before {
  content: "\f54e";
}
.fa-arrow-trend-up::before {
  content: "\e098";
}
.fa-plug-circle-minus::before {
  content: "\e55e";
}
.fa-sign-hanging::before {
  content: "\f4d9";
}
.fa-sign::before {
  content: "\f4d9";
}
.fa-bezier-curve::before {
  content: "\f55b";
}
.fa-bell-slash::before {
  content: "\f1f6";
}
.fa-tablet::before {
  content: "\f3fb";
}
.fa-tablet-android::before {
  content: "\f3fb";
}
.fa-school-flag::before {
  content: "\e56e";
}
.fa-fill::before {
  content: "\f575";
}
.fa-angle-up::before {
  content: "\f106";
}
.fa-drumstick-bite::before {
  content: "\f6d7";
}
.fa-holly-berry::before {
  content: "\f7aa";
}
.fa-chevron-left::before {
  content: "\f053";
}
.fa-bacteria::before {
  content: "\e059";
}
.fa-hand-lizard::before {
  content: "\f258";
}
.fa-notdef::before {
  content: "\e1fe";
}
.fa-disease::before {
  content: "\f7fa";
}
.fa-briefcase-medical::before {
  content: "\f469";
}
.fa-genderless::before {
  content: "\f22d";
}
.fa-chevron-right::before {
  content: "\f054";
}
.fa-retweet::before {
  content: "\f079";
}
.fa-car-rear::before {
  content: "\f5de";
}
.fa-car-alt::before {
  content: "\f5de";
}
.fa-pump-soap::before {
  content: "\e06b";
}
.fa-video-slash::before {
  content: "\f4e2";
}
.fa-battery-quarter::before {
  content: "\f243";
}
.fa-battery-2::before {
  content: "\f243";
}
.fa-radio::before {
  content: "\f8d7";
}
.fa-baby-carriage::before {
  content: "\f77d";
}
.fa-carriage-baby::before {
  content: "\f77d";
}
.fa-traffic-light::before {
  content: "\f637";
}
.fa-thermometer::before {
  content: "\f491";
}
.fa-vr-cardboard::before {
  content: "\f729";
}
.fa-hand-middle-finger::before {
  content: "\f806";
}
.fa-percent::before {
  content: "\%";
}
.fa-percentage::before {
  content: "\%";
}
.fa-truck-moving::before {
  content: "\f4df";
}
.fa-glass-water-droplet::before {
  content: "\e4f5";
}
.fa-display::before {
  content: "\e163";
}
.fa-face-smile::before {
  content: "\f118";
}
.fa-smile::before {
  content: "\f118";
}
.fa-thumbtack::before {
  content: "\f08d";
}
.fa-thumb-tack::before {
  content: "\f08d";
}
.fa-trophy::before {
  content: "\f091";
}
.fa-person-praying::before {
  content: "\f683";
}
.fa-pray::before {
  content: "\f683";
}
.fa-hammer::before {
  content: "\f6e3";
}
.fa-hand-peace::before {
  content: "\f25b";
}
.fa-rotate::before {
  content: "\f2f1";
}
.fa-sync-alt::before {
  content: "\f2f1";
}
.fa-spinner::before {
  content: "\f110";
}
.fa-robot::before {
  content: "\f544";
}
.fa-peace::before {
  content: "\f67c";
}
.fa-gears::before {
  content: "\f085";
}
.fa-cogs::before {
  content: "\f085";
}
.fa-warehouse::before {
  content: "\f494";
}
.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}
.fa-splotch::before {
  content: "\f5bc";
}
.fa-face-grin-hearts::before {
  content: "\f584";
}
.fa-grin-hearts::before {
  content: "\f584";
}
.fa-dice-four::before {
  content: "\f524";
}
.fa-sim-card::before {
  content: "\f7c4";
}
.fa-transgender::before {
  content: "\f225";
}
.fa-transgender-alt::before {
  content: "\f225";
}
.fa-mercury::before {
  content: "\f223";
}
.fa-arrow-turn-down::before {
  content: "\f149";
}
.fa-level-down::before {
  content: "\f149";
}
.fa-person-falling-burst::before {
  content: "\e547";
}
.fa-award::before {
  content: "\f559";
}
.fa-ticket-simple::before {
  content: "\f3ff";
}
.fa-ticket-alt::before {
  content: "\f3ff";
}
.fa-building::before {
  content: "\f1ad";
}
.fa-angles-left::before {
  content: "\f100";
}
.fa-angle-double-left::before {
  content: "\f100";
}
.fa-qrcode::before {
  content: "\f029";
}
.fa-clock-rotate-left::before {
  content: "\f1da";
}
.fa-history::before {
  content: "\f1da";
}
.fa-face-grin-beam-sweat::before {
  content: "\f583";
}
.fa-grin-beam-sweat::before {
  content: "\f583";
}
.fa-file-export::before {
  content: "\f56e";
}
.fa-arrow-right-from-file::before {
  content: "\f56e";
}
.fa-shield::before {
  content: "\f132";
}
.fa-shield-blank::before {
  content: "\f132";
}
.fa-arrow-up-short-wide::before {
  content: "\f885";
}
.fa-sort-amount-up-alt::before {
  content: "\f885";
}
.fa-house-medical::before {
  content: "\e3b2";
}
.fa-golf-ball-tee::before {
  content: "\f450";
}
.fa-golf-ball::before {
  content: "\f450";
}
.fa-circle-chevron-left::before {
  content: "\f137";
}
.fa-chevron-circle-left::before {
  content: "\f137";
}
.fa-house-chimney-window::before {
  content: "\e00d";
}
.fa-pen-nib::before {
  content: "\f5ad";
}
.fa-tent-arrow-turn-left::before {
  content: "\e580";
}
.fa-tents::before {
  content: "\e582";
}
.fa-wand-magic::before {
  content: "\f0d0";
}
.fa-magic::before {
  content: "\f0d0";
}
.fa-dog::before {
  content: "\f6d3";
}
.fa-carrot::before {
  content: "\f787";
}
.fa-moon::before {
  content: "\f186";
}
.fa-wine-glass-empty::before {
  content: "\f5ce";
}
.fa-wine-glass-alt::before {
  content: "\f5ce";
}
.fa-cheese::before {
  content: "\f7ef";
}
.fa-yin-yang::before {
  content: "\f6ad";
}
.fa-music::before {
  content: "\f001";
}
.fa-code-commit::before {
  content: "\f386";
}
.fa-temperature-low::before {
  content: "\f76b";
}
.fa-person-biking::before {
  content: "\f84a";
}
.fa-biking::before {
  content: "\f84a";
}
.fa-broom::before {
  content: "\f51a";
}
.fa-shield-heart::before {
  content: "\e574";
}
.fa-gopuram::before {
  content: "\f664";
}
.fa-earth-oceania::before {
  content: "\e47b";
}
.fa-globe-oceania::before {
  content: "\e47b";
}
.fa-square-xmark::before {
  content: "\f2d3";
}
.fa-times-square::before {
  content: "\f2d3";
}
.fa-xmark-square::before {
  content: "\f2d3";
}
.fa-hashtag::before {
  content: "\#";
}
.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}
.fa-expand-alt::before {
  content: "\f424";
}
.fa-oil-can::before {
  content: "\f613";
}
.fa-t::before {
  content: "T";
}
.fa-hippo::before {
  content: "\f6ed";
}
.fa-chart-column::before {
  content: "\e0e3";
}
.fa-infinity::before {
  content: "\f534";
}
.fa-vial-circle-check::before {
  content: "\e596";
}
.fa-person-arrow-down-to-line::before {
  content: "\e538";
}
.fa-voicemail::before {
  content: "\f897";
}
.fa-fan::before {
  content: "\f863";
}
.fa-person-walking-luggage::before {
  content: "\e554";
}
.fa-up-down::before {
  content: "\f338";
}
.fa-arrows-alt-v::before {
  content: "\f338";
}
.fa-cloud-moon-rain::before {
  content: "\f73c";
}
.fa-calendar::before {
  content: "\f133";
}
.fa-trailer::before {
  content: "\e041";
}
.fa-bahai::before {
  content: "\f666";
}
.fa-haykal::before {
  content: "\f666";
}
.fa-sd-card::before {
  content: "\f7c2";
}
.fa-dragon::before {
  content: "\f6d5";
}
.fa-shoe-prints::before {
  content: "\f54b";
}
.fa-circle-plus::before {
  content: "\f055";
}
.fa-plus-circle::before {
  content: "\f055";
}
.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}
.fa-grin-tongue-wink::before {
  content: "\f58b";
}
.fa-hand-holding::before {
  content: "\f4bd";
}
.fa-plug-circle-exclamation::before {
  content: "\e55d";
}
.fa-link-slash::before {
  content: "\f127";
}
.fa-chain-broken::before {
  content: "\f127";
}
.fa-chain-slash::before {
  content: "\f127";
}
.fa-unlink::before {
  content: "\f127";
}
.fa-clone::before {
  content: "\f24d";
}
.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}
.fa-arrow-up-z-a::before {
  content: "\f882";
}
.fa-sort-alpha-up-alt::before {
  content: "\f882";
}
.fa-fire-flame-curved::before {
  content: "\f7e4";
}
.fa-fire-alt::before {
  content: "\f7e4";
}
.fa-tornado::before {
  content: "\f76f";
}
.fa-file-circle-plus::before {
  content: "\e494";
}
.fa-book-quran::before {
  content: "\f687";
}
.fa-quran::before {
  content: "\f687";
}
.fa-anchor::before {
  content: "\f13d";
}
.fa-border-all::before {
  content: "\f84c";
}
.fa-face-angry::before {
  content: "\f556";
}
.fa-angry::before {
  content: "\f556";
}
.fa-cookie-bite::before {
  content: "\f564";
}
.fa-arrow-trend-down::before {
  content: "\e097";
}
.fa-rss::before {
  content: "\f09e";
}
.fa-feed::before {
  content: "\f09e";
}
.fa-draw-polygon::before {
  content: "\f5ee";
}
.fa-scale-balanced::before {
  content: "\f24e";
}
.fa-balance-scale::before {
  content: "\f24e";
}
.fa-gauge-simple-high::before {
  content: "\f62a";
}
.fa-tachometer::before {
  content: "\f62a";
}
.fa-tachometer-fast::before {
  content: "\f62a";
}
.fa-shower::before {
  content: "\f2cc";
}
.fa-desktop::before {
  content: "\f390";
}
.fa-desktop-alt::before {
  content: "\f390";
}
.fa-m::before {
  content: "M";
}
.fa-table-list::before {
  content: "\f00b";
}
.fa-th-list::before {
  content: "\f00b";
}
.fa-comment-sms::before {
  content: "\f7cd";
}
.fa-sms::before {
  content: "\f7cd";
}
.fa-book::before {
  content: "\f02d";
}
.fa-user-plus::before {
  content: "\f234";
}
.fa-check::before {
  content: "\f00c";
}
.fa-battery-three-quarters::before {
  content: "\f241";
}
.fa-battery-4::before {
  content: "\f241";
}
.fa-house-circle-check::before {
  content: "\e509";
}
.fa-angle-left::before {
  content: "\f104";
}
.fa-diagram-successor::before {
  content: "\e47a";
}
.fa-truck-arrow-right::before {
  content: "\e58b";
}
.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}
.fa-hand-fist::before {
  content: "\f6de";
}
.fa-fist-raised::before {
  content: "\f6de";
}
.fa-cloud-moon::before {
  content: "\f6c3";
}
.fa-briefcase::before {
  content: "\f0b1";
}
.fa-person-falling::before {
  content: "\e546";
}
.fa-image-portrait::before {
  content: "\f3e0";
}
.fa-portrait::before {
  content: "\f3e0";
}
.fa-user-tag::before {
  content: "\f507";
}
.fa-rug::before {
  content: "\e569";
}
.fa-earth-europe::before {
  content: "\f7a2";
}
.fa-globe-europe::before {
  content: "\f7a2";
}
.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}
.fa-luggage-cart::before {
  content: "\f59d";
}
.fa-rectangle-xmark::before {
  content: "\f410";
}
.fa-rectangle-times::before {
  content: "\f410";
}
.fa-times-rectangle::before {
  content: "\f410";
}
.fa-window-close::before {
  content: "\f410";
}
.fa-baht-sign::before {
  content: "\e0ac";
}
.fa-book-open::before {
  content: "\f518";
}
.fa-book-journal-whills::before {
  content: "\f66a";
}
.fa-journal-whills::before {
  content: "\f66a";
}
.fa-handcuffs::before {
  content: "\e4f8";
}
.fa-triangle-exclamation::before {
  content: "\f071";
}
.fa-exclamation-triangle::before {
  content: "\f071";
}
.fa-warning::before {
  content: "\f071";
}
.fa-database::before {
  content: "\f1c0";
}
.fa-share::before {
  content: "\f064";
}
.fa-mail-forward::before {
  content: "\f064";
}
.fa-bottle-droplet::before {
  content: "\e4c4";
}
.fa-mask-face::before {
  content: "\e1d7";
}
.fa-hill-rockslide::before {
  content: "\e508";
}
.fa-right-left::before {
  content: "\f362";
}
.fa-exchange-alt::before {
  content: "\f362";
}
.fa-paper-plane::before {
  content: "\f1d8";
}
.fa-road-circle-exclamation::before {
  content: "\e565";
}
.fa-dungeon::before {
  content: "\f6d9";
}
.fa-align-right::before {
  content: "\f038";
}
.fa-money-bill-1-wave::before {
  content: "\f53b";
}
.fa-money-bill-wave-alt::before {
  content: "\f53b";
}
.fa-life-ring::before {
  content: "\f1cd";
}
.fa-hands::before {
  content: "\f2a7";
}
.fa-sign-language::before {
  content: "\f2a7";
}
.fa-signing::before {
  content: "\f2a7";
}
.fa-calendar-day::before {
  content: "\f783";
}
.fa-water-ladder::before {
  content: "\f5c5";
}
.fa-ladder-water::before {
  content: "\f5c5";
}
.fa-swimming-pool::before {
  content: "\f5c5";
}
.fa-arrows-up-down::before {
  content: "\f07d";
}
.fa-arrows-v::before {
  content: "\f07d";
}
.fa-face-grimace::before {
  content: "\f57f";
}
.fa-grimace::before {
  content: "\f57f";
}
.fa-wheelchair-move::before {
  content: "\e2ce";
}
.fa-wheelchair-alt::before {
  content: "\e2ce";
}
.fa-turn-down::before {
  content: "\f3be";
}
.fa-level-down-alt::before {
  content: "\f3be";
}
.fa-person-walking-arrow-right::before {
  content: "\e552";
}
.fa-square-envelope::before {
  content: "\f199";
}
.fa-envelope-square::before {
  content: "\f199";
}
.fa-dice::before {
  content: "\f522";
}
.fa-bowling-ball::before {
  content: "\f436";
}
.fa-brain::before {
  content: "\f5dc";
}
.fa-bandage::before {
  content: "\f462";
}
.fa-band-aid::before {
  content: "\f462";
}
.fa-calendar-minus::before {
  content: "\f272";
}
.fa-circle-xmark::before {
  content: "\f057";
}
.fa-times-circle::before {
  content: "\f057";
}
.fa-xmark-circle::before {
  content: "\f057";
}
.fa-gifts::before {
  content: "\f79c";
}
.fa-hotel::before {
  content: "\f594";
}
.fa-earth-asia::before {
  content: "\f57e";
}
.fa-globe-asia::before {
  content: "\f57e";
}
.fa-id-card-clip::before {
  content: "\f47f";
}
.fa-id-card-alt::before {
  content: "\f47f";
}
.fa-magnifying-glass-plus::before {
  content: "\f00e";
}
.fa-search-plus::before {
  content: "\f00e";
}
.fa-thumbs-up::before {
  content: "\f164";
}
.fa-user-clock::before {
  content: "\f4fd";
}
.fa-hand-dots::before {
  content: "\f461";
}
.fa-allergies::before {
  content: "\f461";
}
.fa-file-invoice::before {
  content: "\f570";
}
.fa-window-minimize::before {
  content: "\f2d1";
}
.fa-mug-saucer::before {
  content: "\f0f4";
}
.fa-coffee::before {
  content: "\f0f4";
}
.fa-brush::before {
  content: "\f55d";
}
.fa-mask::before {
  content: "\f6fa";
}
.fa-magnifying-glass-minus::before {
  content: "\f010";
}
.fa-search-minus::before {
  content: "\f010";
}
.fa-ruler-vertical::before {
  content: "\f548";
}
.fa-user-large::before {
  content: "\f406";
}
.fa-user-alt::before {
  content: "\f406";
}
.fa-train-tram::before {
  content: "\e5b4";
}
.fa-user-nurse::before {
  content: "\f82f";
}
.fa-syringe::before {
  content: "\f48e";
}
.fa-cloud-sun::before {
  content: "\f6c4";
}
.fa-stopwatch-20::before {
  content: "\e06f";
}
.fa-square-full::before {
  content: "\f45c";
}
.fa-magnet::before {
  content: "\f076";
}
.fa-jar::before {
  content: "\e516";
}
.fa-note-sticky::before {
  content: "\f249";
}
.fa-sticky-note::before {
  content: "\f249";
}
.fa-bug-slash::before {
  content: "\e490";
}
.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}
.fa-bone::before {
  content: "\f5d7";
}
.fa-table-cells-row-unlock::before {
  content: "\e691";
}
.fa-user-injured::before {
  content: "\f728";
}
.fa-face-sad-tear::before {
  content: "\f5b4";
}
.fa-sad-tear::before {
  content: "\f5b4";
}
.fa-plane::before {
  content: "\f072";
}
.fa-tent-arrows-down::before {
  content: "\e581";
}
.fa-exclamation::before {
  content: "\!";
}
.fa-arrows-spin::before {
  content: "\e4bb";
}
.fa-print::before {
  content: "\f02f";
}
.fa-turkish-lira-sign::before {
  content: "\e2bb";
}
.fa-try::before {
  content: "\e2bb";
}
.fa-turkish-lira::before {
  content: "\e2bb";
}
.fa-dollar-sign::before {
  content: "\$";
}
.fa-dollar::before {
  content: "\$";
}
.fa-usd::before {
  content: "\$";
}
.fa-x::before {
  content: "X";
}
.fa-magnifying-glass-dollar::before {
  content: "\f688";
}
.fa-search-dollar::before {
  content: "\f688";
}
.fa-users-gear::before {
  content: "\f509";
}
.fa-users-cog::before {
  content: "\f509";
}
.fa-person-military-pointing::before {
  content: "\e54a";
}
.fa-building-columns::before {
  content: "\f19c";
}
.fa-bank::before {
  content: "\f19c";
}
.fa-institution::before {
  content: "\f19c";
}
.fa-museum::before {
  content: "\f19c";
}
.fa-university::before {
  content: "\f19c";
}
.fa-umbrella::before {
  content: "\f0e9";
}
.fa-trowel::before {
  content: "\e589";
}
.fa-d::before {
  content: "D";
}
.fa-stapler::before {
  content: "\e5af";
}
.fa-masks-theater::before {
  content: "\f630";
}
.fa-theater-masks::before {
  content: "\f630";
}
.fa-kip-sign::before {
  content: "\e1c4";
}
.fa-hand-point-left::before {
  content: "\f0a5";
}
.fa-handshake-simple::before {
  content: "\f4c6";
}
.fa-handshake-alt::before {
  content: "\f4c6";
}
.fa-jet-fighter::before {
  content: "\f0fb";
}
.fa-fighter-jet::before {
  content: "\f0fb";
}
.fa-square-share-nodes::before {
  content: "\f1e1";
}
.fa-share-alt-square::before {
  content: "\f1e1";
}
.fa-barcode::before {
  content: "\f02a";
}
.fa-plus-minus::before {
  content: "\e43c";
}
.fa-video::before {
  content: "\f03d";
}
.fa-video-camera::before {
  content: "\f03d";
}
.fa-graduation-cap::before {
  content: "\f19d";
}
.fa-mortar-board::before {
  content: "\f19d";
}
.fa-hand-holding-medical::before {
  content: "\e05c";
}
.fa-person-circle-check::before {
  content: "\e53e";
}
.fa-turn-up::before {
  content: "\f3bf";
}
.fa-level-up-alt::before {
  content: "\f3bf";
}
.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/webfonts/fa-solid-900-6e6cec68e4df483294a7b5fcf552c34b51d008593e70e25d53d272e34992abf8.woff2) format("woff2"), url(/assets/webfonts/fa-solid-900-23135dfa15a4db7bf1e7bddb89eee659344f8420ca35831d90c6ecdbc5af35e0.ttf) format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}
/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/webfonts/fa-brands-400-98decb05d1800929787c86e15a826b7a77cb84d271856f3d3218eac7f7cbdf73.woff2) format("woff2"), url(/assets/webfonts/fa-brands-400-21b0a7bf064c401343b5557c6862345eb3d3c9e21b23c414d7036b21fa8d6ed2.ttf) format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}
.fa-monero:before {
  content: "\f3d0";
}
.fa-hooli:before {
  content: "\f427";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-shopware:before {
  content: "\f5b5";
}
.fa-creative-commons-nc:before {
  content: "\f4e8";
}
.fa-aws:before {
  content: "\f375";
}
.fa-redhat:before {
  content: "\f7bc";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-cloudflare:before {
  content: "\e07d";
}
.fa-ups:before {
  content: "\f7e0";
}
.fa-pixiv:before {
  content: "\e640";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-dyalog:before {
  content: "\f399";
}
.fa-bity:before {
  content: "\f37a";
}
.fa-stackpath:before {
  content: "\f842";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-modx:before {
  content: "\f285";
}
.fa-guilded:before {
  content: "\e07e";
}
.fa-vnv:before {
  content: "\f40b";
}
.fa-square-js:before {
  content: "\f3b9";
}
.fa-js-square:before {
  content: "\f3b9";
}
.fa-microsoft:before {
  content: "\f3ca";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-orcid:before {
  content: "\f8d2";
}
.fa-java:before {
  content: "\f4e4";
}
.fa-invision:before {
  content: "\f7b0";
}
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}
.fa-centercode:before {
  content: "\f380";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-jxl:before {
  content: "\e67b";
}
.fa-dart-lang:before {
  content: "\e693";
}
.fa-hire-a-helper:before {
  content: "\f3b0";
}
.fa-creative-commons-by:before {
  content: "\f4e7";
}
.fa-unity:before {
  content: "\e049";
}
.fa-whmcs:before {
  content: "\f40d";
}
.fa-rocketchat:before {
  content: "\f3e8";
}
.fa-vk:before {
  content: "\f189";
}
.fa-untappd:before {
  content: "\f405";
}
.fa-mailchimp:before {
  content: "\f59e";
}
.fa-css3-alt:before {
  content: "\f38b";
}
.fa-square-reddit:before {
  content: "\f1a2";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-vimeo-v:before {
  content: "\f27d";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-square-font-awesome:before {
  content: "\e5ad";
}
.fa-deskpro:before {
  content: "\f38f";
}
.fa-brave:before {
  content: "\e63c";
}
.fa-sistrix:before {
  content: "\f3ee";
}
.fa-square-instagram:before {
  content: "\e055";
}
.fa-instagram-square:before {
  content: "\e055";
}
.fa-battle-net:before {
  content: "\f835";
}
.fa-the-red-yeti:before {
  content: "\f69d";
}
.fa-square-hacker-news:before {
  content: "\f3af";
}
.fa-hacker-news-square:before {
  content: "\f3af";
}
.fa-edge:before {
  content: "\f282";
}
.fa-threads:before {
  content: "\e618";
}
.fa-napster:before {
  content: "\f3d2";
}
.fa-square-snapchat:before {
  content: "\f2ad";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-google-plus-g:before {
  content: "\f0d5";
}
.fa-artstation:before {
  content: "\f77a";
}
.fa-markdown:before {
  content: "\f60f";
}
.fa-sourcetree:before {
  content: "\f7d3";
}
.fa-google-plus:before {
  content: "\f2b3";
}
.fa-diaspora:before {
  content: "\f791";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-phoenix-squadron:before {
  content: "\f511";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-algolia:before {
  content: "\f36c";
}
.fa-red-river:before {
  content: "\f3e3";
}
.fa-creative-commons-sa:before {
  content: "\f4ef";
}
.fa-safari:before {
  content: "\f267";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}
.fa-font-awesome-alt:before {
  content: "\f35c";
}
.fa-atlassian:before {
  content: "\f77b";
}
.fa-linkedin-in:before {
  content: "\f0e1";
}
.fa-digital-ocean:before {
  content: "\f391";
}
.fa-nimblr:before {
  content: "\f5a8";
}
.fa-chromecast:before {
  content: "\f838";
}
.fa-evernote:before {
  content: "\f839";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}
.fa-adversal:before {
  content: "\f36a";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-watchman-monitoring:before {
  content: "\e087";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-weixin:before {
  content: "\f1d7";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-git-alt:before {
  content: "\f841";
}
.fa-lyft:before {
  content: "\f3c3";
}
.fa-rev:before {
  content: "\f5b2";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-wizards-of-the-coast:before {
  content: "\f730";
}
.fa-square-viadeo:before {
  content: "\f2aa";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-meetup:before {
  content: "\f2e0";
}
.fa-centos:before {
  content: "\f789";
}
.fa-adn:before {
  content: "\f170";
}
.fa-cloudsmith:before {
  content: "\f384";
}
.fa-opensuse:before {
  content: "\e62b";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-square-dribbble:before {
  content: "\f397";
}
.fa-dribbble-square:before {
  content: "\f397";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-node:before {
  content: "\f419";
}
.fa-mix:before {
  content: "\f3cb";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-cc-apple-pay:before {
  content: "\f416";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-debian:before {
  content: "\e60b";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-instalod:before {
  content: "\e081";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-sellcast:before {
  content: "\f2da";
}
.fa-square-twitter:before {
  content: "\f081";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-r-project:before {
  content: "\f4f7";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-freebsd:before {
  content: "\f3a4";
}
.fa-vuejs:before {
  content: "\f41f";
}
.fa-accusoft:before {
  content: "\f369";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-fonticons-fi:before {
  content: "\f3a2";
}
.fa-app-store:before {
  content: "\f36f";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-itunes-note:before {
  content: "\f3b5";
}
.fa-golang:before {
  content: "\e40f";
}
.fa-kickstarter:before {
  content: "\f3bb";
}
.fa-square-kickstarter:before {
  content: "\f3bb";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-uncharted:before {
  content: "\e084";
}
.fa-firstdraft:before {
  content: "\f3a1";
}
.fa-square-youtube:before {
  content: "\f431";
}
.fa-youtube-square:before {
  content: "\f431";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-wpressr:before {
  content: "\f3e4";
}
.fa-rendact:before {
  content: "\f3e4";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-galactic-republic:before {
  content: "\f50c";
}
.fa-nfc-directional:before {
  content: "\e530";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-joget:before {
  content: "\f3b7";
}
.fa-fedora:before {
  content: "\f798";
}
.fa-stripe-s:before {
  content: "\f42a";
}
.fa-meta:before {
  content: "\e49b";
}
.fa-laravel:before {
  content: "\f3bd";
}
.fa-hotjar:before {
  content: "\f3b1";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-square-letterboxd:before {
  content: "\e62e";
}
.fa-sticker-mule:before {
  content: "\f3f7";
}
.fa-creative-commons-zero:before {
  content: "\f4f3";
}
.fa-hips:before {
  content: "\f452";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-discord:before {
  content: "\f392";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-app-store-ios:before {
  content: "\f370";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-confluence:before {
  content: "\f78d";
}
.fa-shoelace:before {
  content: "\e60c";
}
.fa-mdb:before {
  content: "\f8ca";
}
.fa-dochub:before {
  content: "\f394";
}
.fa-accessible-icon:before {
  content: "\f368";
}
.fa-ebay:before {
  content: "\f4f4";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-unsplash:before {
  content: "\e07c";
}
.fa-yarn:before {
  content: "\f7e3";
}
.fa-square-steam:before {
  content: "\f1b7";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-square-vimeo:before {
  content: "\f194";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-asymmetrik:before {
  content: "\f372";
}
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-font-awesome-flag:before {
  content: "\f2b4";
}
.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}
.fa-gratipay:before {
  content: "\f184";
}
.fa-apple:before {
  content: "\f179";
}
.fa-hive:before {
  content: "\e07f";
}
.fa-gitkraken:before {
  content: "\f3a6";
}
.fa-keybase:before {
  content: "\f4f5";
}
.fa-apple-pay:before {
  content: "\f415";
}
.fa-padlet:before {
  content: "\e4a0";
}
.fa-amazon-pay:before {
  content: "\f42c";
}
.fa-square-github:before {
  content: "\f092";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-fedex:before {
  content: "\f797";
}
.fa-phoenix-framework:before {
  content: "\f3dc";
}
.fa-shopify:before {
  content: "\e057";
}
.fa-neos:before {
  content: "\f612";
}
.fa-square-threads:before {
  content: "\e619";
}
.fa-hackerrank:before {
  content: "\f5f7";
}
.fa-researchgate:before {
  content: "\f4f8";
}
.fa-swift:before {
  content: "\f8e1";
}
.fa-angular:before {
  content: "\f420";
}
.fa-speakap:before {
  content: "\f3f3";
}
.fa-angrycreative:before {
  content: "\f36e";
}
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-empire:before {
  content: "\f1d1";
}
.fa-envira:before {
  content: "\f299";
}
.fa-google-scholar:before {
  content: "\e63b";
}
.fa-square-gitlab:before {
  content: "\e5ae";
}
.fa-gitlab-square:before {
  content: "\e5ae";
}
.fa-studiovinari:before {
  content: "\f3f8";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-goodreads:before {
  content: "\f3a8";
}
.fa-square-odnoklassniki:before {
  content: "\f264";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-sith:before {
  content: "\f512";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-page4:before {
  content: "\f3d7";
}
.fa-hashnode:before {
  content: "\e499";
}
.fa-react:before {
  content: "\f41b";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-squarespace:before {
  content: "\f5be";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-creative-commons-share:before {
  content: "\f4f2";
}
.fa-bitcoin:before {
  content: "\f379";
}
.fa-keycdn:before {
  content: "\f3ba";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-itch-io:before {
  content: "\f83a";
}
.fa-umbraco:before {
  content: "\f8e8";
}
.fa-galactic-senate:before {
  content: "\f50d";
}
.fa-ubuntu:before {
  content: "\f7df";
}
.fa-draft2digital:before {
  content: "\f396";
}
.fa-stripe:before {
  content: "\f429";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-gg:before {
  content: "\f260";
}
.fa-dhl:before {
  content: "\f790";
}
.fa-square-pinterest:before {
  content: "\f0d3";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-xing:before {
  content: "\f168";
}
.fa-blackberry:before {
  content: "\f37b";
}
.fa-creative-commons-pd:before {
  content: "\f4ec";
}
.fa-playstation:before {
  content: "\f3df";
}
.fa-quinscape:before {
  content: "\f459";
}
.fa-less:before {
  content: "\f41d";
}
.fa-blogger-b:before {
  content: "\f37d";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-signal-messenger:before {
  content: "\e663";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-typo3:before {
  content: "\f42b";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-dailymotion:before {
  content: "\e052";
}
.fa-affiliatetheme:before {
  content: "\f36b";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-bootstrap:before {
  content: "\f836";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-nfc-symbol:before {
  content: "\e531";
}
.fa-mintbit:before {
  content: "\e62f";
}
.fa-ethereum:before {
  content: "\f42e";
}
.fa-speaker-deck:before {
  content: "\f83c";
}
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}
.fa-patreon:before {
  content: "\f3d9";
}
.fa-avianex:before {
  content: "\f374";
}
.fa-ello:before {
  content: "\f5f1";
}
.fa-gofore:before {
  content: "\f3a7";
}
.fa-bimobject:before {
  content: "\f378";
}
.fa-brave-reverse:before {
  content: "\e63d";
}
.fa-facebook-f:before {
  content: "\f39e";
}
.fa-square-google-plus:before {
  content: "\f0d4";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-web-awesome:before {
  content: "\e682";
}
.fa-mandalorian:before {
  content: "\f50f";
}
.fa-first-order-alt:before {
  content: "\f50a";
}
.fa-osi:before {
  content: "\f41a";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}
.fa-periscope:before {
  content: "\f3da";
}
.fa-fulcrum:before {
  content: "\f50b";
}
.fa-cloudscale:before {
  content: "\f383";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-mizuni:before {
  content: "\f3cc";
}
.fa-schlix:before {
  content: "\f3ea";
}
.fa-square-xing:before {
  content: "\f169";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-cloudversify:before {
  content: "\f385";
}
.fa-usps:before {
  content: "\f7e1";
}
.fa-megaport:before {
  content: "\f5a3";
}
.fa-magento:before {
  content: "\f3c4";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-fly:before {
  content: "\f417";
}
.fa-aviato:before {
  content: "\f421";
}
.fa-itunes:before {
  content: "\f3b4";
}
.fa-cuttlefish:before {
  content: "\f38c";
}
.fa-blogger:before {
  content: "\f37c";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-viber:before {
  content: "\f409";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-letterboxd:before {
  content: "\e62d";
}
.fa-symfony:before {
  content: "\f83d";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-facebook-messenger:before {
  content: "\f39f";
}
.fa-audible:before {
  content: "\f373";
}
.fa-think-peaks:before {
  content: "\f731";
}
.fa-bilibili:before {
  content: "\e3d9";
}
.fa-erlang:before {
  content: "\f39d";
}
.fa-x-twitter:before {
  content: "\e61b";
}
.fa-cotton-bureau:before {
  content: "\f89e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-42-group:before {
  content: "\e080";
}
.fa-innosoft:before {
  content: "\e080";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-elementor:before {
  content: "\f430";
}
.fa-square-pied-piper:before {
  content: "\e01e";
}
.fa-pied-piper-square:before {
  content: "\e01e";
}
.fa-creative-commons-nd:before {
  content: "\f4eb";
}
.fa-palfed:before {
  content: "\f3d8";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-resolving:before {
  content: "\f3e7";
}
.fa-xbox:before {
  content: "\f412";
}
.fa-square-web-awesome-stroke:before {
  content: "\e684";
}
.fa-searchengin:before {
  content: "\f3eb";
}
.fa-tiktok:before {
  content: "\e07b";
}
.fa-square-facebook:before {
  content: "\f082";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-linkedin:before {
  content: "\f08c";
}
.fa-hubspot:before {
  content: "\f3b2";
}
.fa-deploydog:before {
  content: "\f38e";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-flutter:before {
  content: "\e694";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-mixer:before {
  content: "\e056";
}
.fa-square-lastfm:before {
  content: "\f203";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-vimeo:before {
  content: "\f40a";
}
.fa-mendeley:before {
  content: "\f7b3";
}
.fa-uniregistry:before {
  content: "\f404";
}
.fa-figma:before {
  content: "\f799";
}
.fa-creative-commons-remix:before {
  content: "\f4ee";
}
.fa-cc-amazon-pay:before {
  content: "\f42d";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-cmplid:before {
  content: "\e360";
}
.fa-upwork:before {
  content: "\e641";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-gripfire:before {
  content: "\f3ac";
}
.fa-jedi-order:before {
  content: "\f50e";
}
.fa-uikit:before {
  content: "\f403";
}
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}
.fa-phabricator:before {
  content: "\f3db";
}
.fa-ussunnah:before {
  content: "\f407";
}
.fa-earlybirds:before {
  content: "\f39a";
}
.fa-trade-federation:before {
  content: "\f513";
}
.fa-autoprefixer:before {
  content: "\f41c";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-square-upwork:before {
  content: "\e67c";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-google-play:before {
  content: "\f3ab";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-line:before {
  content: "\f3c0";
}
.fa-google-drive:before {
  content: "\f3aa";
}
.fa-servicestack:before {
  content: "\f3ec";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-deezer:before {
  content: "\e077";
}
.fa-raspberry-pi:before {
  content: "\f7bb";
}
.fa-jira:before {
  content: "\f7b1";
}
.fa-docker:before {
  content: "\f395";
}
.fa-screenpal:before {
  content: "\e570";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-gitter:before {
  content: "\f426";
}
.fa-d-and-d:before {
  content: "\f38d";
}
.fa-microblog:before {
  content: "\e01a";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-pied-piper-hat:before {
  content: "\f4e5";
}
.fa-kickstarter-k:before {
  content: "\f3bc";
}
.fa-yandex:before {
  content: "\f413";
}
.fa-readme:before {
  content: "\f4d5";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-square-web-awesome:before {
  content: "\e683";
}
.fa-sass:before {
  content: "\f41e";
}
.fa-wirsindhandwerk:before {
  content: "\e2d0";
}
.fa-wsh:before {
  content: "\e2d0";
}
.fa-buromobelexperte:before {
  content: "\f37f";
}
.fa-salesforce:before {
  content: "\f83b";
}
.fa-octopus-deploy:before {
  content: "\e082";
}
.fa-medapps:before {
  content: "\f3c6";
}
.fa-ns8:before {
  content: "\f3d5";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-apper:before {
  content: "\f371";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-waze:before {
  content: "\f83f";
}
.fa-bluesky:before {
  content: "\e671";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ab";
}
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}
.fa-rust:before {
  content: "\e07a";
}
.fa-wix:before {
  content: "\f5cf";
}
.fa-square-behance:before {
  content: "\f1b5";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-supple:before {
  content: "\f3f9";
}
.fa-webflow:before {
  content: "\e65c";
}
.fa-rebel:before {
  content: "\f1d0";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-staylinked:before {
  content: "\f3f5";
}
.fa-kaggle:before {
  content: "\f5fa";
}
.fa-space-awesome:before {
  content: "\e5ac";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-cpanel:before {
  content: "\f388";
}
.fa-goodreads-g:before {
  content: "\f3a9";
}
.fa-square-git:before {
  content: "\f1d2";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-square-tumblr:before {
  content: "\f174";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-trello:before {
  content: "\f181";
}
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-perbyte:before {
  content: "\e083";
}
.fa-grunt:before {
  content: "\f3ad";
}
.fa-weebly:before {
  content: "\f5cc";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-themeco:before {
  content: "\f5c6";
}
.fa-python:before {
  content: "\f3e2";
}
.fa-android:before {
  content: "\f17b";
}
.fa-bots:before {
  content: "\e340";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-hornbill:before {
  content: "\f592";
}
.fa-js:before {
  content: "\f3b8";
}
.fa-ideal:before {
  content: "\e013";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-dev:before {
  content: "\f6cc";
}
.fa-sketch:before {
  content: "\f7c6";
}
.fa-yandex-international:before {
  content: "\f414";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-uber:before {
  content: "\f402";
}
.fa-github:before {
  content: "\f09b";
}
.fa-php:before {
  content: "\f457";
}
.fa-alipay:before {
  content: "\f642";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-firefox-browser:before {
  content: "\e007";
}
.fa-replyd:before {
  content: "\f3e6";
}
.fa-suse:before {
  content: "\f7d6";
}
.fa-jenkins:before {
  content: "\f3b6";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-rockrms:before {
  content: "\f3e9";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-buffer:before {
  content: "\f837";
}
.fa-npm:before {
  content: "\f3d4";
}
.fa-yammer:before {
  content: "\f840";
}
.fa-btc:before {
  content: "\f15a";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-stubber:before {
  content: "\e5c7";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-telegram-plane:before {
  content: "\f2c6";
}
.fa-old-republic:before {
  content: "\f510";
}
.fa-odysee:before {
  content: "\e5c6";
}
.fa-square-whatsapp:before {
  content: "\f40c";
}
.fa-whatsapp-square:before {
  content: "\f40c";
}
.fa-node-js:before {
  content: "\f3d3";
}
.fa-edge-legacy:before {
  content: "\e078";
}
.fa-slack:before {
  content: "\f198";
}
.fa-slack-hash:before {
  content: "\f198";
}
.fa-medrt:before {
  content: "\f3c8";
}
.fa-usb:before {
  content: "\f287";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-vaadin:before {
  content: "\f408";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-square-x-twitter:before {
  content: "\e61a";
}
.fa-reacteurope:before {
  content: "\f75d";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-medium-m:before {
  content: "\f23a";
}
.fa-amilia:before {
  content: "\f36d";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-flipboard:before {
  content: "\f44d";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-critical-role:before {
  content: "\f6c9";
}
.fa-sitrox:before {
  content: "\e44a";
}
.fa-discourse:before {
  content: "\f393";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-mastodon:before {
  content: "\f4f6";
}
.fa-airbnb:before {
  content: "\f834";
}
.fa-wolf-pack-battalion:before {
  content: "\f514";
}
.fa-buy-n-large:before {
  content: "\f8a6";
}
.fa-gulp:before {
  content: "\f3ae";
}
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}
.fa-strava:before {
  content: "\f428";
}
.fa-ember:before {
  content: "\f423";
}
.fa-canadian-maple-leaf:before {
  content: "\f785";
}
.fa-teamspeak:before {
  content: "\f4f9";
}
.fa-pushed:before {
  content: "\f3e1";
}
.fa-wordpress-simple:before {
  content: "\f411";
}
.fa-nutritionix:before {
  content: "\f3d6";
}
.fa-wodu:before {
  content: "\e088";
}
.fa-google-pay:before {
  content: "\e079";
}
.fa-intercom:before {
  content: "\f7af";
}
.fa-zhihu:before {
  content: "\f63f";
}
.fa-korvue:before {
  content: "\f42f";
}
.fa-pix:before {
  content: "\e43a";
}
.fa-steam-symbol:before {
  content: "\f3f6";
}
/* app/assets/stylesheets/flatpickr_custom.scss */
/* General Flatpickr styles */
.flatpickr-calendar {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* MonthSelectPlugin specific styles */
.flatpickr-monthSelect-months {
  display: flex;
  flex-wrap: wrap;
  max-height: none;
  overflow: visible;
}
.flatpickr-monthSelect-month {
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  flex: 1 0 30%;
  box-sizing: border-box;
}
.flatpickr-monthSelect-month:hover {
  background-color: #f0f0f0;
}
.flatpickr-monthSelect-month.selected {
  background-color: #007bff;
  color: #fff;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.13 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
:root{
  ---inherit: inherit;
  ---current: currentColor;
  ---transparent: transparent;
  ---black: #000;
  ---white: #fff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --neutral-950: #030712;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;
  --yellow-950: #422006;
  --lime-50: #f7fee7;
  --lime-100: #ecfccb;
  --lime-200: #d9f99d;
  --lime-300: #bef264;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --lime-800: #3f6212;
  --lime-900: #365314;
  --lime-950: #1a2e05;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --cyan-950: #083344;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --sky-950: #082f49;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;
  --fuchsia-50: #fdf4ff;
  --fuchsia-100: #fae8ff;
  --fuchsia-200: #f5d0fe;
  --fuchsia-300: #f0abfc;
  --fuchsia-400: #e879f9;
  --fuchsia-500: #d946ef;
  --fuchsia-600: #c026d3;
  --fuchsia-700: #a21caf;
  --fuchsia-800: #86198f;
  --fuchsia-900: #701a75;
  --fuchsia-950: #4a044e;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;
  --pink-950: #500724;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;
  --rose-950: #4c0519;
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;
  --primary-300: #a5b4fc;
  --primary-400: #818cf8;
  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;
  --primary-800: #3730a3;
  --primary-900: #312e81;
  --primary-950: #1e1b4b;
  --danger-50: #fef2f2;
  --danger-100: #fee2e2;
  --danger-200: #fecaca;
  --danger-300: #fca5a5;
  --danger-400: #f87171;
  --danger-500: #ef4444;
  --danger-600: #dc2626;
  --danger-700: #b91c1c;
  --danger-800: #991b1b;
  --danger-900: #7f1d1d;
  --danger-950: #450a0a;
  ---success: #28a745;
  --twin-sun-gray-50: #f9fafb;
  --twin-sun-gray-100: #f3f4f6;
  --twin-sun-gray-200: #e5e7eb;
  --twin-sun-gray-300: #d1d5db;
  --twin-sun-gray-400: #9ca3af;
  --twin-sun-gray-500: #6b7280;
  --twin-sun-gray-600: #4b5563;
  --twin-sun-gray-700: #2e3a4d;
  --twin-sun-gray-800: #202c3d;
  --twin-sun-gray-900: #141d30;
  --twin-sun-navy-50: #fafdff;
  --twin-sun-navy-100: #e7eaec;
  --twin-sun-navy-200: #b8c0c7;
  --twin-sun-navy-300: #71828f;
  --twin-sun-navy-400: #425869;
  --twin-sun-navy-500: #132e44;
  --twin-sun-navy-600: #11293d;
  --twin-sun-navy-700: #0d2030;
  --twin-sun-navy-800: #0a1722;
  --twin-sun-navy-900: #020507;
  --twin-sun-orange-50: #fff7ed;
  --twin-sun-orange-100: #ffedd5;
  --twin-sun-orange-200: #fed7aa;
  --twin-sun-orange-300: #fdba74;
  --twin-sun-orange-400: #fb923c;
  --twin-sun-orange-500: #ff660d;
  --twin-sun-orange-600: #ea580c;
  --twin-sun-orange-700: #c2410c;
  --twin-sun-orange-800: #9a3412;
  --twin-sun-orange-900: #7c2d12;
  ---add-to-cart-blue: #41b0ea;
  ---advantage-blue: #e1eff6;
  ---cream: #eeeee7;
  ---not-found-blue: #1b437b;
  ---pill-blue: #029adf;
  ---military-blue: #424294;
  ---passport-green: #006258;
  --r1-gray-50: ececec;
  --r1-gray-100: #efeee7;
  --r1-gray-200: #495057;
  --r1-gray-250: #e8e3e3;
  --r1-gray-300: #616a71;
  --r1-gray-400: #ced4da;
  --r1-gray-500: #b4b4b4;
  --r1-gray-600: #212529;
  --r1-gray-700: #3e3e3e;
  --r1-gray-750: #343a40;
  --r1-gray-800: #2a2a2a;
  --r1-gray-900: #3a3a3a;
  --r1-red-50: #d47;
  --r1-red-100: #d50741;
  --r1-red-200: #cb5b5d;
  --r1-red-300: #dc3545;
  --r1-blue-100: #96d8fb;
  --r1-blue-200: #41b0ea;
  --r1-blue-300: #0056b3;
  --r1-blue-400: #3a9df3;
  --r1-blue-500: #0069d9;
  --r1-green-300: #99c76c;
}
.container{
  width: 100%;
}
@media (min-width: 576px){
  .container{
    max-width: 576px;
  }
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
.form-input::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit{
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-select:where([size]:not([size="1"])){
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}
.form-checkbox,.form-radio{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
.form-checkbox{
  border-radius: 0px;
}
.form-checkbox:focus,.form-radio:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.form-checkbox:checked,.form-radio:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.form-checkbox:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  .form-checkbox:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
.form-checkbox:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  .form-checkbox:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.\!left-auto{
  left: auto !important;
}
.\!right-0{
  right: 0px !important;
}
.left-1\/2{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-2{
  right: 8px;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 8px;
}
.z-10{
  z-index: 10;
}
.m-6{
  margin: 24px;
}
.m-8{
  margin: 32px;
}
.\!mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.-mx-4{
  margin-left: -16px;
  margin-right: -16px;
}
.mx-10{
  margin-left: 40px;
  margin-right: 40px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-10{
  margin-top: 40px;
  margin-bottom: 40px;
}
.my-12{
  margin-top: 48px;
  margin-bottom: 48px;
}
.my-16{
  margin-top: 64px;
  margin-bottom: 64px;
}
.my-2{
  margin-top: 8px;
  margin-bottom: 8px;
}
.my-4{
  margin-top: 16px;
  margin-bottom: 16px;
}
.my-8{
  margin-top: 32px;
  margin-bottom: 32px;
}
.mb-1{
  margin-bottom: 4px;
}
.mb-10{
  margin-bottom: 40px;
}
.mb-16{
  margin-bottom: 64px;
}
.mb-2{
  margin-bottom: 8px;
}
.mb-4{
  margin-bottom: 16px;
}
.mb-5{
  margin-bottom: 20px;
}
.mb-6{
  margin-bottom: 24px;
}
.mb-8{
  margin-bottom: 32px;
}
.mb-r1-spacer{
  margin-bottom: 60px;
}
.ml-2{
  margin-left: 8px;
}
.mr-1{
  margin-right: 4px;
}
.mr-2{
  margin-right: 8px;
}
.mr-4{
  margin-right: 16px;
}
.mt-1{
  margin-top: 4px;
}
.mt-10{
  margin-top: 40px;
}
.mt-2{
  margin-top: 8px;
}
.mt-24{
  margin-top: 6rem;
}
.mt-3{
  margin-top: 12px;
}
.mt-4{
  margin-top: 16px;
}
.mt-5{
  margin-top: 20px;
}
.mt-6{
  margin-top: 24px;
}
.mt-8{
  margin-top: 32px;
}
.mt-r1-spacer{
  margin-top: 60px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.h-14{
  height: 56px;
}
.h-4{
  height: 16px;
}
.h-5{
  height: 20px;
}
.h-\[123px\]{
  height: 123px;
}
.h-\[20rem\]{
  height: 20rem;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.max-h-full{
  max-height: 100%;
}
.min-h-32{
  min-height: 8rem;
}
.w-1\/2{
  width: 50%;
}
.w-14{
  width: 56px;
}
.w-2\/3{
  width: 66.666667%;
}
.w-4{
  width: 16px;
}
.w-5{
  width: 20px;
}
.w-auto{
  width: auto;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-\[200px\]{
  min-width: 200px;
}
.max-w-\[1110px\]{
  max-width: 1110px;
}
.max-w-full{
  max-width: 100%;
}
.flex-1{
  flex: 1 1;
}
.flex-none{
  flex: none;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-3\/4{
  --tw-translate-y: -75%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-grab{
  cursor: grab;
}
.cursor-move{
  cursor: move;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.list-inside{
  list-style-position: inside;
}
.list-outside{
  list-style-position: outside;
}
.list-decimal{
  list-style-type: decimal;
}
.list-disc{
  list-style-type: disc;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-around{
  justify-content: space-around;
}
.gap-2{
  gap: 8px;
}
.gap-3{
  gap: 12px;
}
.gap-4{
  gap: 16px;
}
.gap-6{
  gap: 24px;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16px * var(--tw-space-x-reverse));
  margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[13\.55rem\]{
  border-radius: 13.55rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.border{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.bg-\[\#e4e3e0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}
.bg-cream{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 231 / var(--tw-bg-opacity));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-pill-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(2 154 223 / var(--tw-bg-opacity));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-\[url\(\'style-living-background\.jpeg\'\)\]{
  background-image: url(/assets/style-living-background-c26c136d45945403fea1f8952a44a40c2b58a7fcc526b414c5e270ea822ca2b0.jpeg);
}
.fill-red-500{
  fill: #ef4444;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.\!p-1{
  padding: 4px !important;
}
.p-2{
  padding: 8px;
}
.p-3{
  padding: 12px;
}
.p-4{
  padding: 16px;
}
.p-8{
  padding: 32px;
}
.px-16{
  padding-left: 64px;
  padding-right: 64px;
}
.px-2{
  padding-left: 8px;
  padding-right: 8px;
}
.px-4{
  padding-left: 16px;
  padding-right: 16px;
}
.py-1{
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-2{
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-20{
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-4{
  padding-top: 16px;
  padding-bottom: 16px;
}
.pb-10{
  padding-bottom: 40px;
}
.pb-2{
  padding-bottom: 8px;
}
.pb-4{
  padding-bottom: 16px;
}
.pb-5{
  padding-bottom: 20px;
}
.pb-6{
  padding-bottom: 24px;
}
.pb-8{
  padding-bottom: 32px;
}
.pb-r1-spacer{
  padding-bottom: 60px;
}
.pl-4{
  padding-left: 16px;
}
.pl-5{
  padding-left: 20px;
}
.pr-3{
  padding-right: 12px;
}
.pr-8{
  padding-right: 32px;
}
.pt-10{
  padding-top: 40px;
}
.pt-4{
  padding-top: 16px;
}
.pt-5{
  padding-top: 20px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[0\.70rem\]{
  font-size: 0.70rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-medium{
  font-weight: 500 !important;
}
.\!font-normal{
  font-weight: 400 !important;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}
.text-r1-gray-200{
  --tw-text-opacity: 1;
  color: rgb(73 80 87 / var(--tw-text-opacity));
}
.text-r1-red-50{
  --tw-text-opacity: 1;
  color: rgb(221 68 119 / var(--tw-text-opacity));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity));
}
.underline{
  text-decoration-line: underline;
}
.line-through{
  text-decoration-line: line-through;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur{
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}
.common-max-width-content-padded{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .common-max-width-content-padded{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .common-max-width-content-padded{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mobile-only{
  display: inline-block;
}
@media (min-width: 768px) {
  .mobile-only{
    display: none;
  }
}
.desktop-only{
  display: none;
}
@media (min-width: 768px) {
  .desktop-only{
    display: inline-block;
  }
}
body.r1-shop .option-button{
  display: block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
body.r1-shop .option-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
body.r1-shop .option-button.selected{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
/* Design inspiration from Deepnote: https://www.saasui.design/application/deepnote */
body.deep-portal{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  display: flex;
}
.filters__dropdown-apply body.deep-portal{
  gap: 8px;
}
body.deep-portal{
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 100vh;
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body.deep-portal .pretender-banner{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity));
}
body.deep-portal header{
  position: relative;
}
body.deep-portal header .site-context{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context{
  gap: 8px;
}
body.deep-portal header .site-context{
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context{
    flex-wrap: nowrap;
  }
}
body.deep-portal header .site-context .heading{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context .heading{
  gap: 8px;
}
body.deep-portal header .site-context .heading{
  flex-grow: 1;
  flex-direction: row;
  font-weight: 500;
  align-items: center;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-left: 16px;
}
body.deep-portal header .site-context .heading.authenticated{
  padding-left: 0px;
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .heading.authenticated{
    padding-left: 16px;
  }
  body.deep-portal header .site-context .heading{
    flex-grow: 0;
    padding-left: 16px;
    border-inline-end-width: 1px;
    width: 255px;
  }
}
body.deep-portal header .site-context .heading button{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context .heading button{
  gap: 8px;
}
body.deep-portal header .site-context .heading button{
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .heading button{
    display: none;
  }
}
body.deep-portal header .site-context .heading button .fa-fw{
  border-radius: 0.25rem;
  height: 32px;
  line-height: 32px;
  width: 32px;
}
body.deep-portal header .site-context .heading button:focus .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
body.deep-portal header .site-context .heading button:hover .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
body.deep-portal header .site-context .heading a.home-link{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context .heading a.home-link{
  gap: 8px;
}
body.deep-portal header .site-context .heading a.home-link{
  flex-direction: row;
  align-items: center;
}
body.deep-portal header .site-context .heading a.home-link .brand{
  padding-left: 8px;
  text-transform: uppercase;
}
body.deep-portal header .site-context .breadcrumbs{
  display: none;
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .breadcrumbs{
    display: flex;
  }
.filters__dropdown-apply body.deep-portal header .site-context .breadcrumbs{
    gap: 8px;
  }
  body.deep-portal header .site-context .breadcrumbs{
    flex-grow: 1;
    flex-direction: row;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
body.deep-portal header .site-context .breadcrumbs li{
  font-weight: 500;
}
body.deep-portal header .site-context .breadcrumbs li:not(:last-child){
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
body.deep-portal header .site-context .breadcrumbs li + li:before{
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
  content: "/";
}
body.deep-portal header .site-context .actions{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context .actions{
  gap: 8px;
}
body.deep-portal header .site-context .actions{
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 16px;
  order: 2;
  height: calc(1.25rem + 32px);
}
body.deep-portal header .site-context .actions button{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context .actions button{
  gap: 8px;
}
body.deep-portal header .site-context .actions button{
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
body.deep-portal header .site-context .actions button .fa-fw{
  border-radius: 0.25rem;
  height: 32px;
  line-height: 32px;
  width: 32px;
}
body.deep-portal header .site-context .actions button:focus .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
body.deep-portal header .site-context .actions button:hover .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
body.deep-portal header .site-context nav#page_context_more_actions_menu{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  position: absolute;
  display: none;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  white-space: nowrap;
  right: 0;
  top: calc(100% - 1px);
  z-index: 1;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu.expanded{
  display: flex;
}
.filters__dropdown-apply body.deep-portal header .site-context nav#page_context_more_actions_menu.expanded{
  gap: 8px;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a{
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper{
  gap: 8px;
}
body.deep-portal .main-wrapper{
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 0;
}
body.deep-portal .main-wrapper main{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper main{
  gap: 8px;
}
body.deep-portal .main-wrapper main{
  flex-grow: 1;
  flex-direction: row;
  position: relative;
  min-height: 0;
}
body.deep-portal .main-wrapper main aside#main_menu{
  position: absolute;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  z-index: 10;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background-color: rgba(0, 0, 0, 0.75);
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu{
    position: static;
    background-color: transparent;
    background-color: initial;
    height: auto;
    height: initial;
    width: 255px;
  }
}
body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) {
  background-color: rgba(0, 0, 0, 0);
  transform: translateX(-100%);
  transition: background-color ease-in-out 0.1s, transform 0.5s ease-in-out 0.5s;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu:not(.expanded){
    display: block;
    transform: translateX(0);
  }
}
body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) nav {
  transform: translateX(-100%);
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) nav {
    transform: translateX(0);
  }
}
body.deep-portal .main-wrapper main aside#main_menu nav{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-right-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  height: 100%;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  width: 255px;
}
body.deep-portal .main-wrapper main aside#main_menu nav h2{
  font-weight: 500;
  padding-bottom: 8px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a{
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a.active, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:active{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a:focus, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper main article{
  display: block;
  flex-grow: 1;
  max-height: 100%;
  overflow-y: auto;
  padding: 16px;
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper main article a{
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity));
  text-decoration-line: underline;
}
body.deep-portal .main-wrapper main article a:hover{
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity));
  text-decoration-line: none;
}
body.deep-portal .main-wrapper main article h1{
  font-weight: 700;
  padding-bottom: 16px;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
  text-transform: none;
}
body.deep-portal .main-wrapper main aside#main_context{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  flex-shrink: 0;
  display: none;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 255px;
}
body.deep-portal .main-wrapper main aside#main_context:empty{
  display: none;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_context{
    display: block;
  }
}
body.deep-portal .main-wrapper main aside#main_context a{
  text-decoration-line: underline;
}
body.deep-portal .main-wrapper main aside#main_context a:focus-visible, body.deep-portal .main-wrapper main aside#main_context a:hover{
  text-decoration-line: none;
}
body.deep-portal .main-wrapper main aside#main_context h2{
  font-weight: 500;
  padding-bottom: 8px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
body.deep-portal .main-wrapper main aside#main_context h3{
  font-weight: 500;
  padding-bottom: 8px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
body.deep-portal .main-wrapper main aside#main_context p{
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
body.deep-portal .main-wrapper > main article form.button_to{
  display: inline-block;
}
body.deep-portal .main-wrapper > main article .btn, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  text-decoration-line: none;
}
body.deep-portal .main-wrapper > main article .btn.loading, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .loading.delete-label {
  color: transparent !important;
  opacity: 0.5;
}
body.deep-portal .main-wrapper > main article .btn.loading::before, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .loading.delete-label::before{
  opacity: 1;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose body.disclosure-panel.deep-portal .main-wrapper > main article .btn.loading::before,.mattress-selection .how-to-choose  body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .loading.delete-label::before {
    opacity: 1;
  }
}
body.deep-portal .main-wrapper > main article .btn::before, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  opacity: 0;
  pointer-events: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #fff;
  border-top-color: #fff;
  animation: spin 0.6s infinite linear;
}
body.deep-portal .main-wrapper > main article .btn:active, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:active, body.deep-portal .main-wrapper > main article .btn:focus, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:focus, body.deep-portal .main-wrapper > main article .btn:focus-visible, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:focus-visible, body.deep-portal .main-wrapper > main article .btn:hover, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:hover{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: transparent;
  outline-color: #0284c7;
}
body.deep-portal .main-wrapper > main article .btn.disabled, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .disabled.delete-label, body.deep-portal .main-wrapper > main article .btn:disabled, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:disabled{
  opacity: 0.5;
  cursor: not-allowed;
  outline-width: 0px;
}
body.deep-portal .main-wrapper > main article .btn.primary, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .primary.delete-label{
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
  border-color: transparent;
}
body.deep-portal .main-wrapper > main article .btn.primary:active, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .primary.delete-label:active, body.deep-portal .main-wrapper > main article .btn.primary:focus, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .primary.delete-label:focus, body.deep-portal .main-wrapper > main article .btn.primary:hover, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .primary.delete-label:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper > main article.devise{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article.devise{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article.devise{
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article.devise{
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
  }
}
body.deep-portal .pagy-advanced{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .pagy-advanced{
  gap: 8px;
}
body.deep-portal .pagy-advanced{
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body.deep-portal .pagy-advanced > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
@media (min-width: 768px) {
  body.deep-portal .pagy-advanced > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
}
body.deep-portal .pagy-advanced input{
  border-radius: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  min-width: 3rem !important;
}
body.deep-portal .pagy-advanced .pagy-combo-nav{
  flex-grow: 1;
  text-align: center;
}
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:focus, body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
body.deep-portal .pagy-advanced .pagy-info{
  text-align: right;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .error_notification{
  display: block;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
  margin-bottom: 16px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs{
  flex-direction: column;
  gap: 24px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
    display: grid;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .two-col-inputs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
    display: grid;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .three-col-inputs{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .error{
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-inputs .error:before{
  display: inline-block;
  margin-right: 4px;
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
  display: grid;
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .image-attachment-field{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .image-attachment-field{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .image-attachment-field{
  flex-direction: column;
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .image-attachment-fields .image-attachment-field .image-preview{
  width: 100%;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields{
  margin-bottom: 16px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding-bottom: 16px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields:first-of-type{
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  padding-top: 16px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container{
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0px;
  grid-area: delete-container;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label{
  text-transform: uppercase;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
  font-size: 0.75rem;
  line-height: 1rem;
  cursor: pointer;
  margin-left: auto;
}
@media (min-width: 1280px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label{
    padding: 0px;
    height: 2.375rem;
    width: 2.375rem;
    display: flex;
  }
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label{
    gap: 8px;
  }
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label{
    align-items: center;
    justify-content: center;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:hover{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
  text-decoration-line: underline;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label i{
  display: none;
}
@media (min-width: 1280px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label i{
    display: inline-block;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label span{
  display: inline-block;
}
@media (min-width: 1280px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label span{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .label label,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field:not(.boolean) > label,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) legend{
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(73 80 87 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .label label abbr,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field:not(.boolean) > label abbr,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) legend abbr{
  margin-right: 4px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field{
  flex-direction: column;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  border-radius: 0.375rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input::-moz-placeholder, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select::-moz-placeholder, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea::-moz-placeholder, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area::-moz-placeholder, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input::placeholder,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select::placeholder,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea::placeholder,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area::placeholder,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control::placeholder{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:disabled, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control[readonly]:not(.alt-input):not([data-controller=flatpickr]){
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  outline-width: 0px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:disabled:focus, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input[readonly]:not(.alt-input):not([data-controller=flatpickr]):focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:disabled:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select[readonly]:not(.alt-input):not([data-controller=flatpickr]):focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:disabled:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea[readonly]:not(.alt-input):not([data-controller=flatpickr]):focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:disabled:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area[readonly]:not(.alt-input):not([data-controller=flatpickr]):focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:disabled:focus,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control[readonly]:not(.alt-input):not([data-controller=flatpickr]):focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:disabled, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area[readonly]:not(.alt-input):not([data-controller=flatpickr]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:disabled,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control[readonly]:not(.alt-input):not([data-controller=flatpickr]){
  opacity: 1;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:disabled,.mattress-selection .how-to-choose  body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input[readonly]:not(.alt-input):not([data-controller=flatpickr]),.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:disabled,.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select[readonly]:not(.alt-input):not([data-controller=flatpickr]),.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:disabled,.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea[readonly]:not(.alt-input):not([data-controller=flatpickr]),.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:disabled,.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area[readonly]:not(.alt-input):not([data-controller=flatpickr]),.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:disabled,.mattress-selection .how-to-choose 
body.disclosure-panel.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control[readonly]:not(.alt-input):not([data-controller=flatpickr]) {
    opacity: 1;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:not(.boolean),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:not(.boolean),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:not(.boolean),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:not(.boolean),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:not(.boolean){
  display: block;
  width: 100%;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input.boolean,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select.boolean,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea.boolean,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area.boolean,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control.boolean{
  display: inline-block;
  margin-right: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input:focus-visible:not([readonly]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select:focus-visible:not([readonly]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea:focus-visible:not([readonly]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area:focus-visible:not([readonly]),
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control:focus-visible:not([readonly]){
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > input.is-invalid,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > select.is-invalid,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input > textarea.is-invalid,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .rich_text_area.is-invalid,
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control.is-invalid{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control{
  min-height: 2.375rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-control input{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .input .ts-dropdown input{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .hint{
  font-style: italic;
  margin-left: 12px;
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field .hint{
    margin-left: 0px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
  display: grid;
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input{
  align-items: center;
  grid-template-columns: auto 1fr;
  grid-template-areas: "input label" ". hint" ". error";
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input input[type=checkbox]{
  border-radius: 0.125rem;
  grid-area: input;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input span.hint {
  grid-area: hint;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input span.error {
  grid-area: error;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .field.boolean label.input span.label-text {
  grid-area: label;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-actions{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-actions{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-actions{
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  margin-top: 32px;
}
body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .form-actions--top{
  margin-top: 0px;
  margin-bottom: 16px;
}
body.deep-portal .main-wrapper > main article {
  /* makes tables horizontally scrollable independent from the page scroll. */
  /* if a table is adjacent to a `.table-controls`, remove top rounded corners from the table. */
  /* if a table is adjacent to a `.table-pagination`, remove bottom rounded corners from the table. */
}
body.deep-portal .main-wrapper > main article .table-controls{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  border-width: 1px;
  border-bottom-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls{
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 4px 4px 0 0;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters{
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row{
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row{
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .search-wrapper > form{
  width: 100%;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .search-wrapper > form{
    width: 16rem;
  }
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons{
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons form{
  width: auto;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons a.btn, body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .resource-actions-row .action-buttons .simple_form:not(.button_to) .insertable-fields .delete-container a.delete-label, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .table-controls .actions-and-filters .resource-actions-row .action-buttons a.delete-label{
  margin-left: 0px;
  margin-right: 0px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .filters{
  width: 100%;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .filters form{
  width: 100%;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .filters form > div{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .filters form > div{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions-and-filters .filters form > div{
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-controls .actions{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions{
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
}
body.deep-portal .main-wrapper > main article .table-controls .actions form{
  width: 16rem;
  margin-right: auto;
}
body.deep-portal .main-wrapper > main article .table-controls .actions .btn, body.deep-portal .main-wrapper > main article .table-controls .actions .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container .table-controls .actions .delete-label{
  margin-left: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article .table-controls .filters{
  width: 100%;
}
body.deep-portal .main-wrapper > main article table{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 1px;
  border-collapse: collapse;
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  max-width: 100%;
  min-width: 100%;
  overflow-x: scroll;
  font-size: 0.75rem;
  line-height: 1rem;
  width: 100%;
  border-radius: 4px;
}
body.deep-portal .main-wrapper > main article table td,
body.deep-portal .main-wrapper > main article table th{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  padding: 8px;
  text-align: left;
}
body.deep-portal .main-wrapper > main article table td:not(:first-child),
body.deep-portal .main-wrapper > main article table th:not(:first-child){
  border-left-width: 1px;
}
body.deep-portal .main-wrapper > main article table td.numeric,
body.deep-portal .main-wrapper > main article table th.numeric{
  text-align: right;
}
body.deep-portal .main-wrapper > main article table td.actions,
body.deep-portal .main-wrapper > main article table th.actions{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  width: 0px;
  position: sticky;
  right: 0px;
  z-index: 2;
}
body.deep-portal .main-wrapper > main article table td.actions::after,
body.deep-portal .main-wrapper > main article table th.actions::after{
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 4px;
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.05), transparent);
}
body.deep-portal .main-wrapper > main article table th{
  font-weight: 500;
  white-space: nowrap;
}
body.deep-portal .main-wrapper > main article table thead tr{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-size: 0.75rem;
  line-height: 1rem;
}
body.deep-portal .main-wrapper > main article table thead tr:first-child th:first-child {
  border-top-left-radius: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr:first-child th:last-child {
  border-top-right-radius: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr:last-child th{
  border-bottom-width: 2px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.deep-portal .main-wrapper > main article table thead tr.title-row{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th{
  padding-top: 4px;
  padding-bottom: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper{
  flex-direction: row;
  align-items: center;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper .title{
  flex-grow: 1;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper .actions{
  text-align: right;
}
body.deep-portal .main-wrapper > main article table thead tr th.sortable button.sort-button{
  background-color: transparent;
  border-width: 0px;
  display: inline;
  margin-left: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0px;
  padding-bottom: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.deep-portal .main-wrapper > main article table tbody{
  font-size: 0.75rem;
  line-height: 1rem;
}
body.deep-portal .main-wrapper > main article table tbody tr[data-controller=click-navigation]{
  cursor: pointer;
}
body.deep-portal .main-wrapper > main article table tbody tr:nth-child(odd) td{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
body.deep-portal .main-wrapper > main article table tbody tr:nth-child(even) td{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}
body.deep-portal .main-wrapper > main article table tbody tr:hover td{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
body.deep-portal .main-wrapper > main article table tbody tr:first-child td{
  border-top-width: 0px;
}
body.deep-portal .main-wrapper > main article table tbody tr:last-child td{
  border-bottom-width: 0px;
}
body.deep-portal .main-wrapper > main article table tbody tr td.actions{
  white-space: nowrap;
  text-align: center;
  z-index: 1;
}
body.deep-portal .main-wrapper > main article table tbody tr td.actions .btn, body.deep-portal .main-wrapper > main article table tbody tr td.actions .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label, body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container table tbody tr td.actions .delete-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  width: 2.375rem;
  padding: 4px;
}
body.deep-portal .main-wrapper > main article table tbody tr td.actions .btn:not(:first-child), body.deep-portal .main-wrapper > main article table tbody tr td.actions .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label:not(:first-child), body.deep-portal .main-wrapper > main article .simple_form:not(.button_to) .insertable-fields .delete-container table tbody tr td.actions .delete-label:not(:first-child){
  margin-left: 4px;
}
body.deep-portal .main-wrapper > main article table tfoot{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article table tfoot tr:first-child td{
  border-top-width: 1px;
}
body.deep-portal .main-wrapper > main article table tfoot tr:last-child td{
  border-bottom-width: 0px;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page{
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page.current{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  cursor: not-allowed;
  font-weight: 500;
  outline-width: 0px;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page a,
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page span{
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
body.deep-portal .main-wrapper > main article .table-scroll-x{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  overflow-x: scroll;
  border-collapse: collapse;
  border-radius: 4px;
  /* remove border from the table so we don't double the outer borders within a horizontally scrollable section. */
}
body.deep-portal .main-wrapper > main article .table-scroll-x table{
  border-width: 0px;
}
body.deep-portal .main-wrapper > main article .table-controls + .table-scroll-x,
body.deep-portal .main-wrapper > main article .table-controls + table{
  border-radius: 0px;
}
body.deep-portal .main-wrapper > main article .table-pagination{
  border-width: 1px;
  border-top-width: 0px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-pagination{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-pagination{
  flex-direction: row;
  align-items: center;
  padding: 8px;
}
body.deep-portal .main-wrapper > main article .table-pagination > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
body.deep-portal .main-wrapper > main article .table-pagination{
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0 0 4px 4px;
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
  display: flex;
}
.filters__dropdown-apply body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
  gap: 8px;
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
    display: grid;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced nav.pagy_nav{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced nav.pagy_nav .page{
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px;
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced nav.pagy_nav .page.current{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
  cursor: not-allowed;
  font-weight: 500;
  outline-width: 0px;
}
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced nav.pagy_nav .page a,
body.deep-portal .main-wrapper > main article .table-pagination .pagy-advanced nav.pagy_nav .page span{
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
body.deep-portal .main-wrapper > main article .table-scroll-x:has(+ .table-pagination),
body.deep-portal .main-wrapper > main article table:has(+ .table-pagination){
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.advantage-and-join{
  --tw-bg-opacity: 1;
  background-color: rgb(225 239 246 / var(--tw-bg-opacity));
  display: flex;
}
.filters__dropdown-apply .advantage-and-join{
  gap: 8px;
}
.advantage-and-join{
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
}
.advantage-and-join .container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .advantage-and-join .container{
  gap: 8px;
}
.advantage-and-join .container{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .advantage-and-join .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .advantage-and-join .container{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .advantage-and-join .container{
    flex-direction: row;
  }
}
.advantage-and-join .container .section{
  display: flex;
}
.filters__dropdown-apply .advantage-and-join .container .section{
  gap: 8px;
}
.advantage-and-join .container .section{
  flex-direction: column;
  flex: 1 1;
}
.r1-shop {
  --body-padding-right: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  font-family: "Roboto", "sans-serif";
  padding-right: var(--body-padding-right);
}
.r1-shop main{
  display: flex;
}
.filters__dropdown-apply .r1-shop main{
  gap: 8px;
}
.r1-shop main{
  flex-direction: column;
}
.r1-shop h2,
.r1-shop h3,
.r1-shop h4,
.r1-shop h5,
.r1-shop h6{
  margin-bottom: 8px;
  line-height: 1.2;
}
.r1-shop a{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  text-decoration-line: none;
}
.r1-shop strong{
  font-weight: 700;
}
.r1-shop p,
.r1-shop li{
  font-weight: 300;
}
.r1-shop .breadcrumbs{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .r1-shop .breadcrumbs{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .r1-shop .breadcrumbs{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.r1-shop .breadcrumb-item{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
.r1-shop h1{
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
}
.r1-shop .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  margin: 1rem !important;
}
.r1-shop .swiper-pagination-bullet-active{
  --tw-bg-opacity: 1;
  background-color: rgb(62 62 62 / var(--tw-bg-opacity));
}
.r1-shop .badge{
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
  border-radius: 9999px;
}
.r1-shop .badge:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity));
}
.r1-shop .badge.badge-lg{
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.r1-shop .back-to-top-button{
  width: 100%;
  display: flex;
}
.filters__dropdown-apply .r1-shop .back-to-top-button{
  gap: 8px;
}
.r1-shop .back-to-top-button{
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: center;
  --tw-bg-opacity: 1;
  background-color: rgb(27 67 123 / var(--tw-bg-opacity));
  padding: 24px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 500;
}
.r1-shop .back-to-top-button:hover::before {
  transform: rotate(-135deg) scale(1.5);
}
.r1-shop .back-to-top-button::before{
  display: inline-block;
  border-radius: 1px;
  padding: 4px;
  width: -moz-min-content;
  width: min-content;
  --tw-rotate: -135deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition: all 150ms ease-in-out;
  border-width: 0 3px 3px 0;
  content: "";
}
.r1-shop .number-circle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 5px;
  background: #fff;
  border: 2px solid #666;
  color: #666;
  text-align: center;
  font: 18px sans-serif;
  margin: auto;
}
.r1-shop .grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}
body.r1-shop .btn-large{
  padding: 19px;
}
body.r1-shop .btn-primary{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-primary:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-primary{
    padding: 19px;
  }
}
body.r1-shop .btn-primary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
body.r1-shop .btn-primary-lrg{
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding: 19px;
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-primary-lrg:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-primary-lrg{
    padding: 19px;
  }
}
body.r1-shop .btn-primary-lrg:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
body.r1-shop .btn-secondary{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
}
body.r1-shop .btn-secondary:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-secondary{
    padding: 19px;
  }
}
body.r1-shop .btn-secondary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity));
}
body.r1-shop .btn-tertiary{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(50 205 50 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(50 205 50 / var(--tw-border-opacity));
}
body.r1-shop .btn-tertiary:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-tertiary{
    padding: 19px;
  }
}
body.r1-shop .btn-tertiary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(50 205 50 / var(--tw-bg-opacity));
}
body.r1-shop .btn-gray{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
}
body.r1-shop .btn-gray:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-gray{
    padding: 19px;
  }
}
body.r1-shop .btn-gray:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
}
body.r1-shop .btn-outline-dark{
  display: inline-block;
  padding: 22px;
  border-width: 1px;
  text-align: center;
  background-color: transparent;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(52 58 64 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-outline-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
}
body.r1-shop .btn-outline-dark-filled{
  display: inline-block;
  padding: 22px;
  border-width: 1px;
  text-align: center;
  background-color: transparent;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  color: rgb(52 58 64 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-outline-dark-filled:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(33 37 41 / var(--tw-bg-opacity));
}
body.r1-shop .btn-outline-secondary{
  display: inline-block;
  padding: 22px;
  border-width: 1px;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
  text-align: center;
  background-color: transparent;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(108 117 125 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(108 117 125 / var(--tw-border-opacity));
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-outline-secondary:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(108 117 125 / var(--tw-bg-opacity));
}
body.r1-shop .btn-red{
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(193 35 55 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  font-size: 17px;
  text-transform: uppercase;
  padding: 19px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 150ms ease-in-out;
}
body.r1-shop .btn-red:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop .btn-red{
    padding: 19px;
  }
}
body.r1-shop .btn-red {
  letter-spacing: 2px;
}
@media (min-width: 640px) {
  body.r1-shop .btn-red{
    font-size: 25px;
  }
}
body.r1-shop .btn-red:hover{
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
}
body.r1-shop form:not(.button_to) .form-inputs{
  display: flex;
}
.filters__dropdown-apply body.r1-shop form:not(.button_to) .form-inputs{
  gap: 8px;
}
body.r1-shop form:not(.button_to) .form-inputs{
  flex-direction: column;
  gap: 16px;
}
body.r1-shop form:not(.button_to) input:not([type=submit]),
body.r1-shop form:not(.button_to) select,
body.r1-shop form:not(.button_to) textarea{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(206 212 218 / var(--tw-border-opacity));
  transition: all 150ms ease-in-out;
}
body.r1-shop form:not(.button_to) input:not([type=submit]):focus,
body.r1-shop form:not(.button_to) select:focus,
body.r1-shop form:not(.button_to) textarea:focus{
  --tw-border-opacity: 1;
  border-color: rgb(128 189 255 / var(--tw-border-opacity));
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
body.r1-shop form:not(.button_to) .field input:not([type=checkbox]),
body.r1-shop form:not(.button_to) .field select,
body.r1-shop form:not(.button_to) .field textarea,
body.r1-shop form:not(.button_to) .input input:not([type=checkbox]),
body.r1-shop form:not(.button_to) .input select,
body.r1-shop form:not(.button_to) .input textarea,
body.r1-shop form:not(.button_to) .actions input:not([type=checkbox]),
body.r1-shop form:not(.button_to) .actions select,
body.r1-shop form:not(.button_to) .actions textarea{
  width: 100%;
  --tw-text-opacity: 1;
  color: rgb(73 80 87 / var(--tw-text-opacity));
  border-radius: 4px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 700;
}
body.r1-shop form:not(.button_to) .field select,
body.r1-shop form:not(.button_to) .input select,
body.r1-shop form:not(.button_to) .actions select{
  padding-right: 40px;
}
body.r1-shop form:not(.button_to) .field{
  display: flex;
}
.filters__dropdown-apply body.r1-shop form:not(.button_to) .field{
  gap: 8px;
}
body.r1-shop form:not(.button_to) .field{
  flex-direction: column;
  gap: 8px;
}
body.r1-shop form:not(.button_to) .field label{
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
body.r1-shop form:not(.button_to) .field label abbr{
  text-decoration-line: none;
}
body.r1-shop form:not(.button_to) .field.boolean label.input{
  display: grid;
}
.shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout body.r1-shop form:not(.button_to) .field.boolean label.input .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
body.r1-shop form:not(.button_to) .field.boolean label.input{
  align-items: center;
  grid-template-columns: auto 1fr;
  grid-template-areas: "input label" ". hint" ". error";
}
body.r1-shop form:not(.button_to) .field.boolean label.input input[type=checkbox]{
  border-radius: 0.125rem;
  grid-area: input;
}
body.r1-shop form:not(.button_to) .field.boolean label.input span.hint {
  grid-area: hint;
}
body.r1-shop form:not(.button_to) .field.boolean label.input span.error {
  grid-area: error;
}
body.r1-shop form:not(.button_to) .field.boolean label.input span.label-text {
  grid-area: label;
}
body.r1-shop form:not(.button_to) input.boolean{
  margin-right: 8px;
}
body.r1-shop form:not(.button_to) label.boolean{
  display: flex;
}
.filters__dropdown-apply body.r1-shop form:not(.button_to) label.boolean{
  gap: 8px;
}
body.r1-shop form:not(.button_to) label.boolean{
  vertical-align: baseline;
  line-height: 1;
}
body.r1-shop form:not(.button_to) label.boolean abbr[title=required]{
  margin-left: 4px;
}
body.r1-shop form:not(.button_to) input[type=submit]{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  transition: all 150ms ease-in-out;
}
body.r1-shop form:not(.button_to) input[type=submit]:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop form:not(.button_to) input[type=submit]{
    padding: 19px;
  }
}
body.r1-shop form:not(.button_to) input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
body.r1-shop form:not(.button_to) .error_notification,
body.r1-shop form:not(.button_to) .error:not(.field){
  font-family: "Roboto", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(220 53 69 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.r1-shop form:not(.button_to) .error.field{
  --tw-text-opacity: 1;
  color: rgb(203 91 93 / var(--tw-text-opacity));
}
body.r1-shop form:not(.button_to) .form-actions{
  display: flex;
}
.filters__dropdown-apply body.r1-shop form:not(.button_to) .form-actions{
  gap: 8px;
}
body.r1-shop form:not(.button_to) .form-actions{
  justify-content: space-between;
  margin-top: 20px;
}
body.r1-shop .main-footer{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer{
  gap: 8px;
}
body.r1-shop .main-footer{
  flex-direction: column;
  z-index: 50;
  width: 100%;
  bottom: 0px;
  padding-top: 25px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  body.r1-shop .main-footer{
    padding-left: 32px;
    padding-right: 32px;
  }
}
body.r1-shop .main-footer .top-row{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .top-row{
  gap: 8px;
}
body.r1-shop .main-footer .top-row{
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer .top-row{
    flex-direction: row;
  }
}
body.r1-shop .main-footer .top-row h3{
  text-transform: uppercase;
  font-weight: 700;
}
body.r1-shop .main-footer .top-row h3 a {
  color: black;
}
body.r1-shop .main-footer .top-row .footer-links{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .top-row .footer-links{
  gap: 8px;
}
body.r1-shop .main-footer .top-row .footer-links{
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer .top-row .footer-links{
    width: 70%;
  }
}
body.r1-shop .main-footer .top-row .footer-links .section{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .top-row .footer-links .section{
  gap: 8px;
}
body.r1-shop .main-footer .top-row .footer-links .section{
  flex-direction: column;
  width: 45%;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  body.r1-shop .main-footer .top-row .footer-links .section{
    width: -moz-max-content;
    width: max-content;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
body.r1-shop .main-footer .top-row .footer-links .section .link a,
body.r1-shop .main-footer .top-row .footer-links .section .link button{
  --tw-text-opacity: 1;
  color: rgb(97 106 113 / var(--tw-text-opacity));
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 4px;
}
body.r1-shop .main-footer .top-row .social-container{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .top-row .social-container{
  gap: 8px;
}
body.r1-shop .main-footer .top-row .social-container{
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer .top-row .social-container{
    width: 30%;
    margin-top: 0px;
  }
}
body.r1-shop .main-footer .top-row .social-container h5{
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 640px) {
  body.r1-shop .main-footer .top-row .social-container h5{
    justify-content: center;
    margin-bottom: 8px;
  }
}
body.r1-shop .main-footer .top-row .social-container .social{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .top-row .social-container .social{
  gap: 8px;
}
body.r1-shop .main-footer .top-row .social-container .social{
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media (min-width: 640px) {
  body.r1-shop .main-footer .top-row .social-container .social{
    justify-content: center;
    margin-bottom: 0px;
  }
}
body.r1-shop .main-footer .top-row .social-container .social img{
  width: 48px;
  margin: 0px;
}
@media (min-width: 640px) {
  body.r1-shop .main-footer .top-row .social-container .social img{
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
body.r1-shop .main-footer .top-row .social-container .social .social-icon {
  transition: 0.9s;
}
body.r1-shop .main-footer .top-row .social-container .social .social-icon:hover {
  transform: rotateY(360deg);
}
body.r1-shop .main-footer .brands{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .brands{
  gap: 8px;
}
body.r1-shop .main-footer .brands{
  flex-direction: row;
  align-items: center;
  margin-top: 0.625rem;
  margin-bottom: 24px;
}
body.r1-shop .main-footer .brands .brand-icon {
  transition: filter 0.5s ease-in-out;
}
body.r1-shop .main-footer .brands .brand-icon:hover {
  filter: grayscale(100%);
}
body.r1-shop .main-footer .brands .trib img{
  width: 6rem;
  margin-right: 0.625rem;
}
body.r1-shop .main-footer .brands .apro img{
  width: 80px;
  margin-right: 0.625rem;
}
body.r1-shop .main-footer .brands .nation img{
  width: 7rem;
}
body.r1-shop .main-footer .rent-one-logo{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .rent-one-logo{
  gap: 8px;
}
body.r1-shop .main-footer .rent-one-logo{
  flex-direction: row;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  body.r1-shop .main-footer .rent-one-logo{
    justify-content: flex-end;
  }
}
body.r1-shop .main-footer .rent-one-logo img{
  width: 13rem;
}
body.r1-shop .main-footer .bottom-text{
  --tw-text-opacity: 1;
  color: rgb(97 106 113 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
  margin-top: 64px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer .bottom-text{
    padding-left: 0px;
    padding-right: 0px;
  }
}
body.r1-shop .main-footer .bottom-text p{
  margin-bottom: 16px;
}
body.r1-shop .main-footer .copyright{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-footer .copyright{
  gap: 8px;
}
body.r1-shop .main-footer .copyright{
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  body.r1-shop .main-footer .copyright{
    align-items: flex-end;
  }
}
body.r1-shop .main-footer .copyright a{
  --tw-text-opacity: 1;
  color: rgb(65 176 234 / var(--tw-text-opacity));
}
body.r1-shop .main-footer .copyright .link{
  margin-bottom: 16px;
}
body.r1-shop .main-footer .copyright div {
  margin-bottom: 0.2rem;
}
body.r1-shop .main-header{
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header{
  gap: 8px;
}
body.r1-shop .main-header{
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(239 238 231 / var(--tw-bg-opacity));
  position: sticky;
  z-index: 50;
  width: 100%;
  top: 0px;
}
@media (min-width: 768px) {
  body.r1-shop .main-header{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  body.r1-shop .main-header{
    padding-left: 32px;
    padding-right: 32px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    display: grid;
  }
.shop_by_style .grid-layout body.r1-shop .main-header{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout body.r1-shop .main-header{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout body.r1-shop .main-header{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout body.r1-shop .main-header{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout body.r1-shop .main-header .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout body.r1-shop .main-header .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  body.r1-shop .main-header{
    row-gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom-width: 1px;
    border-color: transparent;
    transition: all 150ms ease-in-out;
    grid-template-areas: "heading search" "heading nav";
    grid-template-columns: 1fr auto;
  }
}
@media (min-width: 1280px) {
  body.r1-shop .main-header{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
    grid-template-areas: "heading search nav";
    grid-template-columns: auto 1fr auto;
  }
}
@media (min-width: 1024px) {
  body.r1-shop .main-header.active{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity));
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}
body.r1-shop .main-header .header-content{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content{
  gap: 8px;
}
body.r1-shop .main-header .header-content{
  align-items: center;
  gap: 0.625rem;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content{
    display: contents;
  }
}
body.r1-shop .main-header .header-content .heading{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content .heading{
  gap: 8px;
}
body.r1-shop .main-header .header-content .heading{
  align-items: center;
  gap: 0.625rem;
  grid-area: heading;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content .heading{
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 16px;
  }
}
body.r1-shop .main-header .header-content .heading .menu-button{
  min-width: 38px;
  height: 38px;
  position: relative;
  z-index: 51;
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content .heading .menu-button{
  gap: 8px;
}
body.r1-shop .main-header .header-content .heading .menu-button{
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content .heading .menu-button:hover .menu-label{
    --tw-text-opacity: 1;
    color: rgb(213 7 65 / var(--tw-text-opacity));
  }
  body.r1-shop .main-header .header-content .heading .menu-button:hover .hamburger-icon{
    --tw-bg-opacity: 1;
    background-color: rgb(213 7 65 / var(--tw-bg-opacity));
  }
  body.r1-shop .main-header .header-content .heading .menu-button:hover .hamburger-icon::before, body.r1-shop .main-header .header-content .heading .menu-button:hover .hamburger-icon::after{
    --tw-bg-opacity: 1;
    background-color: rgb(213 7 65 / var(--tw-bg-opacity));
  }
}
body.r1-shop .main-header .header-content .heading .menu-button .menu-label{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  transition: opacity 150ms ease-in-out, color 150ms ease-in-out;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content .heading .menu-button .menu-label{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
  }
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon-wrapper{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon-wrapper{
  gap: 8px;
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon-wrapper{
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  position: relative;
  cursor: pointer;
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon-wrapper::after {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
  opacity: 0;
  transition: all 150ms ease-in-out;
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon{
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  --tw-bg-opacity: 1;
  background-color: rgb(42 42 42 / var(--tw-bg-opacity));
  margin-left: auto;
  margin-right: auto;
  z-index: 52;
  transition: all 150ms ease-in-out;
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon::before, body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon::after{
  position: absolute;
  left: 0px;
  width: 100%;
  height: 2px;
  --tw-bg-opacity: 1;
  background-color: rgb(42 42 42 / var(--tw-bg-opacity));
  content: "";
  transition: all 150ms ease-in-out;
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon::before{
  --tw-translate-y: -0.625rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
body.r1-shop .main-header .header-content .heading .menu-button .hamburger-icon::after{
  --tw-translate-y: 0.625rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true]{
  cursor: default;
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true] .menu-label{
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true] .hamburger-icon-wrapper::after{
  opacity: 0.5;
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true] .hamburger-icon{
  background-color: transparent;
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true] .hamburger-icon::before{
  --tw-translate-y: 0px;
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
body.r1-shop .main-header .header-content .heading .menu-button[aria-expanded=true] .hamburger-icon::after{
  --tw-translate-y: 0px;
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
body.r1-shop .main-header .header-content .heading a.logo-link{
  position: relative;
  z-index: 51;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content .heading a.logo-link{
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
body.r1-shop .main-header .header-content .heading a.logo-link img {
  animation: bounceInLeft 1s;
  width: 161px;
  transition: all 150ms ease-in-out;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content .heading a.logo-link img{
    width: 341px;
  }
}
body.r1-shop .main-header .header-content nav#main-nav{
  margin-right: 0px;
  margin-left: auto;
  grid-area: nav;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav{
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul{
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content nav#main-nav ul{
  gap: 8px;
}
body.r1-shop .main-header .header-content nav#main-nav ul{
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul{
    position: relative;
    justify-content: flex-end;
    gap: 24px;
  }
}
@media (min-width: 1536px) {
  body.r1-shop .main-header .header-content nav#main-nav ul{
    gap: 48px;
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul li a,
body.r1-shop .main-header .header-content nav#main-nav ul li button{
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon a,
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon button{
  color: transparent;
  font-size: 0px;
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.75rem 1.75rem;
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-search button{
  background-image: url(/assets/icons/search-07be4d1917ded1a0bee8b2fbef89a6d0c244dfeea7aa330cf263ba030bfa66d5.svg);
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-search{
    display: none;
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-locations a{
  background-image: url(/assets/icons/location-5c552a6da0f1fc4f9e1697bb1421c6e3ddaf24114e3b3f386624a30aed8dd30c.svg);
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-locations a{
    display: inline;
    width: auto;
    height: auto;
    background-image: none;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(42 42 42 / var(--tw-text-opacity));
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a{
  position: relative;
  background-image: url(/assets/icons/cart-478b3da2bf5b3f332568f81ad3e54dcaf7c7389b2899c0ad434bec57baf4761a.svg);
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a{
    height: 50px;
    width: 50px;
    border-radius: 9999px;
    background-image: url(/assets/icons/cart-white-c3387d7d69679984d80eca139cfdc601151af2ea0555ccd1d819074812c2ab3b.svg);
    --tw-bg-opacity: 1;
    background-color: rgb(58 58 58 / var(--tw-bg-opacity));
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a span[data-cart-target=totalQuantity]{
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
}
.filters__dropdown-apply body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a span[data-cart-target=totalQuantity]{
  gap: 8px;
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a span[data-cart-target=totalQuantity]{
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
  border-radius: 9999px;
  font-size: 0.563rem;
  min-width: 0.844rem;
  min-height: 0.844rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  line-height: 1;
  font-weight: 700;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul li.nav-icon.nav-item-cart a span[data-cart-target=totalQuantity]{
    right: auto;
    left: 0px;
  }
}
body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-learn, body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-pay, body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-admin{
  display: none;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-learn, body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-pay, body.r1-shop .main-header .header-content nav#main-nav ul li.nav-item-admin{
    display: block;
  }
}
body.r1-shop .main-header #header-search-container {
  grid-area: search;
  max-height: 0px;
  overflow: hidden;
  transition: all 150ms ease-in-out;
}
body.r1-shop .main-header #header-search-container.active{
  max-height: 400px;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header #header-search-container{
    overflow: visible;
    max-height: none;
    max-height: initial;
  }
}
body.r1-shop .main-header #header-search-container .input-wrapper{
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header #header-search-container .input-wrapper{
    padding: 0px;
    overflow: visible;
  }
}
body.r1-shop .main-header #header-search-container .input-wrapper input[type=search]{
  width: 100%;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(180 180 180 / var(--tw-border-opacity));
  line-height: 1.25;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header #header-search-container .input-wrapper input[type=search]{
    border-radius: 4px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
body.r1-shop .main-header #header-search-container .input-wrapper input[type=search]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(97 106 113 / var(--tw-text-opacity));
  font-weight: 500;
}
body.r1-shop .main-header #header-search-container .input-wrapper input[type=search]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(97 106 113 / var(--tw-text-opacity));
  font-weight: 500;
}
body.r1-shop .main-header #header-search-container .autocomplete{
  display: none;
}
@media (min-width: 1024px) {
  body.r1-shop .main-header #header-search-container .autocomplete.active{
    display: block;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: rgb(255 255 255 / 0.9);
    padding: 4px;
    z-index: 50;
    margin-top: 8px;
  }
}
body.r1-shop .main-header #header-search-container .autocomplete li{
  list-style-type: none;
  margin-bottom: 4px;
}
body.r1-shop .main-header #header-search-container .autocomplete ul{
  margin-left: 0px;
  padding-left: 0px;
}
body.r1-shop .main-header #header-search-container .autocomplete a{
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.r1-shop .main-header #header-search-container .autocomplete a:hover{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
.newsletter-signups{
  display: flex;
}
.filters__dropdown-apply .newsletter-signups{
  gap: 8px;
}
.newsletter-signups{
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
  padding-top: 44px;
  padding-bottom: 20px;
}
.newsletter-signups h2{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-signups h2{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .newsletter-signups h2{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.newsletter-signups h2 + p{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Roboto", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-signups h2 + p{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .newsletter-signups h2 + p{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.newsletter-signups .form-containers{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .newsletter-signups .form-containers{
  gap: 8px;
}
.newsletter-signups .form-containers{
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .newsletter-signups .form-containers{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .newsletter-signups .form-containers{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .newsletter-signups .form-containers{
    flex-direction: row;
  }
}
.newsletter-signups .form-containers .form-section{
  display: flex;
}
.filters__dropdown-apply .newsletter-signups .form-containers .form-section{
  gap: 8px;
}
.newsletter-signups .form-containers .form-section{
  flex-direction: column;
  flex: 1 1;
}
.newsletter-signups .form-containers .form-section h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
.newsletter-signups .form-containers .form-section .sign-up-submitted{
  display: flex;
}
.filters__dropdown-apply .newsletter-signups .form-containers .form-section .sign-up-submitted{
  gap: 8px;
}
.newsletter-signups .form-containers .form-section .sign-up-submitted{
  flex-direction: column;
  flex-grow: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 24px;
}
.newsletter-signups .form-containers .form-section .sign-up-submitted h4{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
.newsletter-signups .form-containers .form-section form{
  display: flex;
}
.filters__dropdown-apply .newsletter-signups .form-containers .form-section form{
  gap: 8px;
}
.newsletter-signups .form-containers .form-section form{
  flex-direction: column;
  flex-grow: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 24px;
}
.newsletter-signups .form-containers .form-section form .error_notification{
  margin-bottom: 16px;
}
.newsletter-signups .form-containers .form-section form .form-content{
  flex-grow: 1;
}
.newsletter-signups .form-containers .form-section form .form-inputs .field label{
  font-weight: 400;
}
.newsletter-signups .form-containers .form-section form .form-inputs .field label abbr{
  display: none;
}
.newsletter-signups .form-containers .form-section form .form-inputs .field input[type=text],
.newsletter-signups .form-containers .form-section form .form-inputs .field input[type=email],
.newsletter-signups .form-containers .form-section form .form-inputs .field input[type=tel]{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.newsletter-signups .form-containers .form-section form .form-inputs .name-fields{
  display: contents;
}
@media (min-width: 768px) {
  .newsletter-signups .form-containers .form-section form .form-inputs .name-fields{
    display: flex;
  }
.filters__dropdown-apply .newsletter-signups .form-containers .form-section form .form-inputs .name-fields{
    gap: 8px;
  }
  .newsletter-signups .form-containers .form-section form .form-inputs .name-fields{
    gap: 16px;
  }
}
.newsletter-signups .form-containers .form-section form .form-inputs .name-fields .field{
  flex: 1 1;
}
.newsletter-signups .form-containers .form-section form .disclaimer{
  margin-top: 16px;
}
.newsletter-signups .form-containers .form-section form .disclaimer p{
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(61 62 64 / var(--tw-text-opacity));
}
.newsletter-signups .form-containers .form-section form .disclaimer p a{
  --tw-text-opacity: 1;
  color: rgb(61 62 64 / var(--tw-text-opacity));
}
.newsletter-signups .form-containers .form-section form .disclaimer p a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
.newsletter-signups .form-containers .form-section form .recaptcha-v2{
  padding-top: 16px;
}
.newsletter-signups .form-containers .form-section form .form-actions input[type=submit],
.newsletter-signups .form-containers .form-section form .form-actions button[type=submit]{
  width: 100%;
}
.newsletter-signups .form-containers .form-section form .c-success-message .message{
  display: flex;
}
.filters__dropdown-apply .newsletter-signups .form-containers .form-section form .c-success-message .message{
  gap: 8px;
}
.newsletter-signups .form-containers .form-section form .c-success-message .message{
  align-items: center;
  justify-content: center;
  height: 62px;
  margin-top: 20px;
}
.newsletter-signups .form-containers .form-section form.new_sms_newsletter_signup .form-actions input[type=submit]{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(50 205 50 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(50 205 50 / var(--tw-border-opacity));
}
.newsletter-signups .form-containers .form-section form.new_sms_newsletter_signup .form-actions input[type=submit]:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .newsletter-signups .form-containers .form-section form.new_sms_newsletter_signup .form-actions input[type=submit]{
    padding: 19px;
  }
}
.newsletter-signups .form-containers .form-section form.new_sms_newsletter_signup .form-actions input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(50 205 50 / var(--tw-bg-opacity));
}
.newsletter-signups .recaptcha-terms{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(61 62 64 / var(--tw-text-opacity));
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .newsletter-signups .recaptcha-terms{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .newsletter-signups .recaptcha-terms{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.newsletter-signups .recaptcha-terms a{
  --tw-text-opacity: 1;
  color: rgb(61 62 64 / var(--tw-text-opacity));
}
#shop-nav-container{
  position: fixed;
  inset: 0px;
  background-color: rgb(0 0 0 / 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: all 150ms ease-in-out;
}
#shop-nav-container[aria-hidden=false]{
  opacity: 1;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-panel#shop-nav-container[aria-hidden=false] {
    opacity: 1;
  }
}
#shop-nav-container[aria-hidden=false]{
  pointer-events: auto;
}
#shop-nav-container #shop-nav{
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 320px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  padding-top: 57px;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav{
  gap: 8px;
}
#shop-nav-container #shop-nav{
  flex-direction: column;
  transition: all 150ms ease-in-out;
}
@media (min-width: 1024px) {
  #shop-nav-container #shop-nav{
    padding-top: 157px;
    width: 460px;
  }
}
@media (min-width: 1280px) {
  #shop-nav-container #shop-nav{
    padding-top: 136px;
  }
}
#shop-nav-container #shop-nav.active{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#shop-nav-container #shop-nav .shop-nav-menu{
  min-height: 0px;
  flex: 1 1;
  position: relative;
  overflow: hidden;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu{
  flex-direction: column;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel{
  position: absolute;
  inset: 0px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel{
  flex-direction: column;
  flex-grow: 1;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel.active{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel[data-panel-id=root]{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel[data-panel-id=root] > .menu-content > ul > li > a,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel[data-panel-id=root] > .menu-content > ul > li > button{
  font-weight: 500;
  text-transform: uppercase;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header{
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header{
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
@media (min-width: 768px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header{
    padding-left: 32px;
    padding-right: 32px;
  }
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0px;
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  width: 100%;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h2,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0px;
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  width: 100%;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h2 a,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h3 a{
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  display: block;
  transition: all 150ms ease-in-out;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h2 a:hover,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header p h3 a:hover{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button{
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button{
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  --tw-translate-y: 1px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  line-height: 1;
  position: relative;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button:hover{
  --tw-text-opacity: 1;
  color: rgb(203 91 93 / var(--tw-text-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-header .back-button::after {
  content: "";
  position: absolute;
  inset: -15px;
  z-index: -1;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content{
  min-height: 0px;
  flex: 1 1;
  overflow-y: auto;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content{
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  scrollbar-color: #e0e0e0 transparent;
  scrollbar-width: thin;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content::-webkit-scrollbar {
  all: unset;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content::-webkit-scrollbar-track {
  background: none;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content::-webkit-scrollbar {
  background: none;
  width: 14px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 87px;
  background-color: #e0e0e0;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button{
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,.filters__dropdown-apply 
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button{
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: left;
  --tw-text-opacity: 1;
  color: rgb(42 42 42 / var(--tw-text-opacity));
  font-weight: 400;
}
@media (min-width: 768px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button{
    padding-left: 32px;
    padding-right: 32px;
  }
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button {
  transition: all 150ms ease-in-out;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a:hover,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  padding-left: 40px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > a:hover::after,
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button:hover::after{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content ul li > button::after{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  transition: all 150ms ease-in-out;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer{
  flex-direction: column;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  gap: 16px;
}
@media (min-width: 768px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer{
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: row;
    justify-content: space-between;
  }
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links{
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links{
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links{
    gap: 4px;
  }
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links a{
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  font-size: 1.25rem;
  line-height: 1.75rem;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links a{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links a{
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  background-color: transparent;
  transition: all 150ms ease-in-out;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .social-links a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .legal-links{
  display: flex;
}
.filters__dropdown-apply #shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .legal-links{
  gap: 8px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .legal-links{
  align-items: center;
  gap: 16px;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .legal-links a{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  text-transform: uppercase;
}
#shop-nav-container #shop-nav .shop-nav-menu .menu-panel .menu-content .menu-footer .legal-links a:hover{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
.gamifyModal.gamify-modal {
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 64px;
  max-height: calc(100% - 112px);
  max-width: 100%;
  border: 2px solid #fff;
  border-radius: 12px;
  box-shadow: 1px 5px 60px hsla(0, 0%, 78%, 0.6);
  -webkit-overflow-scrolling: touch !important;
  z-index: 2147483647;
}
.gamifyModal.gamify-modal .gamifyModalContent {
  border-radius: 8px;
  background-image: url(data:image/gif;base64,R0lGODlhgAAPAPEAAO7u7szMzOPj48zMzCH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAgAAPAAACo5QvoIC33NKKUtF3Z8RbN/55CEiNonMaJGp1bfiaMQvBtXzTpZuradUDZmY+opA3DK6KwaQTCbU9pVHc1LrDUrfarq765Ya9u+VRzLyO12lwG10yy39zY11Jz9t/6jf5/HfXB8hGWKaHt6eYyDgo6BaH6CgJ+QhnmWWoiVnI6ddJmbkZGkgKujhplNpYafr5OooqGst66Uq7OpjbKmvbW/p7UAAAIfkECQoAAAAsAAAAAIAADwAAArCcP6Ag7bLYa3HSZSG2le/Zgd8TkqODHKWzXkrWaq83i7V5s6cr2f2TMsSGO9lPl+PBisSkcekMJphUZ/OopGGfWug2Jr16x92yj3w247bh6teNXseRbyvc0rbr6/x5Ng0op4YSJDb4JxhI58eliEiYYujYmFi5eEh5OZnXhylp+RiaKQpWeDf5qQk6yprawMno2nq6KlsaSauqS5rLu8cI69k7+ytcvGl6XDtsyzxcAAAh+QQJCgAAACwAAAAAgAAPAAACvpw/oIC3IKIUb8pq6cpacWyBk3htGRk1xqMmZviOcemdc4R2kF3DvfyTtFiqnPGm+yCPQdzy2RQMF9Moc+fDArU0rtMK9SYzVUYxrASrxdc0G00+K8ruOu+9tmf1W06ZfsfXJfiFZ0g4ZvEndxjouPfYFzk4mcIICJkpqUnJWYiYs9jQVpm4edqJ+lkqikDqaZoquwr7OtHqAFerqxpL2xt6yQjKO+t7bGuMu1L8a5zsHI2MtOySVwo9fb0bVQAAIfkECQoAAAAsAAAAAIAADwAAAsucP6CAt9zSErSKZyvOd/KdgZaoeaFpRZKiPi1aKlwnfzBF4jcNzDk/e7EiLuLuhzwqayfmaNnjCCGNYhXqw9qcsWjT++TqxIKp2UhOprXf7PoNrpyvQ3p8fAdu82o+O5w3h2A1+Nfl5geHuLgXhEZVWBeZSMnY1oh5qZnyKOhgiGcJKHqYOSrVmWpHGmpauvl6CkvhaUD4qejaOqvH2+doV7tSqdsrexybvMsZrDrJaqwcvSz9i9qM/Vxs7Qs6/S18a+vNjUx9/v1TAAAh+QQJCgAAACwAAAAAgAAPAAAC0Zw/oIC33NKKUomLxct4c718oPV5nJmhGPWwU9TCYTmfdXp3+aXy+wgQuRRDSCN2/PWAoqVTCSVxilQZ0RqkSXFbXdf3ZWqztnA1eUUbEc9wm8yFe+VguniKPbNf6mbU/ubn9ieUZ6hWJAhIOKbo2Pih58C3l1a5OJiJuflYZidpgHSZCOnZGXc6l3oBWrE2aQnLWYpKq2pbV4h4OIq1eldrigt8i7d73Ns3HLjMKGycHC1L+hxsXXydO9wqOu3brPnLXL3C640sK+6cTaxNflEAACH5BAkKAAAALAAAAACAAA8AAALVnD+ggLfc0opS0SeyFnjn7oGbqJHf4mXXFD2r1bKNyaEpjduhPvLaC5nJEK4YTKhI1ZI334m5g/akJacAiDUGiUOHNUd9ApTgcTN81WaRW++Riy6Tv/S4dQ1vG4ps4NwOaBYlOEVYhYbnplexyJf3ZygGOXkWuWSZuNel+aboV0k5GFo4+qN22of6CMoq2kr6apo6m5fJWCoZm+vKu2Hr6KmqiHtJLKebRhuszNlYZ3ncewh9J9z8u3mLHA0rvetrzYjd2Wz8bB6oNO5MLq6FTp2+bVUAACH5BAkKAAAALAAAAACAAA8AAALanD+ggLfc0opS0XeX2Fy8zn2gp40ieHaZFWHt9LKNO5eo3aUhvisj6RutIDUZgnaEFYnJ4M2Z4210UykQ8BtqY0yHstk1UK+/sdk63i7VYLYX2sOa0HR41S5wi7/vcMWP1FdWJ/dUGIWXxqX3xxi4l0g4GEl5yOHIBwmY2cg1aXkHSjZXmbV4uoba5kkqelbaapo6u0rbN/SZG7trKFv7e6savKTby4voaoVpNAysiXscV4w8fSn8fN1pq1kd2j1qDLK8yYy9/ff9mgwrnv2o7QwvGO1ND049UgAAIfkECQoAAAAsAAAAAIAADwAAAticP6CAt9zSilLRd2d8onvBfV0okp/pZdamNRi7ui3yyoo4Ljio42h+w6kgNiJt5kAaasdYE7D78YKlXpX6GWphxqTT210qK1Cf9XT2SKXbYvv5Bg+jaWD5ekdjU9y4+PsXRuZHRrdnZ5inVidAyCTXF+nGlVhpdjil2OE49hjICVh4qZlpibcDKug5KAlHOWqqR8rWCjl564oLFruIucaYGlz7+XoKe2wsIqxLzMxaxIuILIs6/JyLbZsdGF063Uu6vH2tXc79LZ1MLWS96t4JH/rryzhPWgAAIfkECQoAAAAsAAAAAIAADwAAAtWcP6CAt9zSilLRd2fEe4kPCk8IjqTonZnVsQ33arGLwLV8Kyeqnyb5C60gM2LO6MAlaUukwdbcBUspYFXYcla00KfSywRzv1vpldqzprHFoTv7bsOz5jUaUMer5vL+Mf7Hd5RH6HP2AdiUKLa41Tj1Acmjp0bJFuinKKiZyUhnaBd5OLnzSNbluOnZWQZqeVdIYhqWyop6ezoquTs6O0aLC5wrHErqGnvJibms3LzKLIYMe7xnO/yL7TskLVosqa1aCy3u3FrJbSwbHpy9fr1NfR4fUgAAIfkECQoAAAAsAAAAAIAADwAAAsqcP6CAt9zSilLRd2fEW7cnhKIAjmFpZla3fh7CuS38OrUR04p5Ljzp46kgMqLOaJslkbhbhfkc/lAjqmiIZUFzy2zRe5wGTdYQuKs9N5XrrZPbFu94ZYE6ms5/9cd7/T824vdGyIa3h9inJQfA+DNoCHeomIhWGUcXKFIH6RZZ6Bna6Zg5l8JnSamayto2WtoI+4jqSjvZelt7+URKpmlmKykM2vnqa1r1axdMzPz5LLooO326Owxd7Bzam4x8pZ1t3Szu3VMOdF4AACH5BAkKAAAALAAAAACAAA8AAAK/nD+ggLfc0opS0XdnxFs3/i3CSApPSWZWt4YtAsKe/DqzXRsxDqDj6VNBXENakSdMso66WzNX6fmAKCXRasQil9onM+oziYLc8tWcRW/PbGOYWupG5Tsv3TlXe9/jqj7ftpYWaPdXBzbVF2eId+jYCAn1KKlIApfCSKn5NckZ6bnJpxB2t1kKinoqJCrlRwg4GCs4W/jayUqamaqryruES2b72StsqgvsKlurDEvbvOx8mzgazNxJbD18PN1aUgAAIfkECQoAAAAsAAAAAIAADwAAArKcP6CAt9zSilLRd2fEWzf+ecgjlKaQWZ0asqPowAb4urE9yxXUAqeZ4tWEN2IOtwsqV8YkM/grLXvTYbV4PTZpWGYU9QxTxVZyd4wu975ZZ/qsjsPn2jYpatdx62b+2y8HWMTW5xZoSIcouKjYePeTh7TnqFcpabmFSfhHeemZ+RkJOrp5OHmKKapa+Hiyyokaypo6q1CaGDv6akoLu3DLmLuL28v7CdypW6vsK9vsE1UAACH5BAkKAAAALAAAAACAAA8AAAKjnD+ggLfc0opS0XdnxFs3/nkISI2icxokanVt+JoxC8G1fNOlm6tp1QNmZj6ikDcMrorBpBMJtT2lUdzUusNSt9qurvrlhr275VHMvI7XaXAbXTLLf3NjXUnP23/qN/n8d9cHyEZYpoe3p5jIOCjoFofoKAn5CGeZZaiJWcjp10mZuRkaSAq6OGmU2lhp+vk6iioay3rpSrs6mNsqa9tb+ntQAAA7AAAAAAAAAAAA);
  background-repeat: no-repeat;
  background-position: 50%;
  background-position-x: 50%;
  background-position-y: 50%;
  -webkit-overflow-scrolling: touch;
}
.gamifyModal.gamify-modal .gamifyModalContent iframe {
  border-radius: 8px;
  display: block;
  border: none;
  transform: translateZ(100%);
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  -webkit-overflow-scrolling: touch;
}
.gamifyModal.gamify-modal .gamifyModalContent, .gamifyModal.gamify-modal .gamifyModalContent iframe {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.gamifyModal.gamify-modal .gamifyModalButtons {
  top: -48px;
  right: -24px;
  border: none;
  position: absolute;
  z-index: 2147483647;
}
.gamifyModal.gamify-modal button.gamify-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  color: #585858;
  background-color: #ccc;
  box-shadow: 0 0 2px 1px hsla(0, 0%, 53%, 0.5);
  outline: none;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease-in;
}
.gamifyModal.gamify-modal button.gamify-modal-close:focus, .gamifyModal.gamify-modal button.gamify-modal-close:hover {
  background-color: #fff;
  transform: scale(1.2);
  border: none;
}
.gamifyModal.gamify-modal button.gamify-modal-close:focus {
  color: #000;
}
.gamifyModalOverlay.gamifyModalOverride {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: fixed;
  -webkit-overflow-scrolling: none !important;
}
.gamifyModal.gamify-modal.fw-slideout {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  height: 100vh;
  max-height: 100vh;
  border-radius: 0;
  border: none;
  margin: 0;
  width: 375px;
  background: #fff;
  box-shadow: 0 0 32px 4px rgba(0, 0, 0, 0.9);
  animation: fwSlideOutRight 0.75s 0.25s ease 1 both;
  z-index: 2147483640;
  transition: width 0.75s ease 0.25s;
}
.gamifyModal.gamify-modal.fw-slideout.fw-slideout-left {
  left: 0;
  right: auto;
  animation: fwSlideOutLeft 0.75s 0.25s ease 1 both;
  margin-left: 0 !important;
}
.gamifyModal.gamify-modal.fw-slideout.fw-slideout-bottom, .gamifyModal.gamify-modal.fw-slideout.fw-slideout-top {
  width: 100vw;
  height: 100vh;
  left: 0;
  margin: 0 !important;
  transition: none;
}
.gamifyModal.gamify-modal.fw-slideout.fw-slideout-top {
  transform: translateY(-100vh);
  animation: none;
  background: transparent;
}
.gamifyModal.gamify-modal.fw-slideout.fw-slideout-top.gamifyModalContent {
  overflow: auto;
  transform: translateZ(100%);
  -webkit-overflow-scrolling: touch !important;
}
.gamifyModal.gamify-modal.fw-slideout.fw-slideout-bottom {
  animation: fwSlideOutBottom 0.75s 0.25s ease 1 both;
}
.gamifyModal.gamify-modal.fw-slideout .gamifyModalContent, .gamifyModal.gamify-modal.fw-slideout .gamifyModalContent iframe {
  border-radius: 0;
}
.gamifyModal.gamify-modal.fw-slideout .gamifyModalButtons {
  top: 0;
  right: 0;
  margin: 0;
}
.gamifyModal.gamify-modal.fw-slideout .gamifyModalButtons button.gamify-modal-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  padding: 0;
  line-height: 24px;
  background: transparent;
  box-shadow: none;
  color: #ccc;
  transition: color 0.2s ease;
  position: relative;
  left: -12px;
}
.gamifyModal.gamify-modal.fw-slideout .gamifyModalButtons button.gamify-modal-close:hover {
  background: transparent;
  color: #aaa;
  transform: none;
  border: none;
}
@keyframes fwSlideOutRight {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes fwSlideOutLeft {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes fwSlideOutBottom {
  0% {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fwSlideOutTopBodyShift {
  to {
    transform: translate3d(0, 100vh, 0);
  }
}
.gamify-modal-embedded-content .gamifyModalContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  background-color: #000 !important;
}
.gamify-modal-error .gamifyModalContent {
  background-image: none !important;
  background-color: #fff !important;
}
.gamify-modal-error-message {
  margin-top: 14px;
  padding: 0 8px 24px;
  color: #f66;
  text-align: center;
  max-width: 360px;
  font-size: 16px !important;
  font-weight: 500 !important;
}
html.gamify-modal-active, html.gamify-modal-active > body, html.fw-slideout-active {
  overflow: hidden !important;
  -webkit-overflow-scrolling: none !important;
}
html.fw-slideout-active > body {
  -webkit-overflow-scrolling: none !important;
}
html.fw-slideout-active .fw-cta-sidebar-container {
  z-index: 2147483647;
  pointer-events: none;
}
html.fw-slideout-active img.fw-cta-sidebar-image:not(.fw-cta-sidebar-slideout) {
  visibility: hidden !important;
}
html.fw-slideout-active:not(.fw-slideout-bottom-active) .fw-cta-docked-bottom {
  display: none !important;
}
html.fw-slideout-active .gamifyModalOverlay.gamifyModalOverride {
  position: fixed;
  opacity: 0.2;
}
html.fw-slideout-top-active .gamifyModalOverlay {
  display: none !important;
  z-index: -1000;
}
html.fw-slideout-top-active {
  overflow: auto !important;
  width: 100vw !important;
  height: 100vh !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
}
html.fw-slideout-top-active body {
  animation: fwSlideOutTopBodyShift 2s 0s 1 both normal ease;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}
html.fw-slideout-bottom-active .gamify-modal.fw-slideout .gamifyModalButtons, html.fw-slideout-top-active .gamify-modal.fw-slideout .gamifyModalButtons {
  background: transparent;
  box-shadow: none;
}
html.perq-ios.perq-ios-11.fw-slideout-active:not(.fw-slideout-top-active) {
  position: fixed !important;
  width: 100vh;
  height: 100vh;
}
html.perq-mobile.gamify-modal-active > body > .gamifyModalOverride.gamifyModal.gamify-modal {
  min-width: 100vw !important;
  max-width: 100vw !important;
  width: 100vw !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  height: 100vh !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
html.perq-mobile.gamify-modal-active > body > .gamifyModalOverride.gamifyModal.gamify-modal > .gamifyModalContent, html.perq-mobile.gamify-modal-active > body > .gamifyModalOverride.gamifyModal.gamify-modal > .gamifyModalContent > iframe {
  border-radius: 0 !important;
  border: none !important;
}
html.perq-mobile.gamify-modal-active > body > .gamifyModalOverride.gamifyModal.gamify-modal > .gamifyModalButtons {
  display: none !important;
}
html.gamify-modal-active > body {
  position: fixed !important;
  min-height: 100% !important;
  min-width: 100% !important;
  overflow: hidden !important;
  top: 0;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  height: auto;
}
html.perq-mobile.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModalOverride.gamifyModal.gamify-modal {
  box-sizing: border-box !important;
  padding-top: 40px !important;
  background: #585858 !important;
}
html.perq-mobile.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModalOverride.gamifyModal.gamify-modal > .gamifyModalButtons {
  display: block !important;
  top: 0 !important;
  right: 0 !important;
  margin: 8px !important;
}
html.perq-mobile.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModalOverride.gamifyModal.gamify-modal > .gamifyModalButtons > button.gamify-modal-close {
  width: auto !important;
  height: 24px !important;
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 24px !important;
  padding: 0 16px !important;
}
html:not(.perq-mobile).gamify-modal-active.gamify-modal-active-hub > body > .gamifyModal.gamify-modal {
  border-radius: 0;
  border: 1px solid #777;
  box-shadow: 2px 2px 12px 6px hsla(0, 0%, 5%, 0.8);
}
html.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModal.gamify-modal > .gamifyModalContent, html.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModal.gamify-modal > .gamifyModalContent iframe {
  border-radius: 0;
}
html.gamify-modal-active.gamify-modal-active-hub > body > .gamifyModalOverlay.gamifyModalOverride {
  opacity: 0.7;
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .gamifyModal.gamify-modal .gamifyModalContent {
    overflow: hidden;
  }
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .gamifyModal.gamify-modal.fw-slideout.fw-slideout-top {
    top: 0;
    transform: none !important;
  }
}
.fw-cta.fw-cta-bottom-left, .fw-cta.fw-cta-top-left {
  display: inline-block;
}
.fw-cta.fw-cta-bottom-right, .fw-cta.fw-cta-top-right {
  float: right;
  display: inline-block;
}
.fw-cta.fw-cta-bottom-center, .fw-cta.fw-cta-top-center {
  overflow: hidden;
  margin: 0 auto;
  display: table;
}
img.fw-cta-banner {
  cursor: pointer;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
img.fw-cta-banner:focus:active {
  outline: none;
}
span.fw-cta.fw-cta-banner-container {
  max-width: 100%;
  max-height: 100%;
}
span.fw-cta.fw-cta-banner-container:focus:active {
  outline: none;
}
img.fw-cta-banner:focus {
  outline: thick double #32a1ce;
}
.fw-cta-banner-container {
  display: inline-block;
}
@media (min-width: 1025px) {
  .fw-cta-banner.fw-cta-banner-md, .fw-cta-banner.fw-cta-banner-sm, .fw-cta-button-hide-lg, .fw-cta-docked-image.fw-cta-docked-md, .fw-cta-docked-image.fw-cta-docked-sm, .fw-cta-sidebar-image.fw-cta-sidebar-md, .fw-cta-sidebar-image.fw-cta-sidebar-sm, .fw-engagement-center-hide-lg {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .fw-cta-banner.fw-cta-banner-lg, .fw-cta-banner.fw-cta-banner-sm, .fw-cta-button-hide-md, .fw-cta-docked-image.fw-cta-docked-lg, .fw-cta-docked-image.fw-cta-docked-sm, .fw-cta-sidebar-image.fw-cta-sidebar-lg, .fw-cta-sidebar-image.fw-cta-sidebar-sm, .fw-engagement-center-hide-md {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .fw-cta-banner.fw-cta-banner-lg, .fw-cta-banner.fw-cta-banner-md, .fw-cta-button-hide-sm, .fw-cta-docked-image.fw-cta-docked-lg, .fw-cta-docked-image.fw-cta-docked-md, .fw-cta-sidebar-image.fw-cta-sidebar-lg, .fw-cta-sidebar-image.fw-cta-sidebar-md, .fw-engagement-center-hide-sm {
    display: none !important;
  }
}
.fw-cta-docked-image:focus:active {
  outline: none;
}
.fw-cta.fw-cta-button {
  cursor: pointer;
}
.fw-cta.fw-cta-button:focus:active {
  outline: none;
}
.fw-cta.fw-cta-iframe {
  display: block !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
.fw-cta.fw-cta-iframe > iframe {
  width: 100% !important;
  height: 99% !important;
  border: none !important;
  position: relative !important;
  top: 0.5% !important;
  -webkit-overflow-scrolling: touch !important;
  transform: translateZ(100%);
}
.fw-cta-preview {
  background-color: #d4d4d4 !important;
  background-size: contain;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  pointer-events: none;
}
.fw-testmode-toolbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 32px;
  overflow: hidden;
  padding: 0 12px 0 60px;
  margin: 0;
  background: #83235f no-repeat url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABACAQAAABG1hr/AAAFGElEQVR42u3WA5Dk3hbA4bu2d/+2bdu2bdu2bdu2bdu2scZ4+3uvuqaS3Jpsb+YZ+U5h0MhvcE9CqVQqlUqlUqlUKv27WNZK8mdJcxisY0gYZEUrFZiVLaazaaxc4zFLmj1+9Xx6m97CVrCSZcxjcl1DPj9rUJ87Y/zuPdfa2KBQZRWj1BeYRm/rZ2+NNR4z2m/ec4MtDAm59LGys7zgeyPUqTfWUJ+534Hm1qntw4eZmCYvWU+nEKymSTEf6Wd/RTR7zUY6h4ieNvO0cfL94koLhZihihjtSJ2sqvEfHgJjHK1bSJjdbRrU9ovD9G1/CI32sXr7Q4q/emhlBR8pYrxbTNn+EH52gnqtVNQZbZy6zDT/zSH8aN7wV5b3reIeMFleyKv2TuYwV/lM7MfMpdbbw2KWj06iDRzhcaNzQsY61V6ZVz/CDb4ROy0Es/lAbKiHHW8n29rPlT5VEbtC97YhV4WIaZ2nUb6xlgo59LSKp3yofxQy1OwhoqNZ3KQi9ZrJ3CSryW0Wj/57pnag72Q12LZtyDUhxPRwu3zjLBMmwBC76SMOmTu0YXJvSf3oMGOl6hyhZ2jDIt6U9a7J80MiNtRcNCSlQwgOyA2JOEOqzk+yztA55DK/z6Qqdi4SsqhR8oy1dKjJgQVCDjYhr5k0TJDtNEo9pMfEQ1ZRL0+dLc1olszMoE/8ZsZPNOQC+Sp2DzXo72WpH8wx8ZCz5asY6udofvCs1ULCbH6qHWJ2X8j3s1lDTY6RqrN+HHJ1iOhgC8O0x5fpBejthUzInCGiuyU9Y0Je1Se+EtNa0GQhYT1NmdW4Txxyh+mSmc0qLjBc1nAtaqvYIrTS2b2ZrXOt052RzEUeM1RWkzqpR3SLog/ztZE+sK1OocrSxkkdFoeM8W3rfOdXdYgzLlCvtob0j0tXjyjuBm9KPaF7SNhYQ3KFR+pR/doyUcghcUgtFSdaS6NaKq7XJ7NN3lfUHab2sNR7BuUfCZpcZGC8FjTbqWhIkwv0iO5+m9ziNKcnc4bTbGdASFjeGEWMcKZBIbg8+tpiIeEosbtM7USpkZYvFvKFPfQIwWoaFd8j+5q4BrdZXvXv3m6yTgsJs3hL7DVfSL1v8tohLf70osPMGKrSkHSzF1yI4/3km+p8q16q3lahlXn8LvWjBUPCnB43YRfEm50PnJbMSQ6wsXn1DYniIabSyQFSI6xiKtNU51QVqU/NkRwOt8l60lQhYVKXaZJnZPVKau2RWNEQXWzsLgPsT94eMciTsu7QO1RZ0UhZj5s3OoQPMlRb1+iaf69VNGS5EHSMpqtJreZG43yi34Tvfi3uZ6kWByWb53yxbx1pDj11qC7FAc7QIjbayiH8PSHNnnCjmzJzs4d8rA58lBeSsq9mqd8sF6pMkbPtf/GM613hdm8YhljFsxb820NqKhDS2+2yXjJFqDKHV7XXFzb7d4RUmdPnss7XOVSZ1YMq2qPOof+ekCpbqZMam7lLG+gIP6ilzutGARodqUswQuraUJPVtSjmE/3j4zcnpKtLZH2ZfYy5neVzzdoa6kEbG2B7v6HFqdUbTG/6ypfV+dZpoSbL+DR5dK35xiP62N7XrZ9/5U2zhDZM63FfZ551hq4hwzQ2cpaHvOUTn/vA8663rwX1SH6wH7tAz9ZzwlStM7UBoSbdTWmqQjOpjnpnPp9Cl5DDQFNHj+oU2tBVf5OZwmC9dAgRM+gbSqVSqVQqlUqlUqlUyvgLNmey/P+h72QAAAAASUVORK5CYII=");
  background-size: 32px;
  background-size: auto 32px;
  background-position: 4px 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  text-decoration: none;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.33);
  z-index: 2147483647;
  opacity: 0.85;
}
.fw-testmode-toolbar > span {
  font-size: 75%;
  display: inline-block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .fw-testmode-toolbar {
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding-left: 48px;
    background-size: auto 24px;
  }
}
html.fw-slideout-active .fw-testmode-toolbar {
  z-index: 2147483640;
}
.fw-cta-ask-a-question-sidebar {
  animation: 0.2s ease forwards upFromBottomOnLoadOrClose;
  transition: opacity 0.2s ease;
}
.fw-cta-ask-a-question-sidebar:hover {
  opacity: 0.6;
}
.ask-a-question-closed {
  animation: 0.2s ease forwards upFromBottomOnLoadOrClose;
}
.ask-a-question-launched {
  animation: 2s linear forwards pulse;
  animation-iteration-count: infinite;
}
.ask-a-question-launched-slideout {
  animation: 0.3s ease forwards slideDownOnLoad;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}
@keyframes upFromBottomOnLoadOrClose {
  0% {
    transform: translateY(11em);
  }
  90% {
    transform: translateY(-1.5em);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDownOnLoad {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0);
  }
  to {
    transform: translateY(15em);
  }
}
.fw-cta-docked-container, .fw-cta-sidebar-container {
  z-index: 2147483447;
}
.fw-cta-sidebar-container {
  position: fixed;
  right: 0;
}
.fw-cta-docked-image, .fw-cta-sidebar-image {
  cursor: pointer;
  display: block;
}
.fw-cta-sidebar-image {
  margin-bottom: 10px;
}
.fw-cta-sidebar-left {
  left: 0;
  right: auto;
}
.fw-cta-sidebar-right .fw-cta-sidebar-image {
  float: right;
  clear: right;
}
.fw-cta-sidebar-slideout {
  transition: transform 0.75s ease 0.35s;
}
.fw-cta-sidebar-slideout, html.fw-slideout-active .fw-cta-docked-top {
  pointer-events: none;
}
.fw-cta-docked-container {
  display: block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.fw-cta-docked-container.fw-cta-docked-bottom, .fw-cta-docked-container.fw-cta-docked-top {
  left: 0;
  right: 0;
  width: auto;
}
.fw-cta-docked-container.fw-cta-docked-top {
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease;
  animation: fwCtaDockedTopEntrance 0.5s 0s ease backwards paused;
  display: none;
  transform: translateZ(0);
}
.fw-cta-docked-container.fw-cta-docked-top.fw-cta-docked-hide {
  opacity: 0;
}
.fw-cta-docked-container.fw-cta-docked-bottom {
  position: fixed;
  bottom: 0;
  transition: 0.5s ease;
  animation: fwCtaDockedBottomEntrance 0.5s 0.05s ease both;
}
.fw-cta-docked-container.fw-cta-docked-bottom.fw-cta-docked-hide {
  bottom: -50%;
}
.fw-cta-docked-container > img.fw-cta-docked-image {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.fw-cta-docked-container.fw-cta-docked-enter {
  animation-play-state: running;
  display: block;
}
.fw-cta-docked-container > .fw-cta-docked-btn-hide {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  font: 300 24px/1em Arial;
  z-index: 2147483447;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.fw-cta-docked-container > .fw-cta-docked-btn-hide > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 2px;
  color: hsla(0, 0%, 100%, 0.75);
  border-radius: 50%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.fw-cta-docked-container > .fw-cta-docked-btn-hide:focus:not(:active) > span, .fw-cta-docked-container > .fw-cta-docked-btn-hide:hover > span {
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
html.fw-cta-docked-top-active {
  position: relative !important;
  top: 0;
  transition: top 0.5s ease !important;
}
@keyframes fwCtaDockedTopEntrance {
  0% {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fwCtaDockedBottomEntrance {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 600px) {
  .fw-cta-docked-container.fw-cta-docked-top {
    display: block;
  }
}
#gamifyModalOverlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.gamifyModal {
  width: 95vw;
  height: 95vh;
}
.gamifyModal.gamify-modal .gamifyModalButtons {
  top: -48px;
  right: -4px;
  border: none;
  position: absolute;
  z-index: 2147483647;
}
.gamifyModal iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .gamifyModal {
    width: 80vw;
    height: 80vh;
  }
  .gamifyModal.gamify-modal .gamifyModalButtons {
    top: -48px;
    right: -24px;
    border: none;
    position: absolute;
    z-index: 2147483647;
  }
}
.homepage-side-banner {
  display: flex;
  flex-direction: row;
  height: 200px;
  justify-content: end;
  position: fixed;
  right: 0;
  top: 34%;
  width: 40px;
  z-index: 2147483447;
}
.mobile-menu-banner-container {
  background-color: #1b437b;
  padding: 24px 16px 0;
}
.homepage-side-banner {
  display: flex;
  flex-direction: row;
  height: 200px;
  justify-content: end;
  position: fixed;
  right: 0;
  top: 34%;
  width: 40px;
  z-index: 2147483447;
}
.modal.add-to-cart-modal{
  padding: 16px;
  overflow: visible;
}
.modal.add-to-cart-modal .content{
  position: relative;
  padding: 0px;
}
.modal.add-to-cart-modal .content .close-button{
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 1.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  opacity: 0.5;
}
.modal.add-to-cart-modal .content .close-button::after{
  position: absolute;
  inset: -20px;
  content: "";
}
.modal.add-to-cart-modal .content .close-button:hover{
  opacity: 1;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-panel.modal.add-to-cart-modal .content .close-button:hover {
    opacity: 1;
  }
}
.modal.add-to-cart-modal .content > div{
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  scrollbar-color: #e0e0e0 transparent;
  scrollbar-width: thin;
}
.modal.add-to-cart-modal .content > div::-webkit-scrollbar {
  all: unset;
}
.modal.add-to-cart-modal .content > div::-webkit-scrollbar-track {
  background: none;
}
.modal.add-to-cart-modal .content > div::-webkit-scrollbar {
  background: none;
  width: 14px;
}
.modal.add-to-cart-modal .content > div::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 87px;
  background-color: #e0e0e0;
}
.modal.add-to-cart-modal .content > div h3{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .modal.add-to-cart-modal .content > div h3{
    font-size: 2.3rem;
  }
}
.modal.add-to-cart-modal .content > div p{
  padding-left: 0px;
  padding-right: 0px;
  font-size: 0.8rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .modal.add-to-cart-modal .content > div p{
    font-size: 1rem;
  }
}
.modal.add-to-cart-modal .content > div .selectable-options{
  display: flex;
}
.filters__dropdown-apply .modal.add-to-cart-modal .content > div .selectable-options{
  gap: 8px;
}
.modal.add-to-cart-modal .content > div .selectable-options{
  flex-direction: column;
  gap: 16px;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset legend{
  font-weight: 500;
  margin-bottom: 16px;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group{
  display: flex;
}
.filters__dropdown-apply .modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group{
  gap: 8px;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group{
  flex-wrap: wrap;
  gap: 8px;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper{
  position: relative;
  display: block;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper input[type=radio]{
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  position: absolute;
  bottom: 0px;
  left: 50%;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper input[type=radio]:checked + label{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper input[type=radio]:focus-visible + label{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #3b82f6;
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper label{
  display: block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper label:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}
.modal.add-to-cart-modal .content > div .selectable-options fieldset .button-group .button-wrapper label{
  display: block;
}
.modal.add-to-cart-modal .content > div .modal-actions{
  display: flex;
}
.filters__dropdown-apply .modal.add-to-cart-modal .content > div .modal-actions{
  gap: 8px;
}
.modal.add-to-cart-modal .content > div .modal-actions{
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .modal.add-to-cart-modal .content > div .modal-actions{
    flex-direction: row;
  }
}
.modal.add-to-cart-modal .content > div .modal-actions a,
.modal.add-to-cart-modal .content > div .modal-actions button,
.modal.add-to-cart-modal .content > div .modal-actions input[type=submit]{
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding: 19px;
  flex: 1 1;
  width: 100%;
  transition: all 150ms ease-in-out;
}
.modal.add-to-cart-modal .content > div .modal-actions a:disabled,
.modal.add-to-cart-modal .content > div .modal-actions button:disabled,
.modal.add-to-cart-modal .content > div .modal-actions input[type=submit]:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .modal.add-to-cart-modal .content > div .modal-actions a,
  .modal.add-to-cart-modal .content > div .modal-actions button,
  .modal.add-to-cart-modal .content > div .modal-actions input[type=submit]{
    padding: 19px;
  }
}
.modal.add-to-cart-modal .content > div .modal-actions a:hover,
.modal.add-to-cart-modal .content > div .modal-actions button:hover,
.modal.add-to-cart-modal .content > div .modal-actions input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
.accordion .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.banner-group{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: flex;
}
.filters__dropdown-apply .banner-group{
  gap: 8px;
}
.banner-group{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .banner-group{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .banner-group{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.banner-group #passport-sleep {
  grid-area: passport-sleep;
}
.banner-group #express-delivery {
  grid-area: express-delivery;
}
@media (min-width: 768px) {
  .banner-group #express-delivery{
    position: relative;
  }
  .banner-group #express-delivery a{
    position: absolute;
    inset: 0px;
  }
  .banner-group #express-delivery a img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner-group #personal-shopper {
  grid-area: personal-shopper;
}
.banner-group #download-app {
  grid-area: download-app;
}
.banner-group #referral-program {
  grid-area: referral-program;
}
.banner-group #autopay {
  grid-area: autopay;
}
.banner-group #carousel {
  grid-area: carousel;
}
.banner-group #free-delivery {
  grid-area: free-delivery;
}
@media (min-width: 768px) {
  .banner-group{
    display: grid;
  }
.shop_by_style .grid-layout .banner-group{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .banner-group{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .banner-group{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .banner-group{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .banner-group .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .banner-group .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .banner-group{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "passport-sleep passport-sleep passport-sleep" "express-delivery express-delivery personal-shopper" "express-delivery express-delivery download-app" "referral-program referral-program referral-program" "autopay carousel free-delivery";
  }
}
.banner-group > div a > img{
  width: 100%;
}
.banner-group > div .swiper-button-next,
.banner-group > div .swiper-button-prev{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  padding: 4px;
  border-radius: 9999px;
  height: 30px;
  width: 30px;
  transition: all 150ms ease-in-out;
  background-color: rgba(0, 0, 0, 0.3);
}
.banner-group > div .swiper-button-next::after,
.banner-group > div .swiper-button-prev::after{
  font-size: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.banner-group > div .swiper-button-next:hover,
.banner-group > div .swiper-button-prev:hover{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.banner-messages .message{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity));
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: center;
  width: 100%;
}
.banner-messages .message.alert{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.banner-messages .message.error{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.banner-messages .message.info{
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity));
}
.banner-messages .message.notice{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / var(--tw-text-opacity));
}
.banner-messages .message a {
  text-decoration: underline;
}
.categories-collection{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .categories-collection{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-collection{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-collection > h1,
.categories-collection > h2{
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
}
.categories-collection .categories-grid{
  display: grid;
}
.shop_by_style .grid-layout .categories-collection .categories-grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .categories-collection .categories-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .categories-collection .categories-grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .categories-collection .categories-grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .categories-collection .categories-grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .categories-collection .categories-grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.categories-collection .categories-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 640px) {
  .categories-collection .categories-grid{
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .categories-collection .categories-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }
}
.category-tile > a{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-decoration-line: none;
}
.category-tile > a img{
  width: 100%;
  height: auto;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.category-tile > a:hover img {
  animation: bounce 1s;
}
.category-tile > a h2,
.category-tile > a h3{
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0px;
}
.filters__dropdown{
  position: relative;
}
.filters__dropdown-button{
  display: flex;
}
.filters__dropdown-apply .filters__dropdown-button{
  gap: 8px;
}
.filters__dropdown-button{
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  cursor: pointer;
  white-space: nowrap;
  min-width: auto;
}
.filters__dropdown-content{
  position: absolute;
  left: 0px;
  top: 100%;
  margin-top: 4px;
  width: 300px;
  z-index: 50;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-radius: 0.375rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  display: none;
}
.filters__dropdown-content.is-open {
  display: block;
}
.filters__dropdown-apply{
  padding: 8px;
  border-bottom-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.filters__dropdown-apply .flex{
  gap: 8px;
}
.filters__dropdown-apply-button, .filters__dropdown-clear{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.375rem;
}
.filters__dropdown-apply-button{
  flex: 1 1;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}
.filters__dropdown-apply-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}
.filters__dropdown-clear{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.filters__dropdown-clear:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.filters__dropdown-select{
  padding: 8px;
}
.filters__dropdown-select select{
  width: 100%;
}
.filters__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border-radius: 0.25rem;
}
.filters__checkbox{
  display: flex;
}
.filters__dropdown-apply .filters__checkbox{
  gap: 8px;
}
.filters__checkbox{
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}
.filters__checkbox input[type=checkbox]{
  height: 16px;
  width: 16px;
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.filters__checkbox input[type=checkbox]:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}
.filters__checkbox span{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.flash-messages{
  position: fixed;
  display: flex;
}
.filters__dropdown-apply .flash-messages{
  gap: 8px;
}
.flash-messages{
  flex-direction: column;
  align-items: center;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
  right: 0px;
  top: 0px;
  width: 100%;
  z-index: 70;
}
@media (min-width: 768px) {
  .flash-messages{
    left: auto;
    left: initial;
    min-width: 350px;
    max-width: 500px;
  }
}
.flash-messages .message{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity));
  margin-top: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  display: flex;
}
.filters__dropdown-apply .flash-messages .message{
  gap: 8px;
}
.flash-messages .message{
  align-items: center;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  max-height: 100px;
  --animate-duration: 1s;
}
.flash-messages .message.alert > i{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.flash-messages .message.info > i{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity));
}
.flash-messages .message.notice > i{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.flash-messages .message span{
  flex-grow: 1;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}
.flash-messages .message button{
  padding: 8px;
  right: 0px;
  top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
}
.flash-messages .message button:active, .flash-messages .message button:focus, .flash-messages .message button:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.flash-messages .message.info button:active, .flash-messages .message.info button:focus, .flash-messages .message.info button:hover, .flash-messages .message.notice button:active, .flash-messages .message.notice button:focus, .flash-messages .message.notice button:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.flash-messages .message.fade-out{
  opacity: 0;
  margin: 0px;
  max-height: 0;
}
.mattress-selection .mattress-rentals{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
  padding-top: 48px;
  padding-bottom: 48px;
}
.mattress-selection .mattress-rentals .mattress-rentals-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .mattress-selection .mattress-rentals .mattress-rentals-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .mattress-rentals .mattress-rentals-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mattress-selection .mattress-rentals .mattress-rentals-content > h2{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
.mattress-selection .mattress-rentals .mattress-rentals-content .subtitle{
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
}
.mattress-selection .mattress-rentals .mattress-rentals-content p{
  margin-top: 60px;
}
.mattress-selection .how-to-choose{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .how-to-choose{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mattress-selection .how-to-choose .how-to-choose-header{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .how-to-choose-header{
  gap: 8px;
}
.mattress-selection .how-to-choose .how-to-choose-header{
  flex-direction: column;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .how-to-choose-header{
    flex-direction: row;
    gap: 30px;
    margin-bottom: 60px;
  }
  .mattress-selection .how-to-choose .how-to-choose-header .image-wrapper{
    position: relative;
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .how-to-choose .how-to-choose-header .image-wrapper{
    flex-grow: 1;
  }
}
.mattress-selection .how-to-choose .how-to-choose-header .image-wrapper img{
  width: 100%;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .how-to-choose-header .image-wrapper img{
    position: absolute;
    top: 0px;
    left: 0px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.mattress-selection .how-to-choose .how-to-choose-header .text-wrapper{
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .how-to-choose-header .text-wrapper{
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .how-to-choose .how-to-choose-header .text-wrapper{
    width: 33.33%;
    max-width: 33.33%;
  }
}
.mattress-selection .how-to-choose .how-to-choose-header .text-wrapper h2{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
.mattress-selection .how-to-choose .how-to-choose-header .text-wrapper p:not(:last-child){
  margin-bottom: 16px;
}
.mattress-selection .how-to-choose .how-to-choose-header .text-wrapper p:last-child{
  text-transform: uppercase;
}
.mattress-selection .how-to-choose .how-to-choose-content{
  width: 100%;
  position: relative;
}
.mattress-selection .how-to-choose .disclosure-triggers{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .disclosure-triggers{
  gap: 8px;
}
.mattress-selection .how-to-choose .disclosure-triggers{
  flex-direction: column;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-triggers{
    flex-direction: row;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
    margin-bottom: 24px;
  }
}
.mattress-selection .how-to-choose .disclosure-trigger{
  width: 100%;
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .disclosure-trigger{
  gap: 8px;
}
.mattress-selection .how-to-choose .disclosure-trigger{
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.mattress-selection .how-to-choose .disclosure-trigger:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.mattress-selection .how-to-choose .disclosure-trigger{
  border-radius: 0.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.mattress-selection .how-to-choose .disclosure-trigger:not(:first-child){
  margin-top: 8px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-trigger:not(:first-child){
    margin-top: 0px;
  }
}
.mattress-selection .how-to-choose .disclosure-trigger[aria-expanded=true]{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.mattress-selection .how-to-choose .disclosure-trigger[aria-expanded=true] .disclosure-icon{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-trigger{
    border-radius: 0px;
    background-color: transparent;
    border-bottom-width: 2px;
    border-color: transparent;
  }
  .mattress-selection .how-to-choose .disclosure-trigger:hover{
    background-color: transparent;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
  }
  .mattress-selection .how-to-choose .disclosure-trigger[aria-selected=true]{
    background-color: transparent;
    --tw-border-opacity: 1;
    border-color: rgb(0 98 88 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(0 98 88 / var(--tw-text-opacity));
  }
  .mattress-selection .how-to-choose .disclosure-trigger .disclosure-icon{
    display: none;
  }
}
.mattress-selection .how-to-choose .disclosure-icon{
  width: 20px;
  height: 20px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.mattress-selection .how-to-choose .disclosure-panel{
  overflow: hidden;
  transition-property: max-height;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-panel {
    max-height: none !important;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mattress-selection .how-to-choose .disclosure-panel.opacity-100 {
    opacity: 1;
  }
}
.mattress-selection .how-to-choose .panel-content{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding: 16px;
  border-radius: 0.25rem;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .panel-content{
    background-color: transparent;
    padding: 0px;
    margin-top: 0px;
  }
}
.mattress-selection .how-to-choose .panel-content h3{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .panel-content h3{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    --tw-text-opacity: 1;
    color: rgb(62 62 62 / var(--tw-text-opacity));
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types{
  gap: 8px;
}
.mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types{
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types{
    flex-direction: row;
    gap: 30px;
    margin-top: 48px;
  }
  .mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types li{
    flex: 1 1;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types li > img{
  margin-bottom: 16px;
}
.mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types li h4{
  display: inline;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.mattress-selection .how-to-choose .choose-your-mattress-type ul.mattress-types li h4 + p{
  display: inline;
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness h4{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 60px;
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale{
  gap: 8px;
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale{
    flex-direction: row;
    gap: 30px;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale li > img{
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .choose-your-mattress-firmness ul.firmness-scale li{
    flex: 1 1;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists{
  gap: 8px;
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists{
    flex-direction: row;
    gap: 30px;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists .unordered-list-container{
  flex: 1 1;
}
.mattress-selection .how-to-choose .choose-your-mattress-firmness .how-to-determine-lists .unordered-list-container h5{
  text-transform: uppercase;
  font-weight: 500;
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
  gap: 8px;
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    display: grid;
  }
.shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    display: flex;
  }
.filters__dropdown-apply .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    gap: 8px;
  }
  .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes{
    flex-direction: row;
    gap: 30px;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li img{
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li{
    flex: 1 1;
  }
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li h4{
  font-weight: 700;
  display: inline;
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li h4 + strong{
  display: inline;
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li h4 + strong::after {
  content: " | ";
  display: inline;
}
.mattress-selection .how-to-choose .choose-your-mattress-size ul.mattress-sizes li h4 + strong + p{
  display: inline;
}
.mattress-selection .shop-by-size{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .mattress-selection .shop-by-size{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .shop-by-size{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mattress-selection .shop-by-size h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  margin-bottom: 16px;
}
.mattress-selection .shop-by-size .size-links{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .shop-by-size .size-links{
  gap: 8px;
}
.mattress-selection .shop-by-size .size-links{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .mattress-selection .shop-by-size .size-links{
    display: grid;
  }
.shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .mattress-selection .shop-by-size .size-links .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .mattress-selection .shop-by-size .size-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .mattress-selection .shop-by-size .size-links{
    display: flex;
  }
.filters__dropdown-apply .mattress-selection .shop-by-size .size-links{
    gap: 8px;
  }
  .mattress-selection .shop-by-size .size-links{
    flex-direction: row;
    padding-left: 8.6%;
    padding-right: 8.6%;
    gap: 30px;
  }
}
.mattress-selection .shop-by-size .size-links a{
  display: inline-block;
  padding: 22px;
  border-width: 1px;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
  text-align: center;
  background-color: transparent;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(108 117 125 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(108 117 125 / var(--tw-border-opacity));
  transition: all 150ms ease-in-out;
}
.mattress-selection .shop-by-size .size-links a:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(108 117 125 / var(--tw-bg-opacity));
}
@media (min-width: 768px) {
  .mattress-selection .shop-by-size .size-links a{
    flex: 1 1;
  }
}
.mattress-selection .why-rent-mattresses{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .mattress-selection .why-rent-mattresses{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .why-rent-mattresses{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mattress-selection .why-rent-mattresses h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.mattress-selection .why-rent-mattresses .subtitle{
  display: block;
  text-align: center;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 48px;
}
.mattress-selection .why-rent-mattresses .subtitle + p{
  text-align: center;
}
.mattress-selection .why-rent-mattresses .reasons-to-rent{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .why-rent-mattresses .reasons-to-rent{
  gap: 8px;
}
.mattress-selection .why-rent-mattresses .reasons-to-rent{
  flex-direction: column;
  gap: 16px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 640px) {
  .mattress-selection .why-rent-mattresses .reasons-to-rent{
    display: grid;
  }
.shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .mattress-selection .why-rent-mattresses .reasons-to-rent .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .mattress-selection .why-rent-mattresses .reasons-to-rent{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .mattress-selection .why-rent-mattresses .reasons-to-rent{
    display: flex;
  }
.filters__dropdown-apply .mattress-selection .why-rent-mattresses .reasons-to-rent{
    gap: 8px;
  }
  .mattress-selection .why-rent-mattresses .reasons-to-rent{
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {}
.mattress-selection .why-rent-mattresses .reasons-to-rent .reason{
  display: flex;
}
.filters__dropdown-apply .mattress-selection .why-rent-mattresses .reasons-to-rent .reason{
  gap: 8px;
}
.mattress-selection .why-rent-mattresses .reasons-to-rent .reason{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .mattress-selection .why-rent-mattresses .reasons-to-rent .reason{
    flex: 1 1;
    min-width: 0px;
  }
}
.mattress-selection .why-rent-mattresses .reasons-to-rent .reason img{
  align-self: center;
  width: 100%;
  max-width: 233px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1.13;
}
.mattress-selection .why-rent-mattresses .reasons-to-rent .reason h3{
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
}
.mattress-selection .why-rent-mattresses .reasons-to-rent .reason p{
  text-align: center;
}
.mattress-selection .buy-now-pay-later{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-top: 48px;
  padding-bottom: 48px;
}
.mattress-selection .buy-now-pay-later .inner-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
}
@media (min-width: 768px) {
  .mattress-selection .buy-now-pay-later .inner-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .mattress-selection .buy-now-pay-later .inner-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.mattress-selection .buy-now-pay-later .inner-content h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
.mattress-selection .buy-now-pay-later .inner-content a{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.mattress-selection .buy-now-pay-later .inner-content a:hover{
  text-decoration-line: underline;
}
.mattress-selection .buy-now-pay-later .inner-content .subtitle{
  font-family: "Open Sans", sans-serif;
}
.mattress-selection .buy-now-pay-later .inner-content p{
  margin-top: 16px;
  margin-bottom: 16px;
}
.mattress-selection .buy-now-pay-later .inner-content .questions{
  font-size: 80%;
}
.eager-infinite-scroll-trigger{
  position: relative;
  top: -10vh;
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.spinner,
.infinite-scroll-spinner{
  position: relative;
  font-size: 0px;
  color: transparent;
  display: flex;
}
.filters__dropdown-apply .spinner,.filters__dropdown-apply 
.infinite-scroll-spinner{
  gap: 8px;
}
.spinner,
.infinite-scroll-spinner{
  align-items: center;
  justify-content: center;
}
.spinner::before,
.infinite-scroll-spinner::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #244d85;
  border-top-color: #244d85;
  animation: spin 0.6s infinite linear;
}
.numberCircle{
  border-radius: 9999px;
  width: 36px;
  height: 36px;
  padding: 5px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-left: auto;
  margin-right: auto;
}
.spacer{
  height: 60px;
}
.modal{
  display: flex;
}
.filters__dropdown-apply .modal{
  gap: 8px;
}
.modal{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 2px solid transparent;
  outline-offset: 2px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  --animate-duration: 300ms;
}
.modal .content{
  font-family: "Open Sans", sans-serif;
  display: flex;
}
.filters__dropdown-apply .modal .content{
  gap: 8px;
}
.modal .content{
  flex-direction: column;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  align-items: center;
  width: 100%;
  --animate-duration: 300ms;
  transition: transform 0.3s ease-out;
  padding: 50px;
}
@media (min-width: 640px) {
  .modal .content{
    width: 527px;
  }
}
.modal .content h1{
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .modal .content h1{
    font-size: 2.3rem;
  }
}
.modal .content hr{
  margin-top: 16px;
  margin-bottom: 16px;
  border-width: 0px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.modal .content p{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33, 37, 41);
  padding: 16px;
}
.modal .content p.sub-text{
  font-weight: 600;
  padding: 0px;
}
.modal .content .button{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  margin-top: 30px;
  transition: all 150ms ease-in-out;
}
.modal .content .button:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .modal .content .button{
    padding: 19px;
  }
}
.modal .content .button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
[data-controller*=multi-step] [data-multi-step-target=step]:not(.active){
  display: none;
}
@media (min-width: 1024px) {
  [data-controller*=multi-step][data-multi-step-mobile-only-value=true] [data-multi-step-target=step]{
    display: block;
  }
}
[data-controller*=nested-multi-step] [data-nested-multi-step-target=step]:not(.active){
  display: none;
}
@media (min-width: 1024px) {
  [data-controller*=nested-multi-step][data-nested-multi-step-mobile-only-value=true] [data-nested-multi-step-target=step]{
    display: block;
  }
}
.product-tile{
  display: flex;
}
.filters__dropdown-apply .product-tile{
  gap: 8px;
}
.product-tile{
  flex-direction: column;
}
.product-tile .product-image-container{
  position: relative;
}
.product-tile .product-image-container .product-image{
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.product-tile .product-name{
  margin-top: 0.625rem;
  margin-bottom: 16px;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 300;
  text-transform: uppercase;
}
.product-tile .product-price{
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.product-tile .product-price:not(:last-of-type){
  margin-bottom: 0.375rem;
}
.product-tile .product-price.original-price{
  --tw-text-opacity: 1;
  color: rgb(158 158 158 / var(--tw-text-opacity));
}
.product-tile .product-price.sale-price{
  --tw-text-opacity: 1;
  color: rgb(221 68 119 / var(--tw-text-opacity));
}
.product-tile .button_to{
  margin-top: 8px;
}
.product-tile .button_to .btn-cart{
  --tw-bg-opacity: 1;
  background-color: rgb(62 62 62 / var(--tw-bg-opacity));
  width: 80px;
  height: 40px;
  display: flex;
}
.filters__dropdown-apply .product-tile .button_to .btn-cart{
  gap: 8px;
}
.product-tile .button_to .btn-cart{
  justify-content: center;
  align-items: center;
}
.product-tile .button_to .btn-cart.added{
  --tw-bg-opacity: 1;
  background-color: rgb(153 199 108 / var(--tw-bg-opacity));
}
.product-tile .button_to .btn-cart.added img{
  height: 32px;
}
.product-tile .button_to .btn-cart:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
}
.product-tile .button_to .btn-cart img{
  width: auto;
  height: 22px;
}
.rich-text-content h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
.rich-text-content a{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  text-decoration-line: none;
}
.rich-text-content a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
.rich-text-content > ul:not(:last-child),
.rich-text-content > ol:not(:last-child),
.rich-text-content > p:not(:last-child){
  margin-bottom: 16px;
}
.rich-text-content ul{
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 16px;
}
.rich-text-content ul ul{
  list-style-position: inside;
  list-style-type: circle;
}
.rich-text-content ol{
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 16px;
}
.rich-text-content .center{
  text-align: center;
}
.rich-text-content strong{
  font-weight: 700;
}
article.rto_info{
  margin-bottom: 32px;
}
article.rto_info .container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  article.rto_info .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.rto_info .container{
    padding-left: 32px;
    padding-right: 32px;
  }
  article.rto_info .container img{
    max-width: 200px;
  }
}
.shop-by-category{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .shop-by-category{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop-by-category{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop-by-category > h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.shop-by-category ul.categories{
  display: grid;
}
.shop_by_style .grid-layout .shop-by-category ul.categories{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .shop-by-category ul.categories{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .shop-by-category ul.categories{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .shop-by-category ul.categories{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .shop-by-category ul.categories .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .shop-by-category ul.categories .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.shop-by-category ul.categories{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (min-width: 640px) {
  .shop-by-category ul.categories{
    display: flex;
  }
.filters__dropdown-apply .shop-by-category ul.categories{
    gap: 8px;
  }
  .shop-by-category ul.categories{
    flex-direction: row;
  }
  .shop-by-category ul.categories li{
    flex: 1 1;
  }
}
.shop-by-category ul.categories li a{
  display: flex;
}
.filters__dropdown-apply .shop-by-category ul.categories li a{
  gap: 8px;
}
.shop-by-category ul.categories li a{
  flex-direction: column;
  gap: 8px;
}
.shop-by-category ul.categories li a img{
  width: 100%;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.shop-by-category ul.categories li a span{
  display: block;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
article.shop_by_furniture{
  margin-bottom: 32px;
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 231 / var(--tw-bg-opacity));
}
article.shop_by_furniture .container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  article.shop_by_furniture .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.shop_by_furniture .container{
    padding-left: 32px;
    padding-right: 32px;
  }
  article.shop_by_furniture .container img{
    max-width: 200px;
  }
}
article.shop_by_furniture .description{
  width: 100%;
}
@media (min-width: 768px){
  article.shop_by_furniture .description{
    width: 50%;
  }
}
article.shop_by_furniture .description{
  padding: 16px;
}
article.shop_by_furniture .categories{
  width: 100%;
}
@media (min-width: 768px){
  article.shop_by_furniture .categories{
    width: 50%;
  }
}
article.shop_by_furniture .categories{
  padding: 16px;
}
article.shop_by_furniture .category-link{
  width: 50%;
}
@media (min-width: 768px){
  article.shop_by_furniture .category-link{
    width: 25%;
  }
}
article.shop_by_furniture .category-link{
  padding: 8px;
}
article.shop_by_furniture .category-circle{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  border-radius: 9999px;
  width: 7rem;
  height: 7rem;
  display: flex;
}
.filters__dropdown-apply article.shop_by_furniture .category-circle{
  gap: 8px;
}
article.shop_by_furniture .category-circle{
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
article.shop_by_furniture .category-link:hover .category-circle{
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
article.shop_by_furniture .category-title{
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: capitalize;
}
.shop_by_price{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 231 / var(--tw-bg-opacity));
  padding-top: 48px;
  padding-bottom: 48px;
}
.shop_by_price .container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .shop_by_price .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_price .container{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_price h2{
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  margin-bottom: 16px;
}
.shop_by_price .circle_container{
  display: flex;
}
.filters__dropdown-apply .shop_by_price .circle_container{
  gap: 8px;
}
.shop_by_price .circle_container{
  align-items: center;
  justify-content: center;
  text-align: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-radius: 9999px;
  width: 15rem;
  height: 15rem;
  margin-left: auto;
  margin-right: auto;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.shop_by_price .circle_container p{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .shop_by_price .circle_container{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.shop_by_price .desktop-prices{
  display: flex;
}
.filters__dropdown-apply .shop_by_price .desktop-prices{
  gap: 8px;
}
.shop_by_price .desktop-prices{
  justify-content: center;
  gap: 16px;
  padding-top: 32px;
}
@media (min-width: 1024px) {
  .shop_by_price .desktop-prices{
    gap: 20px;
  }
}
.shop_by_price .desktop-prices a{
  flex: 1 1;
}
.shop_by_price a:hover .circle_container{
  --tw-bg-opacity: 1;
  background-color: rgb(150 216 251 / var(--tw-bg-opacity));
}
.shop_by_price .style-carousel{
  width: 100%;
}
@media (min-width: 1024px){
  .shop_by_price .style-carousel .swiper{
    display: none;
  }
}
.shop_by_price .style-carousel .swiper-pagination{
  margin-top: 16px;
  position: static;
}
.shop_by_price .style-carousel .swiper-button-next, .shop_by_price .style-carousel .swiper-button-prev{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  font-weight: 700;
  top: 50%;
  --tw-translate-y: -50%;
  --tw-scale-x: .5;
  --tw-scale-y: .5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  padding-left: 32px;
  padding-right: 32px;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_by_style{
  padding-top: 60px;
  padding-bottom: 60px;
}
.shop_by_style h2{
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  margin-bottom: 48px;
}
.shop_by_style .style-carousel{
  width: 100%;
}
@media (min-width: 1024px){
  .shop_by_style .style-carousel .swiper{
    display: none;
  }
}
.shop_by_style .style-carousel .swiper {
  position: relative;
}
.shop_by_style .style-carousel .swiper-wrapper{
  display: flex;
}
.filters__dropdown-apply .shop_by_style .style-carousel .swiper-wrapper{
  gap: 8px;
}
.shop_by_style .style-carousel .swiper-slide{
  flex-shrink: 0;
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .style-carousel .swiper-slide h3{
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0px;
}
.shop_by_style .style-carousel img{
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop_by_style .style-carousel .swiper-pagination{
  margin-top: 16px;
  position: static;
}
.shop_by_style .style-carousel .swiper-button-next,
.shop_by_style .style-carousel .swiper-button-prev{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  font-weight: 700;
  top: 50%;
  --tw-translate-y: -50%;
  --tw-scale-x: .5;
  --tw-scale-y: .5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  padding-left: 32px;
  padding-right: 32px;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_by_style .style-carousel .swiper-slide img{
  width: 100%;
  height: auto;
  max-width: 300px;
}
@media (min-width: 1024px) {
  .shop_by_style .style-carousel .swiper-slide img{
    width: 100%;
    height: auto;
    max-width: 300px;
  }
}
.shop_by_style .grid-layout{
  display: none;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout{
    display: block;
  }
}
.shop_by_style .grid-layout .grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.style-living{
  margin-bottom: 32px;
}
.style-living .banner{
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.style-living .banner .banner-inner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding-top: 32px;
  padding-bottom: 32px;
  --tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
@media (min-width: 768px) {
  .style-living .banner .banner-inner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .style-living .banner .banner-inner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.style-living .banner .banner-inner h2{
  font-size: 1.2rem;
}
.style-living .banner .banner-inner h2,
.style-living .banner .banner-inner h3{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.style-living .non-banner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .style-living .non-banner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .style-living .non-banner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.style-living .visit-showroom{
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.style-living .how-it-works{
  margin-bottom: 32px;
}
.style-living .how-it-works h2{
  font-weight: 700;
  text-transform: uppercase;
}
.style-living .how-it-works .bullet-points{
  margin-top: 16px;
  padding-left: 16px;
  display: grid;
}
.shop_by_style .grid-layout .style-living .how-it-works .bullet-points{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .style-living .how-it-works .bullet-points{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .style-living .how-it-works .bullet-points{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .style-living .how-it-works .bullet-points{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .style-living .how-it-works .bullet-points .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .style-living .how-it-works .bullet-points .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.style-living .how-it-works .bullet-points{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px){
  .style-living .how-it-works .bullet-points{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .style-living .how-it-works .bullet-points{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.style-living .how-it-works .bullet-points{
  gap: 16px;
}
.style-living .how-it-works .bullet-points li{
  list-style-type: disc;
  margin-left: 16px;
  padding-left: 0px;
  text-align: left;
}
.style-living .how-it-works .bullet-points li strong{
  font-weight: 700;
}
.style-living .our-stores{
  margin-bottom: 32px;
}
.style-living .our-stores p{
  margin-bottom: 32px;
}
.style-living .our-stores a.button{
  padding: 16px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity));
  border-radius: 0.375rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 500;
}
.style-living .our-stores a.button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  .style-living .banner{
    display: flex;
  }
.filters__dropdown-apply .style-living .banner{
    gap: 8px;
  }
  .style-living .banner{
    flex-direction: column;
    justify-content: flex-end;
  }
  .style-living .non-banner{
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 768px) {
    .style-living .non-banner{
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media (min-width: 1024px) {
    .style-living .non-banner{
      padding-left: 32px;
      padding-right: 32px;
    }
  }
  .style-living .non-banner .how-it-works{
    display: flex;
  }
.filters__dropdown-apply .style-living .non-banner .how-it-works{
    gap: 8px;
  }
  .style-living .non-banner .how-it-works .header{
    width: 50%;
    padding-right: 32px;
  }
  .style-living .non-banner .how-it-works .bullet-points{
    display: flex;
  }
.filters__dropdown-apply .style-living .non-banner .how-it-works .bullet-points{
    gap: 8px;
  }
  .style-living .non-banner .how-it-works .bullet-points{
    flex-direction: column;
    margin-top: 0px;
  }
  .style-living .non-banner .our-stores{
    display: flex;
  }
.filters__dropdown-apply .style-living .non-banner .our-stores{
    gap: 8px;
  }
  .style-living .non-banner .our-stores p{
    padding-right: 6rem;
    margin-bottom: 0px;
  }
  .style-living .non-banner .our-stores a.button{
    margin-top: auto;
    margin-bottom: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.ts-control {
  max-height: 24rem;
  overflow-y: auto;
}
.trending-products{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .trending-products{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .trending-products{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.trending-products h2{
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
.trending-products .products-carousel .product-grid{
  margin-top: 32px;
  display: grid;
}
.shop_by_style .grid-layout .trending-products .products-carousel .product-grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .trending-products .products-carousel .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .trending-products .products-carousel .product-grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .trending-products .products-carousel .product-grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .trending-products .products-carousel .product-grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .trending-products .products-carousel .product-grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.trending-products .products-carousel .product-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px){
  .trending-products .products-carousel .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.trending-products .products-carousel .product-grid{
  gap: 24px;
}
.trending-products .products-carousel .swiper-pagination{
  margin-top: 16px;
  position: static;
}
.modal.product-modal{
  padding: 16px;
}
.modal.product-modal .content{
  position: relative;
  padding: 32px;
  max-width: 500px;
}
.modal.product-modal .content .close-button{
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.modal.product-modal .content .close-button:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.modal.product-modal .content h3{
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.modal.product-modal .content .form-group{
  margin-bottom: 24px;
}
.modal.product-modal .content .form-group .form-input{
  width: 100%;
  padding: 8px;
  border-width: 1px;
  border-radius: 0.25rem;
}
.modal.product-modal .content .modal-actions{
  width: 100%;
}
.modal.product-modal .content .modal-actions button{
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.modal.product-modal .content .modal-actions button.btn-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.edit_category .slug-field .copy-button .fa-copy,
.new_category .slug-field .copy-button .fa-copy{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.edit_category .slug-field .copy-button .fa-check,
.new_category .slug-field .copy-button .fa-check{
  display: none;
}
.edit_category .slug-field .copy-button.copied .fa-copy,
.new_category .slug-field .copy-button.copied .fa-copy{
  display: none;
}
.edit_category .slug-field .copy-button.copied .fa-check,
.new_category .slug-field .copy-button.copied .fa-check{
  display: block;
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}
.edit_category .slug-field .slug-preview,
.new_category .slug-field .slug-preview{
  display: flex;
}
.filters__dropdown-apply .edit_category .slug-field .slug-preview,.filters__dropdown-apply 
.new_category .slug-field .slug-preview{
  gap: 8px;
}
.edit_category .slug-field .slug-preview,
.new_category .slug-field .slug-preview{
  align-items: center;
  margin-top: 8px;
  gap: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
article.categories-reorder .categories-list{
  list-style-type: none;
  padding: 20px;
  position: relative;
}
article.categories-reorder .nested-categories{
  list-style-type: none;
  padding-left: 20px;
  position: relative;
}
article.categories-reorder .nested-categories::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -37px;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
article.categories-reorder .category-item{
  position: relative;
  padding: 0px;
  border-style: none;
}
article.categories-reorder .category-item.nested-category::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: 0px;
  left: -37px;
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
article.categories-reorder .category-item.nested-category::after {
  content: "";
  display: block;
  height: 0px;
  clear: both;
}
article.categories-reorder .category-content{
  display: flex;
}
.filters__dropdown-apply article.categories-reorder .category-content{
  gap: 8px;
}
article.categories-reorder .category-content{
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-left: -8px;
}
article.categories-reorder .cursor-grab{
  margin-right: 8px;
}
.dashboard-statistics > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(32px * var(--tw-space-y-reverse));
}
.dashboard-statistics{
  margin-bottom: 32px;
}
.dashboard-statistics__grid{
  display: grid;
}
.shop_by_style .grid-layout .dashboard-statistics__grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .dashboard-statistics__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .dashboard-statistics__grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .dashboard-statistics__grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .dashboard-statistics__grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .dashboard-statistics__grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.dashboard-statistics__grid{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px){
  .dashboard-statistics__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .dashboard-statistics__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dashboard-statistics__grid{
  gap: 24px;
}
.dashboard-statistics__card{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-radius: 0.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  overflow: hidden;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
  text-decoration: none !important;
}
.dashboard-statistics__card-content{
  padding: 24px;
}
.dashboard-statistics__card-title{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  margin-bottom: 8px;
}
.dashboard-statistics__card-value{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.dashboard-statistics__card-comparison{
  margin-top: 8px;
  display: flex;
}
.filters__dropdown-apply .dashboard-statistics__card-comparison{
  gap: 8px;
}
.dashboard-statistics__card-comparison{
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.dashboard-statistics__card-previous{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.dashboard-statistics__card-change{
  font-weight: 500;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  border-radius: 0.25rem;
}
.dashboard-statistics__card-change.positive{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}
.dashboard-statistics__card-change.negative{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
}
.dashboard-statistics__card-change.neutral{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.dashboard-statistics__popular-grid{
  display: grid;
}
.shop_by_style .grid-layout .dashboard-statistics__popular-grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .dashboard-statistics__popular-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .dashboard-statistics__popular-grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .dashboard-statistics__popular-grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .dashboard-statistics__popular-grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .dashboard-statistics__popular-grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.dashboard-statistics__popular-grid{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px){
  .dashboard-statistics__popular-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.dashboard-statistics__popular-grid{
  gap: 24px;
}
.dashboard-statistics__popular-card{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-radius: 0.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  padding: 24px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.dashboard-statistics__section-title{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  margin-bottom: 16px;
}
.dashboard-statistics__products-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.dashboard-statistics__popular-item{
  display: flex;
}
.filters__dropdown-apply .dashboard-statistics__popular-item{
  gap: 8px;
}
.dashboard-statistics__popular-item{
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  gap: 16px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}
.dashboard-statistics__popular-item:last-child{
  border-width: 0px;
}
.dashboard-statistics__popular-name{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.dashboard-statistics__popular-quantity{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
  white-space: nowrap;
}
.dashboard-statistics__popular-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
article.admin-dashboard-index .order-statistics{
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 24px;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
article.admin-dashboard-index .order-statistics__title{
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
article.admin-dashboard-index .order-statistics__table-container{
  overflow-x: auto;
}
article.admin-dashboard-index .order-statistics__table{
  min-width: 100%;
}
article.admin-dashboard-index .order-statistics__table > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity));
}
article.admin-dashboard-index .order-statistics__header-cell{
  width: 25%;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
article.admin-dashboard-index .order-statistics__header-cell--left{
  text-align: left;
}
article.admin-dashboard-index .order-statistics__header-cell--right{
  text-align: right;
}
article.admin-dashboard-index .order-statistics__body > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity));
}
article.admin-dashboard-index .order-statistics__body{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
article.admin-dashboard-index .order-statistics__body-cell{
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
article.admin-dashboard-index .order-statistics__body-cell--text{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
article.admin-dashboard-index .order-statistics__body-cell--right{
  text-align: right;
}
article.admin-dashboard-index .order-statistics__body-cell--bold{
  font-weight: 700;
}
article.admin-dashboard-index .order-statistics__total-row{
  border-top-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
article.admin-dashboard-index .order-statistics__change--positive{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
article.admin-dashboard-index .order-statistics__change--negative{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
@media (min-width: 1280px) {
  .new_location .insertable-fields:not(:first-of-type) .field .label,
  .new_location .insertable-fields:not(:first-of-type) .field .label-text,
  .edit_location .insertable-fields:not(:first-of-type) .field .label,
  .edit_location .insertable-fields:not(:first-of-type) .field .label-text{
    display: none;
  }
}
.new_location .location-hour-field-inputs,
.edit_location .location-hour-field-inputs{
  display: flex;
}
.filters__dropdown-apply .new_location .location-hour-field-inputs,.filters__dropdown-apply 
.edit_location .location-hour-field-inputs{
  gap: 8px;
}
.new_location .location-hour-field-inputs,
.edit_location .location-hour-field-inputs{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1280px) {
  .new_location .location-hour-field-inputs,
  .edit_location .location-hour-field-inputs{
    flex-direction: row;
    align-items: flex-end;
    width: -moz-fit-content;
    width: fit-content;
  }
}
article.admin-orders-show div[data-controller=tabpanel]{
  margin-top: 24px;
  margin-bottom: 24px;
}
article.admin-orders-show div[role=tablist]{
  display: flex;
}
.filters__dropdown-apply article.admin-orders-show div[role=tablist]{
  gap: 8px;
}
article.admin-orders-show div[role=tablist]{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
article.admin-orders-show button[role=tab]{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  box-sizing: border-box;
  display: inline-block;
}
article.admin-orders-show div[role=tabcontent]{
  padding: 16px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  border-top-width: 0px;
  margin-bottom: 24px;
}
article.admin-orders-show button[role=tab][aria-selected=true]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-weight: 600;
}
article.admin-orders-show h2{
  margin-bottom: 12px;
  margin-top: 24px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
article.admin-orders-show h3{
  margin-bottom: 12px;
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
article.admin-orders-show .order__cart table{
  width: 100%;
  border-collapse: collapse;
}
article.admin-orders-show .order__cart table th, article.admin-orders-show .order__cart table td{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
}
article.admin-orders-show .order__cart table th.money, article.admin-orders-show .order__cart table td.money{
  text-align: right;
}
article.admin-orders-show .order__cart table th{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  font-weight: 600;
}
article.admin-orders-show .order__cart table tbody tr:nth-child(even){
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
article.admin-orders-show .order__cart table tbody tr:last-child th{
  font-weight: 700;
}
article.admin-orders-show .order__cart table .total-row th{
  text-align: right;
}
@media (min-width: 1280px) {
  .new_product .insertable-fields:not(:first-of-type) .field .label,
  .new_product .insertable-fields:not(:first-of-type) .field .label-text,
  .edit_product .insertable-fields:not(:first-of-type) .field .label,
  .edit_product .insertable-fields:not(:first-of-type) .field .label-text{
    display: none;
  }
}
.new_product .price-field-inputs,
.edit_product .price-field-inputs{
  display: flex;
}
.filters__dropdown-apply .new_product .price-field-inputs,.filters__dropdown-apply 
.edit_product .price-field-inputs{
  gap: 8px;
}
.new_product .price-field-inputs,
.edit_product .price-field-inputs{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .new_product .price-field-inputs,
  .edit_product .price-field-inputs{
    display: grid;
  }
.shop_by_style .grid-layout .new_product .price-field-inputs,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .new_product .price-field-inputs,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .new_product .price-field-inputs,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .new_product .price-field-inputs,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .new_product .price-field-inputs .grid-item,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .new_product .price-field-inputs .grid-item h3,.shop_by_style .grid-layout 
  .edit_product .price-field-inputs .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .new_product .price-field-inputs,
  .edit_product .price-field-inputs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "price-type price-type" "price-amount price-payments" "price-sale-amount price-sale-payments" "delete-container delete-container";
  }
}
@media (min-width: 1280px) {
  .new_product .price-field-inputs,
  .edit_product .price-field-inputs{
    display: flex;
  }
.filters__dropdown-apply .new_product .price-field-inputs,.filters__dropdown-apply 
  .edit_product .price-field-inputs{
    gap: 8px;
  }
  .new_product .price-field-inputs,
  .edit_product .price-field-inputs{
    flex-direction: row;
    align-items: flex-end;
  }
  .new_product .price-field-inputs .field,
  .edit_product .price-field-inputs .field{
    flex: 1 1;
  }
}
.new_product .price-field-inputs .field.price-type,
.edit_product .price-field-inputs .field.price-type {
  grid-area: price-type;
}
.new_product .price-field-inputs .field.price-amount,
.edit_product .price-field-inputs .field.price-amount {
  grid-area: price-amount;
}
.new_product .price-field-inputs .field.price-payments,
.edit_product .price-field-inputs .field.price-payments {
  grid-area: price-payments;
}
.new_product .price-field-inputs .field.price-sale-amount,
.edit_product .price-field-inputs .field.price-sale-amount {
  grid-area: price-sale-amount;
}
.new_product .price-field-inputs .field.price-sale-payments,
.edit_product .price-field-inputs .field.price-sale-payments {
  grid-area: price-sale-payments;
}
.new_product .option-field-inputs,
.edit_product .option-field-inputs{
  display: flex;
}
.filters__dropdown-apply .new_product .option-field-inputs,.filters__dropdown-apply 
.edit_product .option-field-inputs{
  gap: 8px;
}
.new_product .option-field-inputs,
.edit_product .option-field-inputs{
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .new_product .option-field-inputs,
  .edit_product .option-field-inputs{
    display: grid;
  }
.shop_by_style .grid-layout .new_product .option-field-inputs,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .new_product .option-field-inputs,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .new_product .option-field-inputs,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .new_product .option-field-inputs,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .new_product .option-field-inputs .grid-item,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .new_product .option-field-inputs .grid-item h3,.shop_by_style .grid-layout 
  .edit_product .option-field-inputs .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .new_product .option-field-inputs,
  .edit_product .option-field-inputs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "option-name option-value" "option-show-as-filter option-hide-from-product" "delete-container delete-container";
  }
}
@media (min-width: 1280px) {
  .new_product .option-field-inputs,
  .edit_product .option-field-inputs{
    display: flex;
  }
.filters__dropdown-apply .new_product .option-field-inputs,.filters__dropdown-apply 
  .edit_product .option-field-inputs{
    gap: 8px;
  }
  .new_product .option-field-inputs,
  .edit_product .option-field-inputs{
    flex-direction: row;
    align-items: flex-end;
  }
  .new_product .option-field-inputs .field.boolean,
  .edit_product .option-field-inputs .field.boolean{
    align-self: stretch;
    display: flex;
  }
.filters__dropdown-apply .new_product .option-field-inputs .field.boolean,.filters__dropdown-apply 
  .edit_product .option-field-inputs .field.boolean{
    gap: 8px;
  }
  .new_product .option-field-inputs .field.boolean,
  .edit_product .option-field-inputs .field.boolean{
    flex-direction: column;
    min-width: 143px;
  }
  .new_product .option-field-inputs .field.boolean label.input,
  .edit_product .option-field-inputs .field.boolean label.input {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    margin-top: auto;
    margin-bottom: 0px;
  }
  .new_product .option-field-inputs .field.boolean label.input span.label-text,
  .edit_product .option-field-inputs .field.boolean label.input span.label-text{
    font-weight: 500;
  }
  .new_product .option-field-inputs .field.boolean label.input input[type=checkbox],
  .edit_product .option-field-inputs .field.boolean label.input input[type=checkbox]{
    margin-top: auto;
    margin-bottom: auto;
  }
  .new_product .option-field-inputs .field.option-name,
  .edit_product .option-field-inputs .field.option-name{
    flex: 1 1;
    grid-area: option-name;
  }
  .new_product .option-field-inputs .field.option-value,
  .edit_product .option-field-inputs .field.option-value{
    flex: 1 1;
    grid-area: option-value;
  }
  .new_product .option-field-inputs .field.option-show-as-filter,
  .edit_product .option-field-inputs .field.option-show-as-filter {
    grid-area: option-show-as-filter;
  }
  .new_product .option-field-inputs .field.option-hide-from-product,
  .edit_product .option-field-inputs .field.option-hide-from-product {
    grid-area: option-hide-from-product;
  }
}
.new_product .sortable-images-grid,
.edit_product .sortable-images-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .new_product .sortable-images-grid,
  .edit_product .sortable-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .new_product .sortable-images-grid,
  .edit_product .sortable-images-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  }
}
.new_product .sortable-images-grid .image-preview,
.edit_product .sortable-images-grid .image-preview {
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.new_product .sortable-images-grid .image-preview img,
.edit_product .sortable-images-grid .image-preview img {
  max-height: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
body.deep-portal main article.admin-system-settings-index fieldset .field{
  margin-bottom: 16px;
}
.new_tag .product-checkboxes-container,
.edit_tag .product-checkboxes-container{
  max-height: 24rem;
  min-height: 24rem;
  overflow-y: auto;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  padding: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  display: flex;
}
.filters__dropdown-apply .new_tag .product-checkboxes-container,.filters__dropdown-apply 
.edit_tag .product-checkboxes-container{
  gap: 8px;
}
.new_tag .product-checkboxes-container,
.edit_tag .product-checkboxes-container{
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.new_tag .product-checkboxes-container .product-checkbox,
.edit_tag .product-checkboxes-container .product-checkbox{
  display: flex;
}
.filters__dropdown-apply .new_tag .product-checkboxes-container .product-checkbox,.filters__dropdown-apply 
.edit_tag .product-checkboxes-container .product-checkbox{
  gap: 8px;
}
.new_tag .product-checkboxes-container .product-checkbox,
.edit_tag .product-checkboxes-container .product-checkbox{
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.admin-utm-creator .form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-utm-creator .field {
  margin-bottom: 2rem;
  position: relative;
}
.admin-utm-creator .field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
}
.admin-utm-creator .field label.required:after {
  content: "*";
  color: #dc2626;
  margin-left: 4px;
}
.admin-utm-creator .field label .parameter {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: normal;
  margin-left: 0.5rem;
}
.admin-utm-creator .field .field-hint {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.admin-utm-creator .field .field-hint .examples {
  font-style: italic;
}
.admin-utm-creator .field .field-hint .examples:before {
  content: "e.g., ";
  font-style: normal;
}
.admin-utm-creator .field input[type=text],
.admin-utm-creator .field input[type=url] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.admin-utm-creator .field input[type=text]::-moz-placeholder, .admin-utm-creator .field input[type=url]::-moz-placeholder {
  color: #9ca3af;
}
.admin-utm-creator .field input[type=text]::placeholder,
.admin-utm-creator .field input[type=url]::placeholder {
  color: #9ca3af;
}
.admin-utm-creator .result {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.admin-utm-creator .result .generated-url-container {
  display: flex;
  gap: 0.75rem;
}
.admin-utm-creator .result .generated-url-container input {
  flex: 1 1;
  background-color: #f3f4f6;
  font-family: monospace;
  font-size: 0.875rem;
}
.admin-utm-creator .result .generated-url-container .copy-button {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: white;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.admin-utm-creator .result .generated-url-container .copy-button:hover {
  background-color: #1d4ed8;
}
.admin-utm-creator .result .generated-url-container .copy-button i {
  margin-right: 0.5rem;
}
.admin-utm-creator .field.has-error input {
  border-color: #dc2626;
}
.admin-utm-creator .field.has-error .error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
article.cart{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  article.cart{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.cart{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.cart .cart-items .cart-item-container{
  display: flex;
}
.filters__dropdown-apply article.cart .cart-items .cart-item-container{
  gap: 8px;
}
article.cart .cart-items .cart-item-container{
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px){
  article.cart .cart-items .cart-item-container{
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
article.cart .cart-items .item-image-container{
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px){
  article.cart .cart-items .item-image-container{
    width: 25%;
    margin-bottom: 0px;
    margin-right: 16px;
  }
}
article.cart .item-name-container{
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px){
  article.cart .item-name-container{
    width: 25%;
    margin-bottom: 0px;
    margin-right: 16px;
  }
}
article.cart .item-name-container .product-name{
  display: block;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-transform: uppercase;
  font-weight: 700;
}
article.cart .item-name-container .product-model{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  font-weight: 300;
}
article.cart .item-quantity-container{
  width: 41.666667%;
  margin-bottom: 16px;
  display: flex;
}
.filters__dropdown-apply article.cart .item-quantity-container{
  gap: 8px;
}
article.cart .item-quantity-container{
  flex-direction: column;
}
@media (min-width: 768px){
  article.cart .item-quantity-container{
    width: 16.666667%;
    margin-bottom: 0px;
    margin-right: 16px;
    flex-direction: row;
  }
}
article.cart .item-quantity-container .quantity-label{
  margin-bottom: 8px;
  font-weight: 700;
}
@media (min-width: 768px){
  article.cart .item-quantity-container .quantity-label{
    margin-right: 16px;
    margin-bottom: 0px;
  }
}
article.cart .item-price-container{
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px){
  article.cart .item-price-container{
    width: 25%;
    margin-bottom: 0px;
    margin-right: 0px;
  }
}
article.cart .item-price-container{
  flex-grow: 1;
}
article.cart .item-price-container .order-item-promo{
  padding-top: 64px;
}
article.cart .item-price-container .order-item-promo .savings{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
article.cart .cart-item-options-container{
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 768px){
  article.cart .cart-item-options-container{
    flex-direction: row;
  }
}
article.cart .cart-item-options-container .cart-item-option{
  margin-bottom: 8px;
  text-align: left;
}
@media (min-width: 768px){
  article.cart .cart-item-options-container .cart-item-option{
    margin-bottom: 0px;
    margin-right: 8px;
  }
}
article.cart .rto-total{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
  font-weight: 300;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}
article.cart .btn-remove{
  float: left;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
@media (min-width: 768px){
  article.cart .btn-remove{
    float: right;
  }
}
article.cart .payments-and-promo-wrapper{
  display: flex;
}
.filters__dropdown-apply article.cart .payments-and-promo-wrapper{
  gap: 8px;
}
article.cart .payments-and-promo-wrapper{
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper{
    flex-direction: row;
  }
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper{
  width: 100%;
  padding-top: 40px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper .payments-today-wrapper{
    padding-top: 0px;
    width: 50%;
  }
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today{
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today{
    padding: 8px;
  }
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container{
  display: flex;
}
.filters__dropdown-apply article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container{
  gap: 8px;
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container{
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container .total-label{
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container .total-amount{
  text-align: right;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}
article.cart .payments-and-promo-wrapper .payments-today-wrapper .payments-today .total-container .total-amount .tax-info{
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 4px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper{
  width: 100%;
  margin-right: 64px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper .promo-wrapper{
    width: 50%;
  }
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form{
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form{
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-form-container{
  display: flex;
}
.filters__dropdown-apply article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-form-container{
  gap: 8px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-form-container{
  flex-direction: column;
  width: 100%;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-input-button-wrapper{
  display: flex;
}
.filters__dropdown-apply article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-input-button-wrapper{
  gap: 8px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-input-button-wrapper{
  width: 100%;
  margin-bottom: 40px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-input-container{
  width: 66.666667%;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-input{
  width: 100%;
  height: 64px;
  padding: 8px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-button-container{
  width: 33.333333%;
  display: flex;
}
.filters__dropdown-apply article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-button-container{
  gap: 8px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-button-container{
  align-items: center;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-button-container .btn-custom-submit{
  height: 64px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promo-error-message{
  width: 100%;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
  margin-top: 8px;
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .cart-promos{
  padding-top: 40px;
}
@media (min-width: 768px){
  article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .cart-promos{
    padding-top: 16px;
  }
}
article.cart .payments-and-promo-wrapper .promo-wrapper .promo-form .promos-title{
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-transform: uppercase;
  font-weight: 700;
}
article.cart .button-wrapper{
  display: flex;
}
.filters__dropdown-apply article.cart .button-wrapper{
  gap: 8px;
}
article.cart .button-wrapper{
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px){
  article.cart .button-wrapper{
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
article.cart .customers-also-ordered h2{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
article.categories-show .category-banner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.categories-show .category-banner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .category-banner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.categories-show .products-layout{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout{
  gap: 8px;
}
article.categories-show .products-layout{
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  article.categories-show .products-layout{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .products-layout{
    padding-left: 32px;
    padding-right: 32px;
    align-items: flex-start;
    flex-direction: row;
    margin-top: 60px;
  }
}
article.categories-show .products-layout .filter form{
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout .filter form{
  gap: 8px;
}
article.categories-show .products-layout .filter form{
  flex-direction: column;
  gap: 16px;
  min-width: 215px;
}
article.categories-show .products-layout .filter form .filter-group{
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout .filter form .filter-group{
  gap: 8px;
}
article.categories-show .products-layout .filter form .filter-group{
  flex-direction: column;
}
article.categories-show .products-layout .filter form .filter-group > label,
article.categories-show .products-layout .filter form .filter-group > h3{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  margin-bottom: 8px;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes{
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout .filter form .filter-group .filter-checkboxes{
  gap: 8px;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes{
  flex-direction: column;
  gap: 8px;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes .filter-option{
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout .filter form .filter-group .filter-checkboxes .filter-option{
  gap: 8px;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes .filter-option{
  align-items: center;
  gap: 8px;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes .filter-option label{
  line-height: 1;
}
article.categories-show .products-layout .filter form .filter-group .filter-checkboxes .filter-option[aria-hidden=true]{
  display: none;
}
article.categories-show .products-layout .filter form .filter-group button.toggle-more{
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 24px;
  margin-top: 4px;
  font-weight: 500;
}
article.categories-show .products-layout .filter form .filter-group button.toggle-more:hover{
  text-decoration-line: underline;
}
article.categories-show .products-layout .filter input[type=submit]{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
}
article.categories-show .products-layout .filter input[type=submit]:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  article.categories-show .products-layout .filter input[type=submit]{
    padding: 19px;
  }
}
article.categories-show .products-layout .filter input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
}
body.r1-shop article.categories-show .products-layout .filter-button{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
}
body.r1-shop article.categories-show .products-layout .filter-button:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  body.r1-shop article.categories-show .products-layout .filter-button{
    padding: 19px;
  }
}
body.r1-shop article.categories-show .products-layout .filter-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
}
@media (min-width: 1024px){
  article.categories-show .products-layout .filter-button{
    display: none !important;
  }
}
article.categories-show .products-layout .filter-button{
  margin-bottom: 16px;
  width: 100%;
}
article.categories-show .products-layout .no-results{
  flex-grow: 1;
  text-align: center;
}
article.categories-show .products-layout .no-results h3{
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
}
article.categories-show .products-layout .no-results h3 + p{
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
article.categories-show .products-layout .category-products{
  flex-grow: 1;
  position: relative;
  display: grid;
}
.shop_by_style .grid-layout article.categories-show .products-layout .category-products{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.categories-show .products-layout .category-products{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.categories-show .products-layout .category-products{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.categories-show .products-layout .category-products{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.categories-show .products-layout .category-products .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.categories-show .products-layout .category-products .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.categories-show .products-layout .category-products{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  article.categories-show .products-layout .category-products{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  article.categories-show .products-layout .category-products{
    gap: 28px;
  }
}
article.categories-show .products-layout .category-products .infinite-scroll-spinner{
  position: absolute;
  display: flex;
}
.filters__dropdown-apply article.categories-show .products-layout .category-products .infinite-scroll-spinner{
  gap: 8px;
}
article.categories-show .products-layout .category-products .infinite-scroll-spinner{
  align-items: center;
  justify-content: center;
  left: 0px;
  right: 0px;
  bottom: -28px;
}
article.categories-show .parent-category-layout{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  article.categories-show .parent-category-layout{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .parent-category-layout{
    padding-left: 32px;
    padding-right: 32px;
    margin-top: 60px;
  }
}
article.categories-show .parent-category-layout .child-categories {
  --gap: 16px;
  --desktop-cols: 4;
  display: grid;
}
.shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.categories-show .parent-category-layout .child-categories .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.categories-show .parent-category-layout .child-categories{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}
@media (min-width: 640px) {
  article.categories-show .parent-category-layout .child-categories {
    --gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  article.categories-show .parent-category-layout .child-categories{
    display: flex;
  }
.filters__dropdown-apply article.categories-show .parent-category-layout .child-categories{
    gap: 8px;
  }
  article.categories-show .parent-category-layout .child-categories{
    flex-wrap: wrap;
    justify-content: center;
  }
  article.categories-show .parent-category-layout .child-categories .category-tile {
    width: calc((100% - var(--gap) * (var(--desktop-cols) - 1)) / var(--desktop-cols));
  }
}
article.categories-show .category-description{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  article.categories-show .category-description{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .category-description{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.categories-show .featured-products{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 231 / var(--tw-bg-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
}
article.categories-show .featured-products .inner-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.categories-show .featured-products .inner-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .featured-products .inner-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.categories-show .featured-products .inner-content > h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 48px;
  text-align: center;
}
article.categories-show .featured-products .inner-content .featured-products-grid{
  display: grid;
}
.shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.categories-show .featured-products .inner-content .featured-products-grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.categories-show .featured-products .inner-content .featured-products-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 640px) {
  article.categories-show .featured-products .inner-content .featured-products-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  article.categories-show .featured-products .inner-content .featured-products-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.categories-partial a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
.categories-partial .category-notice{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .categories-partial .category-notice{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .category-notice{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .category-notice p{
  text-align: center;
  font-weight: 500;
  font-style: italic;
  font-size: 80%;
}
.categories-partial .text-with-bg-image{
  margin-top: 60px;
}
@media (min-width: 768px) {
  .categories-partial .text-with-bg-image{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 768px) {
    .categories-partial .text-with-bg-image{
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media (min-width: 1024px) {
    .categories-partial .text-with-bg-image{
      padding-left: 32px;
      padding-right: 32px;
    }
  }
}
.categories-partial .text-with-bg-image .background-container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  padding-top: 48px;
}
@media (min-width: 768px) {
  .categories-partial .text-with-bg-image .background-container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .text-with-bg-image .background-container{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .text-with-bg-image .background-container {
  background-image: var(--bg-image);
}
@media (min-width: 768px) {
  .categories-partial .text-with-bg-image .background-container{
    padding: 50px;
    padding-top: 98px;
  }
}
.categories-partial .text-with-bg-image .background-container .text-content{
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .categories-partial .text-with-bg-image .background-container .text-content{
    width: 44%;
  }
}
.categories-partial .text-with-bg-image .background-container .text-content h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.categories-partial .call-out{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
}
.categories-partial .call-out .call-out-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .categories-partial .call-out .call-out-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .call-out .call-out-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .call-out .call-out-content h2{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
.categories-partial .call-out .call-out-content .subtitle{
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
}
.categories-partial .call-out .call-out-content p:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .call-out .call-out-content--with-image{
  display: flex;
}
.filters__dropdown-apply .categories-partial .call-out .call-out-content--with-image{
  gap: 8px;
}
.categories-partial .call-out .call-out-content--with-image{
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
@media (min-width: 768px) {
  .categories-partial .call-out .call-out-content--with-image.image-right{
    flex-direction: row-reverse;
  }
  .categories-partial .call-out .call-out-content--with-image.image-right .text-content{
    padding-left: 0px;
    padding-right: 60px;
  }
  .categories-partial .call-out .call-out-content--with-image{
    flex-direction: row;
    gap: 0px;
  }
  .categories-partial .call-out .call-out-content--with-image .image-wrapper{
    width: 50%;
    position: relative;
    min-height: 500px;
  }
}
.categories-partial .call-out .call-out-content--with-image .image-wrapper img{
  width: 100%;
}
@media (min-width: 768px) {
  .categories-partial .call-out .call-out-content--with-image .image-wrapper img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.categories-partial .call-out .call-out-content--with-image .text-content .subtitle{
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .categories-partial .call-out .call-out-content--with-image .text-content{
    width: 50%;
    padding-left: 60px;
  }
}
.categories-partial .about-category{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .categories-partial .about-category{
  gap: 8px;
}
.categories-partial .about-category{
  flex-direction: column;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .categories-partial .about-category{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .about-category{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .categories-partial .about-category{
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .about-category{
    display: grid;
  }
.shop_by_style .grid-layout .categories-partial .about-category{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .categories-partial .about-category{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .categories-partial .about-category{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .categories-partial .about-category{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .categories-partial .about-category .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .categories-partial .about-category .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .categories-partial .about-category{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .categories-partial .about-category .image-wrapper{
    position: relative;
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .categories-partial .about-category .image-wrapper{
    grid-column: span 3 / span 3;
    min-height: 400px;
  }
}
.categories-partial .about-category .image-wrapper img{
  width: 100%;
}
@media (min-width: 768px) {
  .categories-partial .about-category .image-wrapper img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.categories-partial .about-category .text-content{
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .categories-partial .about-category .text-content{
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .categories-partial .about-category .text-content{
    padding-top: 60px;
    padding-bottom: 60px;
    grid-column: span 2 / span 2;
  }
}
.categories-partial .about-category .text-content h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
.categories-partial .about-category .text-content p:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .about-category .text-content ul{
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 16px;
}
.categories-partial .about-category .text-content ul li strong{
  font-weight: 500;
}
.categories-partial .text-block{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .categories-partial .text-block{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .text-block{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .text-block h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.5;
}
.categories-partial .text-block h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
  font-size: 1rem;
}
.categories-partial .text-block h4{
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}
.categories-partial .text-block p:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .text-block ol{
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 16px;
}
.categories-partial .text-block ol li{
  margin-bottom: 16px;
}
.categories-partial .text-block ol li::marker{
  font-weight: 500;
}
.categories-partial .text-block ol li strong{
  font-weight: 500;
}
.categories-partial .advantages{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}
.categories-partial .advantages h3{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .categories-partial .advantages h3{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .advantages h3{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .advantages ul {
  --gap: 30px;
  --columns: 1;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .categories-partial .advantages ul{
  gap: 8px;
}
.categories-partial .advantages ul{
  flex-direction: column;
}
@media (min-width: 768px) {
  .categories-partial .advantages ul{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .advantages ul{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .advantages ul {
  gap: var(--gap);
}
@media (min-width: 768px) {
  .categories-partial .advantages ul {
    --columns: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .categories-partial .advantages ul {
    --columns: 3;
  }
}
@media (min-width: 1280px) {
  .categories-partial .advantages ul{
    flex-wrap: nowrap;
    max-width: none;
  }
}
.categories-partial .advantages ul li{
  text-align: center;
}
@media (min-width: 768px) {
  .categories-partial .advantages ul li {
    width: calc(100% / var(--columns) - var(--gap));
  }
}
@media (min-width: 1280px) {
  .categories-partial .advantages ul li{
    flex: 1 1;
  }
}
.categories-partial .advantages ul li h4{
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.categories-partial .advantages ul li h4::after {
  content: ":";
}
.categories-partial .cards{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .categories-partial .cards{
  gap: 8px;
}
.categories-partial .cards{
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .categories-partial .cards{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .cards{
    padding-left: 32px;
    padding-right: 32px;
  }
  .categories-partial .cards.cards-4-col{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 640px) {
  .categories-partial .cards.cards-list{
    row-gap: 40px;
  }
}
.categories-partial .cards.cards-list h4{
  display: inline-block;
}
.categories-partial .cards.cards-list h4.large-title{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 1.2rem;
}
.categories-partial .cards.cards-list li::marker{
  font-weight: 700;
}
@media (min-width: 640px) {
  .categories-partial .cards{
    display: grid;
  }
.shop_by_style .grid-layout .categories-partial .cards{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .categories-partial .cards{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .categories-partial .cards{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .categories-partial .cards{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .categories-partial .cards .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .categories-partial .cards .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .categories-partial .cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.categories-partial .cards p:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .cards .card{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-radius: 4px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.categories-partial .cards .card > h3{
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.categories-partial .benefits{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .categories-partial .benefits{
  gap: 8px;
}
.categories-partial .benefits{
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .categories-partial .benefits{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .benefits{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .categories-partial .benefits{
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .benefits{
    display: grid;
  }
.shop_by_style .grid-layout .categories-partial .benefits{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .categories-partial .benefits{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .categories-partial .benefits{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .categories-partial .benefits{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .categories-partial .benefits .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .categories-partial .benefits .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .categories-partial .benefits{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .categories-partial .benefits .description{
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .categories-partial .benefits .description{
    grid-column: span 1 / span 1;
  }
}
.categories-partial .benefits .description h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.categories-partial .benefits .description p:not(:last-child){
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .categories-partial .benefits .list{
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  .categories-partial .benefits .list{
    grid-column: span 2 / span 2;
  }
}
.categories-partial .benefits .list h4{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.categories-partial .benefits .list ol{
  padding-left: 16px;
  list-style-type: decimal;
  list-style-position: outside;
}
.categories-partial .benefits .list ul{
  padding-left: 16px;
  list-style-type: disc;
  list-style-position: outside;
}
.categories-partial .benefits .list li strong{
  font-weight: 500;
}
.categories-partial .benefits .list li:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .benefits .list li::marker{
  font-weight: 700;
}
.categories-partial .purchase-process{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .categories-partial .purchase-process{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .purchase-process{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .purchase-process > h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}
.categories-partial .purchase-process p{
  text-align: center;
}
.categories-partial .purchase-process p:not(:last-child){
  margin-bottom: 16px;
}
.categories-partial .purchase-process ol{
  margin-top: 48px;
  list-style-type: none;
  display: flex;
}
.filters__dropdown-apply .categories-partial .purchase-process ol{
  gap: 8px;
}
.categories-partial .purchase-process ol{
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  counter-reset: list-item;
}
@media (min-width: 768px) {
  .categories-partial .purchase-process ol{
    display: grid;
  }
.shop_by_style .grid-layout .categories-partial .purchase-process ol{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout .categories-partial .purchase-process ol{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout .categories-partial .purchase-process ol{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .categories-partial .purchase-process ol{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout .categories-partial .purchase-process ol .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout .categories-partial .purchase-process ol .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  .categories-partial .purchase-process ol{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .categories-partial .purchase-process ol{
    display: flex;
  }
.filters__dropdown-apply .categories-partial .purchase-process ol{
    gap: 8px;
  }
  .categories-partial .purchase-process ol{
    flex-direction: row;
    gap: 32px;
  }
}
.categories-partial .purchase-process ol li{
  display: flex;
}
.filters__dropdown-apply .categories-partial .purchase-process ol li{
  gap: 8px;
}
.categories-partial .purchase-process ol li{
  flex-direction: column;
  text-align: center;
  gap: 8px;
  font-weight: 500;
  counter-increment: list-item;
}
@media (min-width: 1024px) {
  .categories-partial .purchase-process ol li{
    flex: 1 1;
  }
}
.categories-partial .purchase-process ol li::before{
  border-radius: 9999px;
  min-width: 36px;
  min-height: 36px;
  padding: 5px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity));
  text-align: center;
  font-family: sans-serif;
  font-size: 18px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(102 102 102 / var(--tw-border-opacity));
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  content: counter(list-item);
}
.categories-partial .purchase-process ol + p{
  font-weight: 400;
}
.categories-partial .dark-content{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
}
.categories-partial .dark-content .dark-content-inner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .categories-partial .dark-content .dark-content-inner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .categories-partial .dark-content .dark-content-inner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.categories-partial .dark-content .dark-content-inner h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.categories-partial .dark-content .dark-content-inner p:not(:last-child){
  margin-bottom: 16px;
}
.suggested-products{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.suggested-products h2{
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 16px;
}
.suggested-products .product-grid{
  margin-top: 32px;
  display: grid;
}
.shop_by_style .grid-layout .suggested-products .product-grid{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout .suggested-products .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout .suggested-products .product-grid{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout .suggested-products .product-grid{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout .suggested-products .product-grid .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout .suggested-products .product-grid .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
.suggested-products .product-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px){
  .suggested-products .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.suggested-products .product-grid{
  gap: 24px;
}
.suggested-products .product-tile{
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
}
.product-sticker{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-sticker.thumb{
  max-height: 300px;
  max-width: 300px;
}
.product-sticker.very_small{
  max-height: 60px;
  max-width: 60px;
}
.product-sticker.small{
  max-height: 90px;
  max-width: 90px;
}
.product-sticker.medium{
  max-height: 120px;
  max-width: 120px;
}
.product-sticker.large{
  max-height: 150px;
  max-width: 150px;
}
.product-sticker.very_large{
  max-height: 180px;
  max-width: 180px;
}
.product-sticker.huge{
  max-height: 210px;
  max-width: 210px;
}
article.contact-requests{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.contact-requests{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.contact-requests{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.contact-requests > h2{
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}
article.contact-requests p{
  text-align: center;
}
article.contact-requests p + .btn-primary{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
article.contact-requests .ottopay{
  display: flex;
}
.filters__dropdown-apply article.contact-requests .ottopay{
  gap: 8px;
}
article.contact-requests .ottopay{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  article.contact-requests .ottopay{
    flex-direction: row;
    gap: 32px;
  }
}
article.contact-requests .ottopay .ottopay-description h3{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
}
article.contact-requests .contact-container{
  display: flex;
}
.filters__dropdown-apply article.contact-requests .contact-container{
  gap: 8px;
}
article.contact-requests .contact-container{
  flex-direction: column;
}
@media (min-width: 1024px) {
  article.contact-requests .contact-container{
    flex-direction: row;
    gap: 30px;
  }
}
article.contact-requests .contact-container form.new_contact_request{
  flex: 1 1;
}
article.contact-requests .contact-container form.new_contact_request .contact-methods{
  display: contents;
}
@media (min-width: 768px) {
  article.contact-requests .contact-container form.new_contact_request .contact-methods{
    display: flex;
  }
.filters__dropdown-apply article.contact-requests .contact-container form.new_contact_request .contact-methods{
    gap: 8px;
  }
  article.contact-requests .contact-container form.new_contact_request .contact-methods{
    gap: 30px;
  }
  article.contact-requests .contact-container form.new_contact_request .contact-methods .field{
    flex: 1 1;
  }
}
article.contact-requests .contact-container .contact-information{
  padding-top: 36px;
  width: 100%;
}
@media (min-width: 1024px) {
  article.contact-requests .contact-container .contact-information{
    max-width: 350px;
  }
}
article.contact-requests .contact-container .contact-information h3{
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
article.contact-requests .contact-container .contact-information h3:not(:first-child){
  margin-top: 36px;
}
article.contact-requests .contact-container .contact-information .btn-primary{
  display: block;
  margin-top: 16px;
}
article.contact-requests .recaptcha{
  margin-top: 16px;
  width: 100%;
}
article.home-page{
  padding-bottom: 80px;
}
article.locations-index{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.locations-index{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.locations-index{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.locations-index a{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
article.locations-index .phone-link{
  --tw-text-opacity: 1 !important;
  color: rgb(239 68 68 / var(--tw-text-opacity)) !important;
}
@media (min-width: 640px) {
  article.locations-index form.search-form{
    display: flex;
  }
.filters__dropdown-apply article.locations-index form.search-form{
    gap: 8px;
  }
  article.locations-index form.search-form{
    flex-direction: row;
    gap: 16px;
    align-items: flex-end;
  }
  article.locations-index form.search-form .input{
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
article.locations-index ul.locations-list{
  display: flex;
}
.filters__dropdown-apply article.locations-index ul.locations-list{
  gap: 8px;
}
article.locations-index ul.locations-list{
  flex-direction: column;
  scrollbar-color: #e0e0e0 transparent;
  scrollbar-width: thin;
}
article.locations-index ul.locations-list::-webkit-scrollbar {
  all: unset;
}
article.locations-index ul.locations-list::-webkit-scrollbar-track {
  background: none;
}
article.locations-index ul.locations-list::-webkit-scrollbar {
  background: none;
  width: 14px;
}
article.locations-index ul.locations-list::-webkit-scrollbar-thumb {
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 87px;
  background-color: #e0e0e0;
}
article.locations-index ul.locations-list li{
  padding-top: 8px;
  padding-bottom: 8px;
}
article.locations-index ul.locations-list li h2{
  text-transform: uppercase;
}
article.locations-index .autocomplete-results{
  position: absolute;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  margin-top: 4px;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  z-index: 10;
}
article.locations-index .autocomplete-results:empty{
  border-style: none;
}
article.locations-show{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.locations-show{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.locations-show{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.locations-show .location-links a{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
article.locations-show .learn-more-actions{
  display: flex;
}
.filters__dropdown-apply article.locations-show .learn-more-actions{
  gap: 8px;
}
article.locations-show .learn-more-actions{
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  article.locations-show .learn-more-actions{
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  article.locations-show .learn-more-actions{
    gap: 30px;
    max-width: 45.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
article.locations-show .learn-more-actions .btn-primary{
  text-transform: uppercase;
  font-weight: 500;
  flex: 1 1;
}
article.locations-show .about-rent-one{
  display: flex;
}
.filters__dropdown-apply article.locations-show .about-rent-one{
  gap: 8px;
}
article.locations-show .about-rent-one{
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  article.locations-show .about-rent-one{
    flex-direction: row;
  }
  article.locations-show .about-rent-one .about-rent-one-content{
    flex: 1 1;
  }
  article.locations-show .about-rent-one .shop-by-category{
    flex: 1 1;
  }
}
article.locations-show .about-rent-one .shop-by-category h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
article.locations-show .about-rent-one .shop-by-category .category-options{
  display: grid;
}
.shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.locations-show .about-rent-one .shop-by-category .category-options .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.locations-show .about-rent-one .shop-by-category .category-options{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 576px) {
  article.locations-show .about-rent-one .shop-by-category .category-options{
    display: flex;
  }
.filters__dropdown-apply article.locations-show .about-rent-one .shop-by-category .category-options{
    gap: 8px;
  }
}
article.locations-show .about-rent-one .shop-by-category .category-options a{
  display: flex;
}
.filters__dropdown-apply article.locations-show .about-rent-one .shop-by-category .category-options a{
  gap: 8px;
}
article.locations-show .about-rent-one .shop-by-category .category-options a{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(232 227 227 / var(--tw-bg-opacity));
  border-radius: 9999px;
  padding: 8px;
  text-align: center;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  aspect-ratio: 1/1;
}
article.locations-show .about-rent-one .shop-by-category .category-options a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
}
article.locations-show .shop-by-room{
  margin-bottom: 60px;
}
article.locations-show .shop-by-room h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}
article.locations-show .shop-by-room .room-options{
  display: grid;
}
.shop_by_style .grid-layout article.locations-show .shop-by-room .room-options{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.locations-show .shop-by-room .room-options{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.locations-show .shop-by-room .room-options{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.locations-show .shop-by-room .room-options{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.locations-show .shop-by-room .room-options .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.locations-show .shop-by-room .room-options .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.locations-show .shop-by-room .room-options{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  article.locations-show .shop-by-room .room-options{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  article.locations-show .shop-by-room .room-options{
    display: flex;
  }
.filters__dropdown-apply article.locations-show .shop-by-room .room-options{
    gap: 8px;
  }
  article.locations-show .shop-by-room .room-options{
    flex-direction: row;
  }
}
article.locations-show .shop-by-room .room-options a{
  display: flex;
}
.filters__dropdown-apply article.locations-show .shop-by-room .room-options a{
  gap: 8px;
}
article.locations-show .shop-by-room .room-options a{
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
article.locations-show .shop-by-room .room-options a img{
  width: 100%;
}
article.locations-show .shop-by-room .room-options a span{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  article.locations-show .shop-by-room .room-options a{
    flex: 1 1;
  }
}
article.locations-show-ordering-online{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: flex;
}
.filters__dropdown-apply article.locations-show-ordering-online{
  gap: 8px;
}
article.locations-show-ordering-online{
  flex-direction: column;
}
@media (min-width: 768px) {
  article.locations-show-ordering-online{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.locations-show-ordering-online{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 640px) {
  article.locations-show-ordering-online{
    display: grid;
  }
.shop_by_style .grid-layout article.locations-show-ordering-online{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.locations-show-ordering-online{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.locations-show-ordering-online{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.locations-show-ordering-online{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.locations-show-ordering-online .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.locations-show-ordering-online .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.locations-show-ordering-online{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    grid-template-areas: "image main" "footer footer";
  }
}
@media (min-width: 768px) {
  article.locations-show-ordering-online {
    grid-template-areas: "image main" "image footer";
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 1024px) {
  article.locations-show-ordering-online{
    gap: 32px;
    grid-template-columns: 41.75% auto;
  }
}
article.locations-show-ordering-online .image-wrapper {
  grid-area: image;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  article.locations-show-ordering-online .image-wrapper{
    min-height: 0px;
    margin-bottom: 0px;
    position: relative;
  }
  article.locations-show-ordering-online .image-wrapper img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1024px) {
  article.locations-show-ordering-online .image-wrapper img{
    position: static;
  }
}
article.locations-show-ordering-online .main-content {
  grid-area: main;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  article.locations-show-ordering-online .main-content{
    margin-bottom: 0px;
  }
}
article.locations-show-ordering-online .main-content h3{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
article.locations-show-ordering-online .main-content ol{
  list-style-type: decimal;
  list-style-position: inside;
}
article.locations-show-ordering-online .main-content ol > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
article.locations-show-ordering-online .footer-content {
  grid-area: footer;
}
article.locations-show-ordering-online .footer-content h4{
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  article.locations-show-ordering-online .footer-content{
    margin-top: 60px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  article.locations-show-ordering-online .footer-content{
    text-align: left;
  }
}
article.shop-orders-new{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.shop-orders-new{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.shop-orders-new{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.shop-orders-new a{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
article.shop-orders-new a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
article.shop-orders-new p.approved{
  text-align: center;
  margin-bottom: 16px;
}
article.shop-orders-new p.shipping-notice{
  text-align: center;
  margin-bottom: 16px;
  font-size: 0.688rem;
  line-height: 1rem;
  font-style: italic;
  font-weight: 700;
}
article.shop-orders-new .new_order .form-container{
  display: flex;
}
.filters__dropdown-apply article.shop-orders-new .new_order .form-container{
  gap: 8px;
}
article.shop-orders-new .new_order .form-container{
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  article.shop-orders-new .new_order .form-container{
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  article.shop-orders-new .new_order .form-container{
    gap: 125px;
  }
}
article.shop-orders-new .new_order .form-container .delivery-fields h2{
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  text-align: left;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  article.shop-orders-new .new_order .form-container .delivery-fields{
    flex: 1 1;
  }
}
@media (min-width: 1024px) {
  article.shop-orders-new .new_order .form-container .delivery-fields{
    flex-grow: 1;
  }
}
article.shop-orders-new .new_order .form-container .payment-fields{
  margin-top: 30px;
  padding-top: 30px;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(239 238 231 / var(--tw-border-opacity));
}
@media (min-width: 768px) {
  article.shop-orders-new .new_order .form-container .payment-fields{
    margin-top: 0px;
    padding-top: 0px;
    border-style: none;
  }
}
article.shop-orders-new .new_order .form-container .payment-fields h2{
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  article.shop-orders-new .new_order .form-container .payment-fields{
    flex: 1 1;
    max-width: 350px;
  }
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals{
  display: flex;
}
.filters__dropdown-apply article.shop-orders-new .new_order .form-container .payment-fields .payment-totals{
  gap: 8px;
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals{
  flex-direction: column;
  margin-bottom: 60px;
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item{
  font-weight: 500;
  display: flex;
}
.filters__dropdown-apply article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item{
  gap: 8px;
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item{
  justify-content: space-between;
  align-items: center;
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item.total{
  padding-top: 16px;
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  text-transform: uppercase;
  font-weight: 600;
}
article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item.promo, article.shop-orders-new .new_order .form-container .payment-fields .payment-totals .line-item.waived{
  --tw-text-opacity: 1;
  color: rgb(40 167 69 / var(--tw-text-opacity));
}
article.shop-orders-new .new_order .form-container .payment-fields .secure-icons{
  display: flex;
}
.filters__dropdown-apply article.shop-orders-new .new_order .form-container .payment-fields .secure-icons{
  gap: 8px;
}
article.shop-orders-new .new_order .form-container .payment-fields .secure-icons{
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
}
article.shop-orders-new .new_order .form-container .payment-fields .secure-icons .secure{
  max-width: 140px;
}
article.shop-orders-new .new_order .form-container .payment-fields .secure-icons .credit-card-icons{
  max-width: 180px;
}
article.shop-orders-new .new_order .form-container .payment-fields .recaptcha-v2{
  margin-top: 60px;
}
article.shop-orders-new .new_order .form-container .field {
  gap: 0px !important;
}
article.shop-orders-new .new_order .form-container .field:not(:last-child){
  margin-bottom: 16px;
}
article.shop-orders-new .new_order .form-container .field .label{
  order: 2;
  font-size: 0.8rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  margin-bottom: 0px;
}
article.shop-orders-new .new_order .form-container .field .input{
  display: contents;
}
article.shop-orders-new .new_order .form-container .field input{
  order: 1;
}
article.shop-orders-new .new_order .form-container .field .hint{
  order: 3;
  font-size: 0.625rem;
  line-height: 0.813rem;
  --tw-text-opacity: 1;
  color: rgb(143 143 143 / var(--tw-text-opacity));
  font-weight: 100;
  font-style: italic;
}
article.shop-orders-new .new_order .form-container .field .error{
  order: 4;
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement.error{
  --tw-text-opacity: 1;
  color: rgb(220 53 69 / var(--tw-text-opacity));
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
  display: grid;
}
.shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "input label" ". error";
  grid-template-columns: auto 1fr;
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label .label-text{
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  grid-area: label;
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label input[type=checkbox]{
  margin-top: 0.125rem;
  grid-area: input;
}
article.shop-orders-new .new_order .form-container .field.order_terms_and_conditions_agreement > label .error{
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 4px;
  grid-area: error;
}
article.shop-orders-new .new_order .form-container .same-as-delivery{
  font-weight: 600;
  display: block;
  display: flex;
}
.filters__dropdown-apply article.shop-orders-new .new_order .form-container .same-as-delivery{
  gap: 8px;
}
article.shop-orders-new .new_order .form-container .same-as-delivery{
  align-items: center;
}
article.shop-orders-new .new_order .form-container .same-as-delivery label{
  display: block;
  padding-left: 8px;
}
article.shop-orders-new .new_order .form-container .form-actions input[type=submit]:disabled{
  opacity: 0.5;
}
article.order-complete{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  article.order-complete{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.order-complete{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.products-show{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  article.products-show{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.products-show{
    padding-left: 32px;
    padding-right: 32px;
  }
  article.products-show .product-details{
    display: grid;
  }
.shop_by_style .grid-layout article.products-show .product-details{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.products-show .product-details{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.products-show .product-details{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.products-show .product-details{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.products-show .product-details .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.products-show .product-details .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.products-show .product-details{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
}
article.products-show .product-details .favorite-button-container{
  margin-top: 8px;
}
article.products-show .swiper{
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  article.products-show .swiper{
    width: 330px;
  }
}
@media (min-width: 1024px) {
  article.products-show .swiper{
    width: 450px;
  }
}
article.products-show .swiper .product-image{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
article.products-show .weak{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
article.products-show .old{
  --tw-text-opacity: 1 !important;
  color: rgb(156 163 175 / var(--tw-text-opacity)) !important;
  text-decoration-line: line-through;
}
article.products-show .bg-pill-blue{
  line-height: .75rem;
}
article.products-show div[role=tablist]{
  display: flex;
}
.filters__dropdown-apply article.products-show div[role=tablist]{
  gap: 8px;
}
article.products-show div[role=tablist]{
  justify-content: space-around;
  flex-wrap: wrap;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 8px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: #cbcbcb;
}
article.products-show div[role=tablist] [aria-selected=true]{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  background-color: white;
}
article.products-show div[role=tablist] button{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  text-align: center;
  margin: auto;
  width: 33.333333%;
  font-size: clamp(0.5rem, 4vw, 1rem);
  padding: clamp(0.1rem, 4vw, 2rem) 0;
}
@media (min-width: 768px) {
  article.products-show div[role=tablist] button {
    font-size: clamp(1.5rem, 4vw, 1rem);
    padding: 0.5rem 0;
  }
}
article.products-show div[role=tablist] button > div{
  width: -moz-min-content;
  width: min-content;
  margin: auto;
}
@media (min-width: 768px) {
  article.products-show div[role=tablist] button > div{
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 8px;
  }
}
article.products-show .term-strike {
  position: relative;
}
article.products-show .term-strike::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -2px;
  width: 140%;
  height: 3px;
  background-color: rgba(158, 158, 158, 0.9333333333);
  transform: rotate(35deg);
  transform-origin: center;
}
article.products-show .sale-payments{
  --tw-text-opacity: 1;
  color: rgb(221 68 119 / var(--tw-text-opacity));
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
article.products-show .new-price-label{
  --tw-text-opacity: 1;
  color: rgb(221 68 119 / var(--tw-text-opacity));
  font-weight: 700;
}
article.products-show .price-details{
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  article.products-show .price-details{
    text-align: right;
  }
}
article.products-show .price-details .price-amount{
  --tw-text-opacity: 1;
  color: rgb(221 68 119 / var(--tw-text-opacity));
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}
article.products-show .add-to-cart{
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
article.products-show .description{
  margin-top: 16px;
  margin-bottom: 32px;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.promotion-images{
  margin-bottom: 32px;
}
.promotion-images .promotion-images-carousel{
  width: 100%;
}
.promotion-images .promotion-images-carousel img{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promotion-images .promotion-images-carousel .swiper-pagination{
  margin-top: 16px;
  position: static;
}
article.referrals{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.referrals{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.referrals{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.referrals .promo-input-button-wrapper{
  display: flex;
}
.filters__dropdown-apply article.referrals .promo-input-button-wrapper{
  gap: 8px;
}
article.referrals .promo-input-button-wrapper{
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}
@media (min-width: 768px) {
  article.referrals .promo-input-button-wrapper{
    flex-direction: row;
    width: 50%;
  }
}
article.referrals .promo-input-button-wrapper .promo-input-container{
  width: 100%;
}
@media (min-width: 768px) {
  article.referrals .promo-input-button-wrapper .promo-input-container{
    width: 100%;
  }
}
article.referrals .promo-input-button-wrapper .promo-input-container .promo-input{
  width: 100%;
  height: 64px;
  padding: 8px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  text-align: center;
  font-size: 2rem;
}
article.referrals .promo-input-button-wrapper .promo-button-container{
  width: 100%;
  display: flex;
}
.filters__dropdown-apply article.referrals .promo-input-button-wrapper .promo-button-container{
  gap: 8px;
}
article.referrals .promo-input-button-wrapper .promo-button-container{
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
@media (min-width: 768px) {
  article.referrals .promo-input-button-wrapper .promo-button-container{
    width: 33.333333%;
    margin-top: 0px;
  }
}
article.referrals .promo-input-button-wrapper .promo-button-container .btn-custom-submit{
  height: 64px;
  width: 100%;
  padding-top: 16px;
}
article.register-to-win-entries{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.register-to-win-entries{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.register-to-win-entries{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.rental-applications{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.rental-applications{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.rental-applications{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.rental-applications h2{
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 24px;
}
article.rental-applications .signature-pad{
  margin-top: 24px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  border-radius: 0.375rem;
  padding: 16px;
}
article.rental-applications .signature-pad section{
  margin-bottom: 16px;
}
article.rental-applications .signature-pad section > h3{
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
article.rental-applications .signature-pad section > p{
  font-size: 0.9rem;
  margin-top: 16px;
}
article.rental-applications .signature-pad section > p > strong{
  font-size: 0.9rem;
  font-weight: 500;
}
article.rental-applications .signature-pad section > fieldset{
  border-style: none;
  padding: 0px;
  margin: 0px;
}
article.reviews{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  article.reviews{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.reviews{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.reviews > h1 + p{
  text-align: center;
}
article.reviews .states{
  margin-top: 16px;
  display: flex;
}
.filters__dropdown-apply article.reviews .states{
  gap: 8px;
}
article.reviews .states{
  flex-direction: column;
  gap: 60px;
}
article.reviews .states .state > h2{
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  margin-bottom: 16px;
}
article.reviews .states .state .locations{
  display: flex;
}
.filters__dropdown-apply article.reviews .states .state .locations{
  gap: 8px;
}
article.reviews .states .state .locations{
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  article.reviews .states .state .locations{
    display: grid;
  }
.shop_by_style .grid-layout article.reviews .states .state .locations{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.reviews .states .state .locations{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.reviews .states .state .locations{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.reviews .states .state .locations{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.reviews .states .state .locations .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.reviews .states .state .locations .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.reviews .states .state .locations{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (min-width: 1024px) {
  article.reviews .states .state .locations{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  article.reviews .states .state .locations{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 44px;
         column-gap: 44px;
  }
}
article.reviews .states .state .locations .location h3{
  font-family: "Open Sans", sans-serif;
}
article.reviews .states .state .locations .location .location-links{
  display: flex;
}
.filters__dropdown-apply article.reviews .states .state .locations .location .location-links{
  gap: 8px;
}
article.reviews .states .state .locations .location .location-links{
  flex-direction: row;
  gap: 8px;
}
article.reviews .states .state .locations .location .location-links a{
  font-size: 0.875rem;
  display: block;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  font-weight: 500;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  flex: 1 1;
  text-align: center;
  transition: all 150ms ease-in-out;
}
@media (min-width: 1024px) {
  article.reviews .states .state .locations .location .location-links a{
    flex: none;
  }
}
article.reviews .states .state .locations .location .location-links a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
article.search-index{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  article.search-index{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.search-index{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.search-index > h2{
  text-align: center;
}
article.search-index .products-layout{
  display: flex;
}
.filters__dropdown-apply article.search-index .products-layout{
  gap: 8px;
}
article.search-index .products-layout{
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  article.search-index .products-layout{
    flex-direction: row;
    margin-top: 60px;
  }
}
article.search-index .products-layout .filter form{
  display: flex;
}
.filters__dropdown-apply article.search-index .products-layout .filter form{
  gap: 8px;
}
article.search-index .products-layout .filter form{
  flex-direction: column;
  gap: 8px;
}
article.search-index .products-layout .no-results{
  flex-grow: 1;
  text-align: center;
}
article.search-index .products-layout .no-results h3{
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
}
article.search-index .products-layout .no-results h3 + p{
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
article.search-index .products-layout .search-products{
  flex-grow: 1;
  position: relative;
  display: grid;
}
.shop_by_style .grid-layout article.search-index .products-layout .search-products{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.search-index .products-layout .search-products{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.search-index .products-layout .search-products{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.search-index .products-layout .search-products{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.search-index .products-layout .search-products .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.search-index .products-layout .search-products .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.search-index .products-layout .search-products{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  article.search-index .products-layout .search-products{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  article.search-index .products-layout .search-products{
    gap: 28px;
  }
}
article.search-index .products-layout .search-products .infinite-scroll-spinner{
  position: absolute;
  display: flex;
}
.filters__dropdown-apply article.search-index .products-layout .search-products .infinite-scroll-spinner{
  gap: 8px;
}
article.search-index .products-layout .search-products .infinite-scroll-spinner{
  align-items: center;
  justify-content: center;
  left: 0px;
  right: 0px;
  bottom: -28px;
}
article.about-us{
  padding-top: 16px;
}
article.about-us .about-top{
  display: flex;
}
.filters__dropdown-apply article.about-us .about-top{
  gap: 8px;
}
article.about-us .about-top{
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(213 7 65 / var(--tw-bg-opacity));
}
@media (min-width: 768px) {
  article.about-us .about-top{
    flex-direction: row;
  }
  article.about-us .about-top .image-wrapper{
    position: relative;
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-top .image-wrapper{
    min-width: 66.66%;
    max-width: 66.66%;
  }
}
@media (min-width: 768px) {
  article.about-us .about-top .image-wrapper img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-top .image-wrapper img{
    position: static;
  }
}
article.about-us .about-top .text-wrapper{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  article.about-us .about-top .text-wrapper{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-top .text-wrapper{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.about-us .about-top .text-wrapper{
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-top .text-wrapper{
    min-width: 33.33%;
    max-width: 33.33%;
    padding-left: 64px;
    padding-right: 64px;
  }
}
article.about-us .about-top .text-wrapper h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
article.about-us .about-top .text-wrapper p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
article.about-us .about-top .text-wrapper p:not(:last-child){
  margin-bottom: 16px;
}
article.about-us .about-bottom{
  display: flex;
}
.filters__dropdown-apply article.about-us .about-bottom{
  gap: 8px;
}
article.about-us .about-bottom{
  flex-direction: column;
}
@media (min-width: 768px) {
  article.about-us .about-bottom{
    flex-direction: row;
  }
}
article.about-us .about-bottom .what-we-strive-for{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.about-us .about-bottom .what-we-strive-for{
  gap: 8px;
}
article.about-us .about-bottom .what-we-strive-for{
  flex-direction: column;
  gap: 32px;
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  article.about-us .about-bottom .what-we-strive-for{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-bottom .what-we-strive-for{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.about-us .about-bottom .what-we-strive-for{
    min-width: 50%;
    max-width: 50%;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-bottom .what-we-strive-for{
    padding-left: 64px;
    padding-right: 64px;
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  article.about-us .about-bottom .what-we-strive-for{
    gap: 56px;
  }
}
article.about-us .about-bottom .what-we-strive-for .image-wrapper img{
  min-width: 100px;
  max-width: 100px;
}
article.about-us .about-bottom .what-we-strive-for h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
article.about-us .about-bottom .what-we-strive-for p{
  font-size: 0.875rem;
}
article.about-us .about-bottom .what-we-strive-for p:not(:last-child){
  margin-bottom: 16px;
}
article.about-us .about-bottom .get-to-know-us{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-bg-opacity: 1;
  background-color: rgb(62 62 62 / var(--tw-bg-opacity));
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.filters__dropdown-apply article.about-us .about-bottom .get-to-know-us{
  gap: 8px;
}
article.about-us .about-bottom .get-to-know-us{
  flex-direction: column;
  align-items: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
}
@media (min-width: 768px) {
  article.about-us .about-bottom .get-to-know-us{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-bottom .get-to-know-us{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.about-us .about-bottom .get-to-know-us{
    min-width: 50%;
    max-width: 50%;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  article.about-us .about-bottom .get-to-know-us{
    padding-left: 64px;
    padding-right: 64px;
  }
}
article.about-us .about-bottom .get-to-know-us h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
article.about-us .about-bottom .get-to-know-us h2 span{
  --tw-text-opacity: 1;
  color: rgb(58 157 243 / var(--tw-text-opacity));
}
article.about-us .about-bottom .get-to-know-us .cta-links{
  display: flex;
}
.filters__dropdown-apply article.about-us .about-bottom .get-to-know-us .cta-links{
  gap: 8px;
}
article.about-us .about-bottom .get-to-know-us .cta-links{
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}
@media (min-width: 768px) {
  article.about-us .about-bottom .get-to-know-us .cta-links{
    display: grid;
  }
.shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.about-us .about-bottom .get-to-know-us .cta-links .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.about-us .about-bottom .get-to-know-us .cta-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
article.about-us .about-bottom .get-to-know-us .cta-links a{
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  padding: 19px;
  width: 100%;
}
article.about-us .about-bottom .get-to-know-us .cta-links a:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  article.about-us .about-bottom .get-to-know-us .cta-links a{
    padding: 19px;
  }
}
article.about-us .about-bottom .get-to-know-us .cta-links a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity));
}
@media (min-width: 768px) {
  article.about-us .about-bottom .get-to-know-us .cta-links a{
    flex: 1 1;
  }
}
.birthday-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .birthday-content{
  gap: 8px;
}
.birthday-content{
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .birthday-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .birthday-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.birthday-content .lets-celebrate{
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
}
.birthday-content .happy-birthday{
  font-family: "Dancing Script", cursive;
  font-size: 2.325rem;
  --tw-text-opacity: 1;
  color: rgb(0 69 124 / var(--tw-text-opacity));
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
}
article.careplus{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  article.careplus{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.careplus{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.careplus h2{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 48px;
}
article.careplus h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-top: 16px;
}
article.careplus .benefits h2{
  margin-top: 24px;
}
article.careplus .benefits > div{
  margin-top: 24px;
}
article.careplus .benefits > div > h3{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
article.careplus .benefits > div h3{
  margin: 0px;
}
@media (min-width: 768px) {
  article.careplus .benefits > div{
    display: grid;
  }
.shop_by_style .grid-layout article.careplus .benefits > div{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.careplus .benefits > div{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.careplus .benefits > div{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.careplus .benefits > div{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.careplus .benefits > div .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.careplus .benefits > div .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.careplus .benefits > div{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    grid-auto-flow: row dense;
  }
  article.careplus .benefits > div p{
    grid-column: span 2 / span 2;
  }
}
article.careplus .wellness h3{
  text-transform: uppercase;
}
article.careplus .wellness > div{
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
article.careplus .wellness > div:nth-child(odd){
  flex-direction: row-reverse;
}
article.careplus .wellness img{
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (min-width: 768px) {
  article.careplus .wellness{
    padding-left: 6rem;
    padding-right: 6rem;
  }
  article.careplus .wellness h2{
    margin-bottom: 32px;
  }
  article.careplus .wellness > div{
    margin-top: 0px;
    display: flex;
  }
.filters__dropdown-apply article.careplus .wellness > div{
    gap: 8px;
  }
  article.careplus .wellness > div{
    gap: 16px;
  }
  article.careplus .wellness > div img{
    width: 255px;
  }
  article.careplus .wellness > div div{
    margin: auto;
  }
}
article.careplus .additional{
  text-align: center;
}
article.careplus .additional h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
article.careplus .additional .wrapper{
  margin-top: 16px;
}
article.careplus .additional .wrapper > div{
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  article.careplus .additional .wrapper{
    display: grid;
  }
.shop_by_style .grid-layout article.careplus .additional .wrapper{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.careplus .additional .wrapper{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.careplus .additional .wrapper{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.careplus .additional .wrapper{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.careplus .additional .wrapper .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.careplus .additional .wrapper .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.careplus .additional .wrapper{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
article.careplus .join-today{
  display: flex;
}
.filters__dropdown-apply article.careplus .join-today{
  gap: 8px;
}
article.careplus .join-today{
  flex-direction: column;
  text-align: center;
}
article.careplus .join-today h2{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
article.careplus .join-today a.btn, body.deep-portal .main-wrapper > main article.careplus .join-today .simple_form:not(.button_to) .insertable-fields .delete-container a.delete-label, body.deep-portal .main-wrapper > main article.careplus .simple_form:not(.button_to) .insertable-fields .delete-container .join-today a.delete-label{
  margin-top: 32px;
  max-width: 277px;
  margin-left: auto;
  margin-right: auto;
}
article.careplus .join-today a.btn:hover, body.deep-portal .main-wrapper > main article.careplus .join-today .simple_form:not(.button_to) .insertable-fields .delete-container a.delete-label:hover, body.deep-portal .main-wrapper > main article.careplus .simple_form:not(.button_to) .insertable-fields .delete-container .join-today a.delete-label:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
article.careplus .join-today a{
  margin-top: 32px;
}
article.careplus .join-today a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
article.careplus .join-today .state-restrictions{
  margin-top: 32px;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-style: italic;
  text-align: left;
}
article.community .community-banner{
  width: 100%;
  margin-top: 60px;
}
article.community .community-banner img{
  width: 100%;
}
article.community .text-with-colored-bg{
  display: flex;
}
.filters__dropdown-apply article.community .text-with-colored-bg{
  gap: 8px;
}
article.community .text-with-colored-bg{
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgb(213 7 65 / var(--tw-bg-opacity));
}
@media (min-width: 768px) {
  article.community .text-with-colored-bg{
    flex-direction: row;
    align-items: flex-start;
    padding-left: 8.333333%;
    padding-right: 8.333333%;
  }
}
article.community .text-with-colored-bg .charities{
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  font-size: 1.8rem;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
}
article.community .text-with-colored-bg .charities strong{
  font-weight: 800;
  font-size: 2.2rem;
}
article.community .text-with-colored-bg .employee-contributions{
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
}
article.community .clickable-banner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.community .clickable-banner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.community .clickable-banner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.community .about-community{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.community .about-community{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.community .about-community{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.community .about-community > h2{
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
}
article.community .about-community > p{
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  article.community .about-community > p{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.community .great-expectation{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.community .great-expectation{
  gap: 8px;
}
article.community .great-expectation{
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.community .great-expectation{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.community .great-expectation{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.community .great-expectation{
    flex-direction: row;
    align-items: flex-start;
  }
}
article.community .great-expectation .cta-container{
  display: flex;
}
.filters__dropdown-apply article.community .great-expectation .cta-container{
  gap: 8px;
}
article.community .great-expectation .cta-container{
  flex-direction: column;
  flex: 1 1;
}
article.community .great-expectation .text-container{
  flex: 1 1;
}
article.community .great-expectation .text-container > h2{
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
article.community .great-expectation .text-container p:not(:last-child){
  margin-bottom: 16px;
}
article.community .help{
  --tw-bg-opacity: 1;
  background-color: rgb(150 216 251 / var(--tw-bg-opacity));
}
article.community .help .text-container{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.community .help .text-container{
  gap: 8px;
}
article.community .help .text-container{
  flex-direction: column;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  article.community .help .text-container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.community .help .text-container{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.community .help .text-container{
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}
article.community .help .text-container h2{
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
}
article.community .help .text-container p{
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  article.community .help .text-container p{
    padding-right: 16px;
  }
}
article.community .help .text-container .btn-primary-lrg{
  --tw-bg-opacity: 1;
  background-color: rgb(2 154 223 / var(--tw-bg-opacity));
}
article.products-show article.community .help .text-container .btn-primary-lrg{
  line-height: .75rem;
}
article.community .help .text-container .btn-primary-lrg{
  white-space: nowrap;
}
article.community .help .text-container .btn-primary-lrg:hover:not(:disabled){
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(0 105 217 / var(--tw-border-opacity));
}
@media (min-width: 1024px) {
  article.community .help .text-container .btn-primary-lrg{
    min-width: 255px;
    text-align: center;
  }
}
article.disclaimer{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  article.disclaimer{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.disclaimer{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.disclaimer > h1{
  margin-bottom: 60px;
}
article.disclaimer > h2{
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
}
article.disclaimer .disclaimer-content section h2,
article.disclaimer .disclaimer-content section h3{
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
article.disclaimer .disclaimer-content section p{
  margin-bottom: 16px;
}
article.disclosure{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  article.disclosure{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.disclosure{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 640px) {
  article.disclosure{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.disclosure h1{
  text-transform: uppercase;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 68px;
  font-weight: 500;
  line-height: 1.2;
}
article.disclosure p{
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
}
article.disclosure h2{
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.2;
}
article.faqs-index{
  padding-top: 32px;
}
article.faqs-index > h2{
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
}
article.faqs-index .faq-body{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.faqs-index .faq-body{
  gap: 8px;
}
article.faqs-index .faq-body{
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  article.faqs-index .faq-body{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.faqs-index .faq-body{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.faqs-index .faq-body{
    flex-direction: row-reverse;
    gap: 48px;
  }
}
article.faqs-index .faq-body .accordion{
  display: flex;
}
.filters__dropdown-apply article.faqs-index .faq-body .accordion{
  gap: 8px;
}
article.faqs-index .faq-body .accordion{
  flex-direction: column;
}
article.faqs-index .faq-body .accordion .accordion-section header button{
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  position: relative;
  padding-right: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}
article.faqs-index .faq-body .accordion .accordion-section header button::after{
  position: absolute;
  right: 0px;
  content: "+";
}
article.faqs-index .faq-body .accordion .accordion-section header button[aria-expanded=true]::after {
  content: "-";
}
article.faqs-index .faq-body .accordion .accordion-section .accordion-content ul{
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  article.faqs-index .faq-body .accordion .accordion-section .accordion-content ul{
    width: 250px;
  }
}
@media (min-width: 1024px) {
  article.faqs-index .faq-body .accordion .accordion-section .accordion-content ul{
    width: 310px;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}
article.faqs-index .faq-body .accordion .accordion-section .accordion-content ul li a{
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom-width: 1px;
  border-color: ececec;
  color: inherit;
}
article.faqs-index .faq-body .faq-list{
  display: flex;
}
.filters__dropdown-apply article.faqs-index .faq-body .faq-list{
  gap: 8px;
}
article.faqs-index .faq-body .faq-list{
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
article.faqs-index .faq-body .faq-list .faq-list-section:not(:last-child){
  margin-bottom: 60px;
}
article.faqs-index .faq-body .faq-list .faq-list-section h3{
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  margin-bottom: 0px;
}
article.faqs-index .faq-body .faq-list .faq-list-section .faq-item{
  margin-top: 40px;
  position: relative;
}
article.faqs-index .faq-body .faq-list .faq-list-section .faq-item .faq-anchor{
  pointer-events: none;
  width: 100%;
  height: 1px;
  --tw-translate-y: -60px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 1024px) {
  article.faqs-index .faq-body .faq-list .faq-list-section .faq-item .faq-anchor{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
article.faqs-index .faq-body .faq-list .faq-list-section .faq-item h4{
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  font-weight: 500;
  line-height: 2rem;
  text-transform: uppercase;
}
article.faqs-index .faq-body .faq-list .faq-list-section .faq-item p a{
  font-weight: 500;
  color: inherit;
}
.get-to-know{
  --tw-bg-opacity: 1;
  background-color: rgb(62 62 62 / var(--tw-bg-opacity));
}
.get-to-know .get-to-know-content{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.filters__dropdown-apply .get-to-know .get-to-know-content{
  gap: 8px;
}
.get-to-know .get-to-know-content{
  flex-direction: column;
  align-items: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  text-align: center;
}
@media (min-width: 768px) {
  .get-to-know .get-to-know-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .get-to-know .get-to-know-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.get-to-know .get-to-know-content h3{
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.get-to-know .get-to-know-content h3 span{
  --tw-text-opacity: 1;
  color: rgb(58 157 243 / var(--tw-text-opacity));
}
.get-to-know .get-to-know-content .cta-links{
  display: flex;
}
.filters__dropdown-apply .get-to-know .get-to-know-content .cta-links{
  gap: 8px;
}
.get-to-know .get-to-know-content .cta-links{
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .get-to-know .get-to-know-content .cta-links{
    flex-direction: row;
    gap: 30px;
  }
}
.get-to-know .get-to-know-content .cta-links a{
  display: inline-block;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
  padding: 19px;
  width: 100%;
}
.get-to-know .get-to-know-content .cta-links a:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .get-to-know .get-to-know-content .cta-links a{
    padding: 19px;
  }
}
.get-to-know .get-to-know-content .cta-links a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity));
}
@media (min-width: 768px) {
  .get-to-know .get-to-know-content .cta-links a{
    flex: 1 1;
  }
}
article.infonow{
  padding-top: 16px;
  padding-bottom: 60px;
}
article.infonow .infonow-content{
  display: flex;
}
.filters__dropdown-apply article.infonow .infonow-content{
  gap: 8px;
}
article.infonow .infonow-content{
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.infonow .infonow-content{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    align-items: center;
  }
  @media (min-width: 768px) {
    article.infonow .infonow-content{
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media (min-width: 1024px) {
    article.infonow .infonow-content{
      padding-left: 32px;
      padding-right: 32px;
    }
  }
}
@media (min-width: 1024px) {
  article.infonow .infonow-content{
    gap: 36px;
  }
}
article.infonow .infonow-content .image-wrapper img{
  width: 100%;
}
@media (min-width: 1280px) {
  article.infonow .infonow-content .image-wrapper img{
    min-width: 680px;
  }
}
article.infonow .infonow-content .text-wrapper{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.infonow .infonow-content .text-wrapper{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.infonow .infonow-content .text-wrapper{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.infonow .infonow-content .text-wrapper{
    padding-left: 0px;
    padding-right: 0px;
  }
}
article.infonow .infonow-content .text-wrapper h2{
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
article.infonow .infonow-content .text-wrapper .btn, body.deep-portal .main-wrapper > main article.infonow .infonow-content .text-wrapper .simple_form:not(.button_to) .insertable-fields .delete-container .delete-label, body.deep-portal .main-wrapper > main article.infonow .simple_form:not(.button_to) .insertable-fields .delete-container .infonow-content .text-wrapper .delete-label{
  display: block;
  margin-top: 16px;
}
article.learnmore{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  article.learnmore{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.learnmore{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.learnmore h1{
  text-transform: uppercase;
  font-size: 1.3rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.2;
}
article.learnmore h2{
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 68px;
}
article.learnmore .info-div{
  display: flex;
}
.filters__dropdown-apply article.learnmore .info-div{
  gap: 8px;
}
article.learnmore .info-div{
  flex-direction: column;
  margin-bottom: 60px;
  align-items: center;
}
@media (min-width: 640px) {
  article.learnmore .info-div{
    flex-direction: row;
  }
}
article.learnmore .info-div .text{
  margin-top: 16px;
  padding-right: 16px;
  padding-left: 16px;
}
article.learnmore .info-div p{
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
}
article.learnmore .info-div img{
  width: 445px;
  height: 445px;
}
@media (min-width: 640px) {
  article.learnmore .info-div img{
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 768px) {
  article.learnmore .info-div img{
    width: 445px;
    height: 445px;
  }
}
article.learnmore .how-to-order{
  display: flex;
}
.filters__dropdown-apply article.learnmore .how-to-order{
  gap: 8px;
}
article.learnmore .how-to-order{
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
article.learnmore .how-to-order .card{
  display: flex;
}
.filters__dropdown-apply article.learnmore .how-to-order .card{
  gap: 8px;
}
article.learnmore .how-to-order .card{
  flex-direction: column;
  width: 80%;
  margin-right: 15px;
  margin-bottom: 60px;
  margin-left: 15px;
  background-clip: border-box;
  border-radius: 0.25rem;
  overflow-wrap: break-word;
}
@media (min-width: 640px) {
  article.learnmore .how-to-order .card{
    width: 243px;
  }
}
article.learnmore .how-to-order .card {
  border: 1px solid rgba(0, 0, 0, 0.125);
}
article.learnmore .how-to-order .card img{
  width: 100%;
}
@media (min-width: 640px) {
  article.learnmore .how-to-order .card img{
    width: 243px;
  }
}
article.learnmore .how-to-order .card .info{
  padding: 1.25rem;
}
article.learnmore .how-to-order .card .info .number{
  margin-bottom: 0.75rem;
  font-weight: 700;
}
article.learnmore .how-to-order .card .info .text{
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
article.learnmore .buttons-container{
  display: flex;
}
.filters__dropdown-apply article.learnmore .buttons-container{
  gap: 8px;
}
article.learnmore .buttons-container{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
article.learnmore .buttons-container .buttons{
  display: flex;
}
.filters__dropdown-apply article.learnmore .buttons-container .buttons{
  gap: 8px;
}
article.learnmore .buttons-container .buttons{
  flex-direction: column;
  width: 80%;
}
@media (min-width: 640px) {
  article.learnmore .buttons-container .buttons{
    width: 500px;
  }
}
@media (min-width: 768px) {
  article.learnmore .buttons-container .buttons{
    width: 825px;
  }
}
article.learnmore .buttons-container .buttons h2{
  text-align: left;
  margin-bottom: 8px;
}
article.learnmore .buttons-container .buttons .button{
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(65 176 234 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  width: 100%;
  margin-top: 30px;
  transition: all 150ms ease-in-out;
}
article.learnmore .buttons-container .buttons .button:disabled{
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  article.learnmore .buttons-container .buttons .button{
    padding: 19px;
  }
}
article.learnmore .buttons-container .buttons .button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 105 217 / var(--tw-bg-opacity));
}
article.learnmore .info-section{
  display: flex;
}
.filters__dropdown-apply article.learnmore .info-section{
  gap: 8px;
}
article.learnmore .info-section{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
article.learnmore .info-section h2{
  margin-bottom: 8px;
}
article.learnmore .info-section .info-bubbles{
  margin-top: 60px;
  display: flex;
}
.filters__dropdown-apply article.learnmore .info-section .info-bubbles{
  gap: 8px;
}
article.learnmore .info-section .info-bubbles{
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
article.learnmore .info-section .info-bubbles .info-card{
  display: flex;
}
.filters__dropdown-apply article.learnmore .info-section .info-bubbles .info-card{
  gap: 8px;
}
article.learnmore .info-section .info-bubbles .info-card{
  flex-direction: column;
  width: 350px; /* width: 350px */ height: 335px; /* height: 335px */ justify-content: center; /* justify-content: center */ align-items: center; /* align-items: center */ margin-bottom: 60px;
}
article.learnmore .info-section .info-bubbles .info-card h3{
  margin-bottom: 8px;
  text-transform: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  line-height: 1.2;
}
article.learnmore .info-section .info-bubbles .info-card img {
  cursor: pointer !important;
  border-radius: 50% !important;
  max-width: 100% !important;
  height: auto !important;
  width: 250px;
  margin-bottom: 8px;
}
article.learnmore .info-section .info-bubbles .info-card .info-learnmore{
  text-transform: uppercase;
}
article.military-discount{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
@media (min-width: 768px) {
  article.military-discount{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.military-discount{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.military-discount .military-banner{
  padding: 16px;
}
@media (min-width: 768px){
  article.military-discount .military-banner{
    padding: 0px;
  }
}
article.military-discount .military-content{
  display: flex;
}
.filters__dropdown-apply article.military-discount .military-content{
  gap: 8px;
}
article.military-discount .military-content{
  flex-wrap: wrap;
  padding-bottom: 0px;
}
@media (min-width: 768px){
  article.military-discount .military-content{
    padding-bottom: 56px;
  }
}
article.military-discount .military-info-container{
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px){
  article.military-discount .military-info-container{
    width: 41.666667%;
  }
}
article.military-discount .military-info{
  padding: 20px;
}
article.military-discount .military-info .you-deserve-text{
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
}
article.military-discount .military-info .description{
  margin-bottom: 24px;
}
article.military-discount .military-info .description small{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
article.military-discount .military-info .uppercase-text{
  text-transform: uppercase;
}
article.military-discount .military-info .uppercase-text .enjoy-text{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
article.military-discount .military-info .uppercase-text .fee-waived-text{
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
article.military-discount .military-info .verification-text{
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 24px;
}
article.military-discount .military-info .sign-up-button{
  display: block;
  --tw-bg-opacity: 1;
  background-color: rgb(66 66 148 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 32px;
  margin-bottom: 32px;
}
article.military-discount .military-image-container{
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px){
  article.military-discount .military-image-container{
    width: 58.333333%;
    padding: 0px;
  }
}
article.military-discount .military-image-container img{
  width: 100%;
}
.military-discount-modal{
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 16px;
  padding-top: 90px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 51;
}
@media (min-width: 768px) {
  .military-discount-modal{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .military-discount-modal{
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 120px;
  }
}
.military-discount-modal .modal-content{
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  width: 100%;
  max-width: 527px;
  padding: 54px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
}
.filters__dropdown-apply .military-discount-modal .modal-content{
  gap: 8px;
}
.military-discount-modal .modal-content{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  --animate-duration: 600ms;
  aspect-ratio: 1/1;
}
@media (min-width: 640px) {
  .military-discount-modal .modal-content{
    padding: 90px;
  }
}
.military-discount-modal .modal-content .close-button{
  position: absolute;
  top: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  opacity: 0.5;
}
.military-discount-modal .modal-content .close-button::after{
  position: absolute;
  inset: -20px;
  content: "";
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .close-button{
    top: 60px;
  }
}
.military-discount-modal .modal-content .close-button:hover{
  opacity: 1;
}
@media (min-width: 768px) {
  .mattress-selection .how-to-choose .disclosure-panel.military-discount-modal .modal-content .close-button:hover {
    opacity: 1;
  }
}
.military-discount-modal .modal-content .modal-body{
  width: 100%;
}
.military-discount-modal .modal-content .modal-body h3{
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .modal-body h3{
    text-align: left;
  }
}
.military-discount-modal .modal-content .modal-body .notice{
  font-size: 0.8rem;
  --tw-text-opacity: 1;
  color: rgb(220 53 69 / var(--tw-text-opacity));
  line-height: 1.2;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 8px;
}
.military-discount-modal .modal-content .modal-body .form-inputs{
  display: flex;
}
.filters__dropdown-apply .military-discount-modal .modal-content .modal-body .form-inputs{
  gap: 8px;
}
.military-discount-modal .modal-content .modal-body .form-inputs{
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .modal-body .form-inputs{
    gap: 16px;
  }
}
.military-discount-modal .modal-content .modal-body .form-inputs .name-inputs{
  display: flex;
}
.filters__dropdown-apply .military-discount-modal .modal-content .modal-body .form-inputs .name-inputs{
  gap: 8px;
}
.military-discount-modal .modal-content .modal-body .form-inputs .name-inputs{
  gap: 8px;
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .modal-body .form-inputs .name-inputs{
    gap: 16px;
  }
}
.military-discount-modal .modal-content .modal-body .form-inputs .name-inputs .field{
  flex: 1 1;
}
.military-discount-modal .modal-content .modal-body .form-inputs .field input{
  font-size: 0.7rem;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .modal-body .form-inputs .field input{
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 1rem;
  }
}
.military-discount-modal .modal-content .modal-body .form-actions{
  width: 100%;
  margin-top: 8px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .military-discount-modal .modal-content .modal-body .form-actions{
    margin-top: 16px;
  }
}
.military-discount-modal .modal-content .modal-body .form-actions input[type=submit]{
  --tw-bg-opacity: 1;
  background-color: rgb(66 66 148 / var(--tw-bg-opacity));
  border-radius: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.military-discount-modal .modal-content .modal-body .agreement{
  font-size: 0.6rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}
article.missyou{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
}
@media (min-width: 768px) {
  article.missyou{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.missyou{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.missyou .banner{
  width: 100%;
  margin-bottom: 60px;
}
article.missyou h1{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
article.missyou h1 + p{
  text-align: center;
  margin-bottom: 16px;
}
article.missyou h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
article.missyou h2 + p{
  text-align: center;
}
article.missyou .cta-container{
  display: flex;
}
.filters__dropdown-apply article.missyou .cta-container{
  gap: 8px;
}
article.missyou .cta-container{
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
article.not-found .not-found-container{
  display: flex;
}
.filters__dropdown-apply article.not-found .not-found-container{
  gap: 8px;
}
article.not-found .not-found-container{
  align-items: center;
  justify-content: center;
  margin: 64px;
}
article.not-found .not-found-content{
  text-align: center;
}
article.not-found .not-found-title{
  --tw-text-opacity: 1;
  color: rgb(27 67 123 / var(--tw-text-opacity));
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
article.not-found .not-found-text{
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 16px;
}
article.not-found .not-found-text span:first-child{
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2rem;
}
article.not-found .not-found-link:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
article.not-found .not-found-image{
  margin-left: auto;
  margin-right: auto;
}
article.passport-sleep-gallery .passport-sleep-hero{
  background-image: url(/assets/passport_sleep_gallery/hero-bg-f047270485dd74d3d47f273334b3590d05385a6927183c18e13cde3dd372116f.jpg);
  background-repeat: no-repeat;
  padding-top: 48px;
  padding-bottom: 60px;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .passport-sleep-hero{
    margin-bottom: 60px;
  }
}
article.passport-sleep-gallery .passport-sleep-hero .hero-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .passport-sleep-hero .hero-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.passport-sleep-gallery .passport-sleep-hero .hero-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.passport-sleep-gallery .passport-sleep-hero .hero-content > img{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .passport-sleep-hero .hero-content > img{
    margin-bottom: 60px;
  }
}
article.passport-sleep-gallery .passport-sleep-hero .hero-content .hero-intro p{
  margin-bottom: 16px;
}
article.passport-sleep-gallery .passport-sleep-hero .hero-content .hero-outro{
  padding-top: 24px;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(0 98 88 / var(--tw-text-opacity));
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  font-size: 25px;
}
article.passport-sleep-gallery .mattress-list{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.passport-sleep-gallery .mattress-list{
  gap: 8px;
}
article.passport-sleep-gallery .mattress-list{
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .mattress-list{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.passport-sleep-gallery .mattress-list{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.passport-sleep-gallery .mattress-list .mattress-list-item{
  display: flex;
}
.filters__dropdown-apply article.passport-sleep-gallery .mattress-list .mattress-list-item{
  gap: 8px;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item{
  flex-direction: column;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .mattress-list .mattress-list-item{
    flex-direction: row;
    gap: 40px;
  }
  article.passport-sleep-gallery .mattress-list .mattress-list-item.is-even{
    flex-direction: row-reverse;
  }
  article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-image-link{
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    display: block;
  }
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-image-link img{
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-image-link img{
    position: absolute;
    top: 0px;
    left: 0px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details{
  display: flex;
}
.filters__dropdown-apply article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details{
  gap: 8px;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details{
  flex-direction: column;
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details{
    min-width: 39%;
    max-width: 39%;
  }
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details h2{
  --tw-text-opacity: 1;
  color: rgb(0 98 88 / var(--tw-text-opacity));
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  margin-bottom: 8px;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details .comfort-level{
  display: block;
  margin-bottom: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-details .mattress-description{
  margin-bottom: 24px;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
  display: grid;
}
.shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px){
  .shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features .grid-item{
  width: 100%;
  height: auto;
  text-decoration-line: none;
  color: inherit;
}
.shop_by_style .grid-layout article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features .grid-item h3{
  text-align: center;
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 300;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  article.passport-sleep-gallery .mattress-list .mattress-list-item .mattress-features{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .shop-all-btn{
  display: inline-block;
  padding: 22px;
  border-width: 1px;
  text-align: center;
  background-color: transparent;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(52 58 64 / var(--tw-text-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(52 58 64 / var(--tw-border-opacity));
  width: 100%;
  transition: all 150ms ease-in-out;
}
article.passport-sleep-gallery .mattress-list .mattress-list-item .shop-all-btn:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(52 58 64 / var(--tw-bg-opacity));
}
.personalshopper-content{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply .personalshopper-content{
  gap: 8px;
}
.personalshopper-content{
  flex-direction: column;
}
@media (min-width: 768px) {
  .personalshopper-content{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .personalshopper-content{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .personalshopper-content{
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .personalshopper-content .image-wrapper{
    flex: 1 1;
  }
}
.personalshopper-content .image-wrapper img{
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.personalshopper-content .text-wrapper{
  text-align: center;
}
@media (min-width: 768px) {
  .personalshopper-content .text-wrapper{
    flex: 1 1;
    text-align: left;
  }
}
.personalshopper-content .text-wrapper h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
.personalshopper-content .text-wrapper h3{
  font-family: "Open Sans", sans-serif;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}
.personalshopper-content .text-wrapper p{
  margin-bottom: 16px;
}
article.privacy-policy{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  article.privacy-policy{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.privacy-policy{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.privacy-policy h1{
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
}
article.privacy-policy h2{
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 32px;
}
article.privacy-policy p{
  margin-bottom: 16px;
}
article.privacy-policy ul{
  margin-bottom: 16px;
  margin-left: 16px;
}
article.privacy-policy li{
  list-style-type: disc;
  margin-left: 16px;
  padding-left: 0px;
  text-align: left;
  font-weight: 500;
}
article.return-policy{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}
@media (min-width: 768px) {
  article.return-policy{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.return-policy{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.return-policy h2{
  font-weight: 500;
}
article.return-policy p{
  margin-bottom: 16px;
}
article.scholarships .intro{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
}
@media (min-width: 1024px) {
  article.scholarships .intro{
    display: flex;
  }
.filters__dropdown-apply article.scholarships .intro{
    gap: 8px;
  }
  article.scholarships .intro{
    flex-direction: row;
  }
  article.scholarships .intro .image-wrapper{
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1280px) {
  article.scholarships .intro .image-wrapper{
    min-width: 66.66%;
    max-width: 66.66%;
  }
}
article.scholarships .intro .image-wrapper a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
article.scholarships .intro .image-wrapper a img{
  width: 100%;
}
@media (min-width: 1024px) {
  article.scholarships .intro .image-wrapper a img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}
@media (min-width: 1280px) {
  article.scholarships .intro .image-wrapper a img{
    position: static;
  }
}
article.scholarships .intro .text-wrapper{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  article.scholarships .intro .text-wrapper{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.scholarships .intro .text-wrapper{
    padding-left: 65px;
    padding-right: 65px;
    align-self: center;
  }
}
article.scholarships .intro .text-wrapper h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
}
article.scholarships .intro .text-wrapper p{
  font-size: 0.875rem;
}
article.scholarships .intro .text-wrapper p:not(:last-child){
  margin-bottom: 16px;
}
article.scholarships .eligibility{
  --tw-bg-opacity: 1;
  background-color: rgb(228 227 224 / var(--tw-bg-opacity));
}
article.scholarships .eligibility .eligibility-inner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  article.scholarships .eligibility .eligibility-inner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.scholarships .eligibility .eligibility-inner{
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 60px;
  }
}
article.scholarships .eligibility .eligibility-inner h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  text-transform: uppercase;
  font-size: 1.8rem;
}
article.scholarships .eligibility .eligibility-inner .content-block{
  display: flex;
}
.filters__dropdown-apply article.scholarships .eligibility .eligibility-inner .content-block{
  gap: 8px;
}
article.scholarships .eligibility .eligibility-inner .content-block{
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  article.scholarships .eligibility .eligibility-inner .content-block{
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 24px;
  }
}
article.scholarships .eligibility .eligibility-inner .content-block ul{
  list-style-type: disc;
  list-style-position: inside;
}
@media (min-width: 768px) {
  article.scholarships .eligibility .eligibility-inner .content-block ul{
    -moz-columns: 2;
         columns: 2;
    flex-grow: 1;
  }
}
article.static-page-common{
  padding-bottom: 60px;
  padding-top: 16px;
}
article.static-page-common .hero{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.static-page-common .hero{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.static-page-common .hero{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.static-page-common .hero > img{
  width: 100%;
}
article.static-page-common .shop-heading{
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
}
article.terms{
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  article.terms{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.terms{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.terms a{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
}
article.terms a:hover{
  --tw-text-opacity: 1;
  color: rgb(0 86 179 / var(--tw-text-opacity));
}
article.terms section h2{
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
article.terms section p{
  margin-bottom: 16px;
}
article.tires{
  padding-top: 16px;
}
article.tires .main-section{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.tires .main-section{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.tires .main-section{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  article.tires .main-section{
    display: flex;
  }
.filters__dropdown-apply article.tires .main-section{
    gap: 8px;
  }
  article.tires .main-section{
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  article.tires .main-section .image-wrapper{
    flex-grow: 1;
  }
}
article.tires .main-section .image-wrapper img{
  width: 100%;
}
@media (min-width: 1024px) {
  article.tires .main-section .text-content{
    max-width: 75%;
  }
}
article.tires .main-section .text-content h1{
  --tw-text-opacity: 1;
  color: rgb(213 7 65 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: left;
}
article.tires .main-section .text-content p:not(:last-child){
  margin-bottom: 16px;
}
article.tires .form-section h2{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  article.tires .form-section h2{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.tires .form-section h2{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.welcome{
  padding-top: 16px;
}
article.welcome .responsive_banner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.welcome .responsive_banner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.welcome .responsive_banner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.welcome .responsive_banner img{
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
}
article.welcome > h1{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.welcome > h1{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.welcome > h1{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.welcome .welcome-container{
  display: flex;
}
.filters__dropdown-apply article.welcome .welcome-container{
  gap: 8px;
}
article.welcome .welcome-container{
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  article.welcome .welcome-container{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 768px) {
    article.welcome .welcome-container{
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media (min-width: 1024px) {
    article.welcome .welcome-container{
      padding-left: 32px;
      padding-right: 32px;
    }
  }
}
@media (min-width: 1024px) {
  article.welcome .welcome-container{
    flex-direction: row;
    gap: 24px;
  }
}
article.welcome .welcome-container .content-block{
  --tw-bg-opacity: 1;
  background-color: rgb(246 245 243 / var(--tw-bg-opacity));
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  article.welcome .welcome-container .content-block{
    flex: 1 1;
  }
}
article.welcome .welcome-container .content-block .content-block-inner{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.welcome .welcome-container .content-block .content-block-inner{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.welcome .welcome-container .content-block .content-block-inner{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.welcome .welcome-container .content-block .content-block-inner h2{
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity));
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 60px;
}
article.welcome .welcome-container .content-block .content-block-inner p:not(:last-child){
  margin-bottom: 16px;
}
article.welcome .welcome-container .image-links{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.filters__dropdown-apply article.welcome .welcome-container .image-links{
  gap: 8px;
}
article.welcome .welcome-container .image-links{
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  article.welcome .welcome-container .image-links{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.welcome .welcome-container .image-links{
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 576px) {
  article.welcome .welcome-container .image-links{
    display: grid;
  }
.shop_by_style .grid-layout article.welcome .welcome-container .image-links{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.welcome .welcome-container .image-links .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.welcome .welcome-container .image-links .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.welcome .welcome-container .image-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 768px) {
  article.welcome .welcome-container .image-links{
    display: flex;
  }
.filters__dropdown-apply article.welcome .welcome-container .image-links{
    gap: 8px;
  }
  article.welcome .welcome-container .image-links{
    flex-direction: row;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 1024px) {
  article.welcome .welcome-container .image-links{
    display: grid;
  }
.shop_by_style .grid-layout article.welcome .welcome-container .image-links{
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1174px;
    margin-left: auto;
    margin-right: auto;
  }
@media (min-width: 1024px){
    .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
    }
  }
@media (min-width: 768px) {
  .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      padding-left: 24px;
      padding-right: 24px;
    }
}
@media (min-width: 1024px) {
  .shop_by_style .grid-layout article.welcome .welcome-container .image-links{
      padding-left: 32px;
      padding-right: 32px;
    }
}
.shop_by_style .grid-layout article.welcome .welcome-container .image-links .grid-item{
    width: 100%;
    height: auto;
    text-decoration-line: none;
    color: inherit;
  }
.shop_by_style .grid-layout article.welcome .welcome-container .image-links .grid-item h3{
    text-align: center;
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 300;
  }
  article.welcome .welcome-container .image-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 1 1;
  }
}
article.welcome .welcome-container .image-links a{
  display: block;
}
@media (min-width: 768px) {
  article.welcome .welcome-container .image-links a{
    position: relative;
  }
}
@media (min-width: 576px) {
  article.welcome .welcome-container .image-links a img{
    width: 100%;
  }
}
article.extended-service-agreements{
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1174px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  article.extended-service-agreements{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  article.extended-service-agreements{
    padding-left: 32px;
    padding-right: 32px;
  }
}
article.extended-service-agreements .product-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
article.extended-service-agreements .warranty-offer {
  background-color: #EEEEEE;
  border: 2px solid white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.5rem;
}
article.extended-service-agreements .warranty-offer:hover {
  background-color: #d7d6d6;
  cursor: pointer;
}
article.extended-service-agreements .product-details {
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.5rem;
  width: 100%;
}
article.extended-service-agreements .warranty-price {
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 2rem;
  margin: auto 0;
  min-width: 15%;
  padding: 1rem 0.5rem 0.5rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3rem;
}
article.extended-service-agreements .warranty-price :nth-child(2) {
  margin: 0 0.5rem;
}
article.extended-service-agreements .warranty-price-amount {
  margin: auto 0 auto auto;
}
article.extended-service-agreements .purchase-now {
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  margin: auto 0;
  padding: 0.5rem;
  line-height: 3rem;
}
article.extended-service-agreements input {
  display: flex;
  flex-direction: column;
  height: 2.5rem;
  justify-content: space-between;
  width: 2.5rem;
}
article.extended-service-agreements .btn-primary {
  padding: 0.5rem 1rem;
  min-height: 80px;
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  article.extended-service-agreements .warranty-offer {
    flex-direction: row;
    padding: 1rem;
  }
  article.extended-service-agreements .warranty-offer.selected {
    background-color: #EEEEEE;
  }
  article.extended-service-agreements .product-details {
    font-size: 1.2rem;
    padding: 1rem;
    width: 50%;
  }
  article.extended-service-agreements .warranty-price {
    flex-direction: column;
    font-size: 1.5rem;
    padding: 2rem 1rem 1rem;
  }
  article.extended-service-agreements .warranty-price-amount {
    margin: 0;
  }
  article.extended-service-agreements .purchase-now {
    font-size: 1rem;
    justify-content: flex-start;
  }
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}
.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.hover\:text-military-blue:hover{
  --tw-text-opacity: 1;
  color: rgb(66 66 148 / var(--tw-text-opacity));
}
.hover\:text-red-700:hover{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}
.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}
.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
}
@media (min-width: 640px){
  .sm\:block{
    display: block;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:w-1\/3{
    width: 33.333333%;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:relative{
    position: relative;
  }
  .md\:left-0{
    left: 0px;
  }
  .md\:top-0{
    top: 0px;
  }
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:float-right{
    float: right;
  }
  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mr-0{
    margin-right: 0px;
  }
  .md\:mr-20{
    margin-right: 80px;
  }
  .md\:mr-4{
    margin-right: 16px;
  }
  .md\:block{
    display: block;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-\[18rem\]{
    height: 18rem;
  }
  .md\:h-\[28rem\]{
    height: 28rem;
  }
  .md\:h-\[30rem\]{
    height: 30rem;
  }
  .md\:h-\[36rem\]{
    height: 36rem;
  }
  .md\:h-full{
    height: 100%;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-1\/4{
    width: 25%;
  }
  .md\:w-2\/3{
    width: 66.666667%;
  }
  .md\:w-3\/4{
    width: 75%;
  }
  .md\:w-4\/5{
    width: 80%;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:max-w-2xl{
    max-width: 42rem;
  }
  .md\:max-w-\[85\%\]{
    max-width: 85%;
  }
  .md\:basis-1\/2{
    flex-basis: 50%;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .md\:justify-end{
    justify-content: flex-end;
  }
  .md\:gap-10{
    gap: 40px;
  }
  .md\:gap-20{
    gap: 80px;
  }
  .md\:gap-\[30px\]{
    gap: 30px;
  }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(16px * var(--tw-space-x-reverse));
    margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:overflow-y-auto{
    overflow-y: auto;
  }
  .md\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }
  .md\:p-4{
    padding: 16px;
  }
  .md\:py-r1-spacer{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .md\:pr-4{
    padding-right: 16px;
  }
  .md\:pr-6{
    padding-right: 24px;
  }
}
@media (min-width: 1024px){
  .lg\:block{
    display: block;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:basis-1\/3{
    flex-basis: 33.333333%;
  }
  .lg\:basis-2\/3{
    flex-basis: 66.666667%;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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