/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: rgba(0, 0, 0, 0) !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: rgba(0, 0, 0, 0) !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: rgba(0, 0, 0, 0) !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: rgba(0, 0, 0, 0) !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: rgba(0, 0, 0, 0) !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: rgba(0, 0, 0, 0) !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
:root {
  --white-1: #ffffff;
  --black-1: #000000;
  --gray-1: #333333;
  --gray-2: #4f4f4f;
  --gray-3: #828282;
  --gray-4: #bdbdbd;
  --gray-5: #e0e0e0;
  --gray-6: #f2f2f2;
  --blue-sapphire: #19688f;
  --dark-cerulean: #134f6d;
  --ultramarine-blue: #295bf3;
  --green-cyan: #009463;
  --green-munsell: #00b67a;
  --green-pigment: #00ba56;
  --spanish-green: #009947;
  --pastel-red: #f76969;
  --harvest-gold: #dd9302;
} /*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 1024px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 3rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 3rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1091px) {
  .mobileMargin {
    margin-top: 16px;
  }
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
* {
  -webkit-user-select: text !important;
  -webkit-touch-callout: default !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
*::selection {
  background-color: var(--product-index-background);
  color: var(--product-index-text-color);
}
.product-collapse-content > p:last-of-type {
  margin-bottom: 0px !important;
}
.exit-popup .product--score-cta {
  font-family: "Open-sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  width: 100%;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  margin-top: 15px;
  padding: 15px 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
  transition: background-color 0.2s;
  text-transform: capitalize;
}
.exit-popup .product--score-cta[theme="blue"] {
  background-color: #0d40ff;
  box-shadow: 0 3px 0 #0025ad;
  color: #fff;
}
.exit-popup .product--score-cta[theme="blue"] > svg {
  fill: #fff;
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="blue"]:hover {
    background-color: #002fdd;
    box-shadow: 0 3px 0 #0025ad;
  }
}
.exit-popup .product--score-cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 3px 0 #a30000;
  color: #fff;
}
.exit-popup .product--score-cta[theme="red"] > svg {
  transition: 300ms ease-in;
  fill: #fff;
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="red"]:hover {
    background: #c80000;
    box-shadow: 0 3px 0 #a30000;
  }
}
.exit-popup .product--score-cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 3px 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.exit-popup .product--score-cta[theme="golden"] > span {
  z-index: 2;
}
.exit-popup .product--score-cta[theme="golden"] > svg {
  fill: #263a54;
  z-index: 2;
}
.exit-popup .product--score-cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  box-shadow: 0 3px 0 #cc6e00;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="golden"]:hover {
    box-shadow: 0 3px 0 #cc6e00;
  }
  .exit-popup .product--score-cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.exit-popup .product--score-cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 3px 0 #b84900;
  color: #fff;
}
.exit-popup .product--score-cta[theme="orange"] > svg {
  fill: #fff;
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="orange"]:hover {
    background: #e15a00;
    box-shadow: 0 3px 0 #b84900;
  }
}
.exit-popup .product--score-cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 3px 0 #0b9e2e;
  color: #fff;
}
.exit-popup .product--score-cta[theme="green"] > svg {
  fill: #fff;
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="green"]:hover {
    background: #00ba56;
    box-shadow: 0 3px 0 #0b9e2e;
  }
}
.exit-popup .product--score-cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 3px 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
.exit-popup .product--score-cta[theme="custom"] > svg {
  fill: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .exit-popup .product--score-cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
    box-shadow: 0 3px 0 var(--product-cta-shadow-color);
  }
}
@media screen and (max-width: 767px) {
  .cta-padding {
    padding: 5px 0px;
  }
}
#review_page-template-single-review_page_v3_2 .article--subtitle {
  color: #0769ed !important;
}
.review_page-template-single-review_page_v3_2 .ol-numeration-wrapper {
  margin-top: 1px;
}
body.review_page-template-single-review_page_v3_2-php {
  -webkit-font-smoothing: antialiased;
}
body.review_page-template-single-review_page_v3_2-php .wrapper {
  background-color: var(--body-wrapper-background-color, #f9f9f9);
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  body.review_page-template-single-review_page_v3_2-php .wrapper {
    padding-bottom: 16px;
  }
}
body.review_page-template-single-review_page_v3_2-php .container-box {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1091px) {
  body.review_page-template-single-review_page_v3_2-php .container-box {
    padding-left: 16px;
    padding-right: 16px;
  }
}
body.review_page-template-single-review_page_v3_2-php p {
  margin-bottom: 10px;
}
body.review_page-template-single-review_page_v3_2-php a,
body.review_page-template-single-review_page_v3_2-php .cta-block--cta {
  transition: 0.35s;
}
.header .disclaimer {
  background-color: var(--header-bg, #134f6d);
  padding: 4px 0;
}
@media screen and (max-width: 1091px) {
  .header .disclaimer {
    display: none;
  }
}
.header .disclaimer .container-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .disclaimer * {
  color: var(--header-text, #ffffff);
  font-size: 12px;
  line-height: 16px;
}
.header .disclaimer a:not(:hover) {
  text-decoration: none;
}
.header .disclaimer P {
  margin-bottom: 0;
}
.header .navbar {
  background: var(--navbar-bg, #fff);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.header .navbar > .container-box {
  position: relative;
}
.header .navbar .logo {
  display: flex;
  align-items: center;
  height: auto;
  width: var(--logo-width-desktop);
}
@media screen and (max-width: 767px) {
  .header .navbar .logo {
    width: var(--logo-width-mobile);
  }
}
.header .navbar .logo img {
  height: 100%;
  width: 100%;
}
.header .navbar nav {
  position: relative;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .nav-items {
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
  background: var(--nav-item-bg, #fff);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 0 24px;
}
.header .navbar .nav-items.hidden {
  display: none;
}
.header .navbar .nav-items .nav-item {
  padding: 16px 0;
  text-align: center;
}
.header .navbar .nav-items .nav-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-6, #f2f2f2);
}
.header .navbar .nav-items .nav-item a {
  color: var(--nav-item-text, #4f4f4f);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease-in;
}
@media (pointer: fine) {
  .header .navbar .nav-items .nav-item a:hover {
    color: var(--nav-item-hover);
  }
}
.header .hamburger {
  padding: 0;
  display: flex;
  background-color: var(--navbar-bg, #fff);
}
.header .hamburger .hamburger-box {
  width: 24px;
}
.header .hamburger .hamburger-box .hamburger-inner {
  background-color: var(--nav-item-text, #4f4f4f);
  width: 24px;
  top: 4px;
}
.header .hamburger .hamburger-box .hamburger-inner::before,
.header .hamburger .hamburger-box .hamburger-inner::after {
  background-color: var(--nav-item-text, #4f4f4f);
  width: 24px;
}
.header .hamburger .hamburger-box .hamburger-inner::before {
  top: 8px;
}
.header .hamburger .hamburger-box .hamburger-inner::after {
  top: 16px;
}
.header .hamburger.is-active .hamburger-inner::after {
  top: 20px;
}
.header-disclosure {
  background: var(--header-bg, #fff);
  border-bottom: 1px solid #e8e8e8;
}
.header-disclosure__wrapper {
  padding: 8px 16px;
  max-width: 1032px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header-disclosure__wrapper {
    padding: 8px 16px;
  }
}
.header-disclosure__logo {
  max-width: var(--logo-width-desktop);
  height: 32px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .header-disclosure__logo {
    max-width: var(--logo-width-mobile);
    height: 20px;
  }
}
.header-disclosure__link {
  font-size: 12px;
  line-height: 16px;
  color: var(--header-text);
  font-weight: 400;
  text-decoration: none;
  transition: color 300ms ease-in;
}
.header-disclosure__link:hover {
  color: #333;
}
.hero__background-image {
  background-image: url(../images/SGVyb19GbGl4eV9UVi1zdGljay5qcGc.jpg),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%),
    url(../images/SGVyb19GbGl4eV9UVi1zdGljay5qcGc.jpg);
  background-color: #d3d3d3;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.hero--boxed {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .hero--boxed {
    margin-top: 0px;
  }
}
.hero--classic {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .hero--classic {
    margin-top: 24px;
  }
}
.hero__box {
  border: 1px solid #e0e0e0;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .hero__box {
    margin-top: 0px;
    border-radius: 0px;
    padding: 0;
    border-color: rgba(0, 0, 0, 0);
    border: none;
    margin-bottom: 0;
  }
}
.hero .heading {
  color: var(--hero-heading-color, #333);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}
.hero .heading--box {
  font-size: 40px;
  line-height: 48px;
}
@media screen and (max-width: 767px) {
  .hero .heading {
    font-size: 24px;
    line-height: 32px;
  }
}
.hero .subheading {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .hero .subheading {
    margin-top: 16px;
  }
}
.hero .subheading p {
  color: var(--hero-text-color, #4f4f4f);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .hero .subheading p {
    font-size: 16px;
    line-height: 24px;
  }
}
.hero .subheading p span {
  color: var(--ultramarine-blue, #295bf3);
}
.hero .subheading--box {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .hero .subheading--box {
    margin: 16px 0px;
  }
}
.hero .subheading--box p {
  font-size: 16px;
  line-height: 24px;
}
.hero .featured-image {
  width: 100%;
}
.hero .featured-image img {
  width: 100%;
}
.hero .hero-content {
  margin-top: 24px;
  color: var(--hero-text-color, #4f4f4f);
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.hero .hero-content--wide {
  margin-top: 24px;
}
.hero .hero-content--wide > p:not(:last-of-type) {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .hero .hero-content--wide {
    margin-top: 0px;
    padding: 12px 16px 24px 16px;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-content {
    margin-top: 0px;
    background-color: #f7f7f7;
  }
}
.hero .hero-content.more-text {
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
.hero .hero-content.more-text.open {
  max-height: 1000px;
  opacity: 1;
  transition: opacity 0.35s linear;
}
.hero .toggle-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--product-read-more-button-border, #e0e0e0);
  background-color: var(--product-read-more-button-background, #f2f2f2);
  width: max-content;
  color: var(--product-read-more-button-text-color, #333);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-top: 16px;
  cursor: pointer;
  text-transform: capitalize;
}
.hero .toggle-button[theme="bold"] {
  background-color: #232f3e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
}
.hero .toggle-button[theme="bold"] span::after {
  content: "";
  transform: rotate(0deg) !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.00008 14.9982C4.12945 14.9982 1 11.8688 1 7.99812C1 4.12749 4.12945 0.998047 8.00008 0.998047C11.8707 0.998047 15.0002 4.12749 15.0002 7.99812C15.0002 11.8688 11.8707 14.9982 8.00008 14.9982ZM8.00008 1.82159C4.58239 1.82159 1.82354 4.58044 1.82354 7.99812C1.82354 11.4158 4.58239 14.1747 8.00008 14.1747C11.4178 14.1747 14.1766 11.4158 14.1766 7.99812C14.1766 4.58044 11.4178 1.82159 8.00008 1.82159Z" fill="white"/><path d="M11.4197 8.69759L8.00197 5.27991L4.58429 8.69759L4.00781 8.12111L8.00197 4.12695L11.9961 8.12111L11.4197 8.69759Z" fill="white"/><path d="M7.58594 4.70312H8.40948V11.7032H7.58594V4.70312Z" fill="white"/></svg>');
}
@media screen and (max-width: 767px) {
  .hero .toggle-button {
    margin-top: 8px;
  }
}
.hero .toggle-button span {
  display: flex;
}
.hero .toggle-button span::after {
  margin-left: 8px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M0.999849 8.27827C0.999849 4.40764 4.12929 1.2782 7.99992 1.2782C11.8706 1.2782 15 4.40764 15 8.27827C15 12.1489 11.8706 15.2783 7.99992 15.2783C4.12929 15.2783 0.999849 12.1489 0.999849 8.27827ZM14.1765 8.27827C14.1765 4.86059 11.4176 2.10174 7.99992 2.10174C4.58224 2.10174 1.82339 4.86059 1.82339 8.27827C1.82339 11.696 4.58224 14.4548 7.99992 14.4548C11.4176 14.4548 14.1765 11.696 14.1765 8.27827Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M7.29997 11.696L10.7177 8.27828L7.29997 4.8606L7.87645 4.28412L11.8706 8.27828L7.87644 12.2724L7.29997 11.696Z' fill='%23333333'/%3E%3Cpath id='Vector_3' d='M11.2942 7.86646L11.2942 8.68999L4.29411 8.68999L4.29411 7.86645L11.2942 7.86646Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E");
  height: 16px;
  width: 16px;
}
.hero .toggle-button.open span::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M8.00007 15.2784C4.12944 15.2784 0.999998 12.149 0.999999 8.27833C0.999999 4.4077 4.12945 1.27826 8.00008 1.27826C11.8707 1.27826 15.0002 4.40771 15.0001 8.27834C15.0001 12.149 11.8707 15.2784 8.00007 15.2784ZM8.00008 2.1018C4.58239 2.1018 1.82354 4.86065 1.82354 8.27834C1.82354 11.696 4.58239 14.4549 8.00007 14.4549C11.4178 14.4549 14.1766 11.696 14.1766 8.27834C14.1766 4.86065 11.4178 2.1018 8.00008 2.1018Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M5.6 11L5 10.4L7.4 8L5 5.6L5.6 5L8 7.4L10.4 5L11 5.6L8.6 8L11 10.4L10.4 11L8 8.6L5.6 11Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.hero .toggle-button.back-to-top--narrow {
  font-family: "Open Sans", sans-serif;
  margin-top: 0px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero .toggle-button.back-to-top--narrow {
    margin-top: 16px;
  }
}
.hero .toggle-button.back-to-top span::after {
  transform: rotate(-90deg);
}
.hero .simple-toggle {
  border: none;
  background: none;
  color: #007b8c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
}
.hero .toggle-chevron {
  color: #007b8c;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  top: -4px;
}
.hero .toggle-chevron.open > svg {
  transform: rotate(0deg);
}
.hero .toggle-chevron--icon {
  margin-left: 8px;
  position: relative;
  top: 7px;
  transform: rotate(90deg);
  transition: transform 150ms ease-in;
}
.hero .scroll-intoView {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  background: none;
  border: none;
  color: #007b8c;
  text-transform: capitalize;
  text-decoration: underline;
  cursor: pointer;
}
.hero-content > p:last-of-type {
  margin-bottom: 0px;
}
.hero-content--wide p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .hero-content--wide p {
    font-size: 14px;
    line-height: 20px;
  }
}
.hero-content--wide p > a {
  color: var(--text-link-color, #0769ed);
  text-decoration-color: var(--text-link-underline-color, #0769ed);
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-decoration: underline !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero-content--wide p > a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700 !important;
  }
}
.hero .mobileMargin > .product-list-card--first {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.07);
}
.show-more > p {
  margin-bottom: 10px !important;
}
.hero-meta-content {
  display: grid;
  place-items: center;
  place-content: center;
  width: 100%;
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content {
    padding: 24px 0px;
  }
}
@media screen and (max-width: 390px) {
  .hero-meta-content {
    padding: 12px 8px;
  }
}
.hero-meta-content span {
  display: inline-block;
}
.hero-meta-content__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 12px;
  max-width: 281px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__heading {
    font-size: 40px;
    margin-bottom: 32px;
    max-width: 581px;
  }
}
.hero-meta-content__text {
  color: var(--meta-text-color, #ffffff);
  font-family: "Open Sans", sans-serif;
}
.hero-meta-content__text.size-m {
  font-size: 12px;
  line-height: 16px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__text.size-m {
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  .hero-meta-content__text.size-m {
    font-size: 11px;
  }
}
.hero-meta-content__text.size-l {
  font-size: 8px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__text.size-l {
    font-size: 14px;
  }
}
.hero-meta-content__text.size-xl {
  font-size: 14px;
  line-height: 130%;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__text.size-xl {
    font-size: 18px;
  }
}
.hero-meta-content__play-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 24px;
  justify-content: center;
  gap: 8px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .hero-meta-content__play-button {
    margin-bottom: 12px;
    gap: 4px;
  }
}
.hero-meta-content__play-button:hover {
  color: #fff;
}
.hero-meta-content__play-image {
  height: 34px;
  width: 34px;
}
@media screen and (max-width: 640px) {
  .hero-meta-content__play-image {
    width: 22px;
    height: 22px;
  }
}
.hero-meta-content__play-text {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
@media screen and (max-width: 640px) {
  .hero-meta-content__play-text {
    font-size: 14px;
  }
}
.hero-meta-content__date {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__date {
    margin-bottom: 16px;
  }
}
.hero-meta-content__meta-author-image,
.hero-meta-content__checkmark {
  height: 12px;
  width: 12px;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__meta-author-image,
  .hero-meta-content__checkmark {
    height: 16px;
    width: 16px;
    margin-right: 8px;
  }
}
.hero-meta-content__meta-flag-image {
  width: 20px;
  height: auto;
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__meta-flag-image {
    width: 32px;
    margin-left: 8px;
  }
}
.hero-meta-content__meta-author {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  gap:3px;
}
@media screen and (max-width: 640px) {
  .hero-meta-content__meta-author {
    margin-bottom: 12px;
  }
}
.hero-meta-content__meta-author-image {
  border-radius: 50%;
}
.hero-meta-content__consumers-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 12px 16px;
  border: 2px solid var(--meta-text-color, #ffffff);
  border-radius: 2px;
}
.hero-meta-content__consumers-rating .size-xl {
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__consumers-rating .size-xl {
    margin-bottom: 4px;
  }
}
.hero-meta-content__consumers-rating .size-l {
  margin-bottom: 4px;
}
.hero-meta-content__meta-stars-image {
  height: 8px;
}
@media screen and (min-width: 768px) {
  .hero-meta-content__meta-stars-image {
    height: 12px;
  }
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.video-modal-content {
  position: relative;
  width: 100vw;
  max-width: 966px;
  background-color: #000;
  border-radius: 8px;
}
.video-modal-close {
  position: absolute;
  right: 10px;
  top: -10px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
.video-modal-close:hover,
.video-modal-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.products-list {
  position: relative;
}
.products-list .card-flag {
  top: -8px;
  left: 15px;
}
@media screen and (max-width: 767px) {
  .products-list .card-flag {
    height: 60px;
  }
}
@media screen and (max-width: 390px) {
  .products-list .card-flag {
    height: 56px;
    width: 48px;
    left: 12px;
  }
}
.products-list .card-flag__index {
  position: relative;
  top: 4px;
  font-size: 26px;
  line-height: 32px;
}
@media screen and (min-width: 768px) {
  .products-list .card-flag__index {
    top: -4px;
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .products-list .card-flag::after {
    top: 51px;
  }
}
.product-card-link {
  text-decoration: none;
  display: block;
}
.products-list > .product-list-card:not(:last-of-type) {
  margin-bottom: 24px;
}
.product-list-card {
  background: var(--product-card-background-color);
  overflow: hidden;
  border-radius: 10px;
}
.product-list-card--withBorder {
  border: 1px solid #e0e0e0;
}
.product-list-card--shadow {
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.07);
}
.product-list-card--first {
  border: 3px solid var(--product-primary-border-color);
}
.product-list-card--header {
  background: var(--product-heading-background);
  display: flex;
  align-items: center;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .product-list-card--header {
    padding: 8px 16px;
  }
}
.product-list-card--header * {
  color: var(--product-heading-text-color);
}
.product-list-card--header__key {
  font-family: "Open sans", sans-serif;
  padding: 0 9px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.product-list-card--header__key-singleRow {
  font-weight: 700;
  padding: 8px 9px;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__key-singleRow {
    padding: 8px 16px;
    font-size: 20px;
    line-height: 24px;
  }
}
.product-list-card--header__key-first {
  background: var(--product-index-background);
  color: var(--product-index-text-color);
}
.product-list-card--header__key-other {
  background: var(--product-secondary-index-background);
  color: var(--product-secondary-index-text-color);
}
@media screen and (max-width: 767px) {
  .product-list-card--header__key {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
  }
}
.product-list-card--header__key-updated {
  font-weight: 700;
  padding: 8px;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__key-updated {
    font-size: 24px !important;
    line-height: 32px !important;
    padding: 16px 17px;
  }
}
.product-list-card--header__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__title--singleRow {
    flex-direction: row;
    padding: 8px 16px;
    flex: 1;
  }
}
.product-list-card--header__title-brand-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .product-list-card--header__title-brand-name {
    font-size: 24px;
  }
}
.product-list-card--header__title-wrap {
  display: flex;
  align-items: center;
}
.product-list-card--header__title-divider {
  background: var(--product-heading-text-color);
  width: 1px;
  height: 100%;
  padding: 8px 0;
  margin: 0 8px;
}
@media screen and (min-width: 768px) {
  .product-list-card--header__title-divider {
    margin: 0 16px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 390px) {
  .product-list-card--header__title-divider {
    margin: 0 4px;
  }
}
.product-list-card--header__title-additional-info * {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .product-list-card--header__title-additional-info * {
    font-size: 18px;
  }
}
.product-list-card--header__title-additional-info a {
  text-decoration: none;
}
.product-list-card--header__title-additional-info .supplier-link {
  font-weight: 700;
  position: relative;
}
.product-list-card--header__title-additional-info .supplier-link--empty {
  font-weight: 700;
  position: relative;
}
.product-list-card--header__title-additional-info .supplier-link:hover {
  color: #fff;
}
.product-list-card--header__title-additional-info .supplier-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  opacity: 0.6;
  background: var(--product-heading-text-color);
  bottom: 2px;
}
@media screen and (min-width: 768px) {
  .product-list-card--header__title-additional-info[data-text_type="best_choise_label"] {
    display: flex;
    align-items: center;
  }
}
.product-list-card--header__title-additional-info[data-text_type="best_choise_label"]
  span {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .product-list-card--header__title-additional-info[data-text_type="best_choise_label"]
    span {
    text-decoration: none;
    font-size: 24px;
  }
}
.product-list-card--header__title.first-card {
  margin-left: 76px;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__title.first-card {
    margin-left: 57px;
  }
}
.product-list-card--body {
  background-color: var(--product-card-background-color);
}
.product-list-card--body .toggle-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--product-read-more-button-border, #e0e0e0);
  background-color: var(--product-read-more-button-background, #f2f2f2);
  width: max-content;
  color: var(--product-read-more-button-text-color, #333);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-top: 16px;
  cursor: pointer;
  text-transform: capitalize;
}
.product-list-card--body .toggle-button[theme="bold"] {
  background-color: #232f3e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
}
.product-list-card--body .toggle-button[theme="bold"] span::after {
  content: "";
  transform: rotate(0deg) !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.00008 14.9982C4.12945 14.9982 1 11.8688 1 7.99812C1 4.12749 4.12945 0.998047 8.00008 0.998047C11.8707 0.998047 15.0002 4.12749 15.0002 7.99812C15.0002 11.8688 11.8707 14.9982 8.00008 14.9982ZM8.00008 1.82159C4.58239 1.82159 1.82354 4.58044 1.82354 7.99812C1.82354 11.4158 4.58239 14.1747 8.00008 14.1747C11.4178 14.1747 14.1766 11.4158 14.1766 7.99812C14.1766 4.58044 11.4178 1.82159 8.00008 1.82159Z" fill="white"/><path d="M11.4197 8.69759L8.00197 5.27991L4.58429 8.69759L4.00781 8.12111L8.00197 4.12695L11.9961 8.12111L11.4197 8.69759Z" fill="white"/><path d="M7.58594 4.70312H8.40948V11.7032H7.58594V4.70312Z" fill="white"/></svg>');
}
@media screen and (max-width: 767px) {
  .product-list-card--body .toggle-button {
    margin-top: 8px;
  }
}
.product-list-card--body .toggle-button span {
  display: flex;
}
.product-list-card--body .toggle-button span::after {
  margin-left: 8px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M0.999849 8.27827C0.999849 4.40764 4.12929 1.2782 7.99992 1.2782C11.8706 1.2782 15 4.40764 15 8.27827C15 12.1489 11.8706 15.2783 7.99992 15.2783C4.12929 15.2783 0.999849 12.1489 0.999849 8.27827ZM14.1765 8.27827C14.1765 4.86059 11.4176 2.10174 7.99992 2.10174C4.58224 2.10174 1.82339 4.86059 1.82339 8.27827C1.82339 11.696 4.58224 14.4548 7.99992 14.4548C11.4176 14.4548 14.1765 11.696 14.1765 8.27827Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M7.29997 11.696L10.7177 8.27828L7.29997 4.8606L7.87645 4.28412L11.8706 8.27828L7.87644 12.2724L7.29997 11.696Z' fill='%23333333'/%3E%3Cpath id='Vector_3' d='M11.2942 7.86646L11.2942 8.68999L4.29411 8.68999L4.29411 7.86645L11.2942 7.86646Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E");
  height: 16px;
  width: 16px;
}
.product-list-card--body .toggle-button.open span::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M8.00007 15.2784C4.12944 15.2784 0.999998 12.149 0.999999 8.27833C0.999999 4.4077 4.12945 1.27826 8.00008 1.27826C11.8707 1.27826 15.0002 4.40771 15.0001 8.27834C15.0001 12.149 11.8707 15.2784 8.00007 15.2784ZM8.00008 2.1018C4.58239 2.1018 1.82354 4.86065 1.82354 8.27834C1.82354 11.696 4.58239 14.4549 8.00007 14.4549C11.4178 14.4549 14.1766 11.696 14.1766 8.27834C14.1766 4.86065 11.4178 2.1018 8.00008 2.1018Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M5.6 11L5 10.4L7.4 8L5 5.6L5.6 5L8 7.4L10.4 5L11 5.6L8.6 8L11 10.4L10.4 11L8 8.6L5.6 11Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.product-list-card--body .toggle-button.back-to-top--narrow {
  font-family: "Open Sans", sans-serif;
  margin-top: 0px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .product-list-card--body .toggle-button.back-to-top--narrow {
    margin-top: 16px;
  }
}
.product-list-card--body .toggle-button.back-to-top span::after {
  transform: rotate(-90deg);
}
.product-list-card--body .simple-toggle {
  border: none;
  background: none;
  color: #007b8c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
}
.product-list-card--body .toggle-chevron {
  color: #007b8c;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  top: -4px;
}
.product-list-card--body .toggle-chevron.open > svg {
  transform: rotate(0deg);
}
.product-list-card--body .toggle-chevron--icon {
  margin-left: 8px;
  position: relative;
  top: 7px;
  transform: rotate(90deg);
  transition: transform 150ms ease-in;
}
.product-list-card--body .scroll-intoView {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  background: none;
  border: none;
  color: #007b8c;
  text-transform: capitalize;
  text-decoration: underline;
  cursor: pointer;
}
.product-list-card--body__main-content {
  padding: 24px 16px;
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content {
    position: relative;
  }
}
.product-list-card--body__main-content .toggle-button {
  padding: 8px 10px;
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content .toggle-button {
    position: absolute;
    left: 16px;
    bottom: 16px;
  }
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content .product-meta {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1092px) {
  .product-list-card--body__main-content .cta-block-wrapper {
    max-width: 230px;
  }
}
.product-list-card--body__main-content .cta-block {
  height: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content .cta-block {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.product-list-card--body__main-content .cta-block--tooltip {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: var(--product-cta-tooltip-background, #fff);
  display: flex;
  padding: 8px;
  position: relative;
  margin-bottom: 18px;
  z-index: 2;
}
.product-list-card--body__main-content .cta-block--tooltip::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.15));
  border-top: 11px solid var(--product-cta-tooltip-background, #fff);
}
.product-list-card--body__main-content .cta-block--tooltip__icon {
  width: 16px;
  margin-right: 4px;
}
.product-list-card--body__main-content .cta-block--tooltip__text {
  margin-left: 4px;
  color: var(--product-cta-tooltip-text-color, #134f6d);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}
.product-list-card--body__main-content .cta-block--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.product-list-card--body__main-content .cta-block--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .product-list-card--body__main-content .cta-block--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .product-list-card--body__main-content .cta-block--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .product-list-card--body__main-content .cta-block--cta {
    width: 100%;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .product-list-card--body__main-content
    .cta-block--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.product-list-card--body__main-content .cta-block--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .product-list-card--body__main-content
    .cta-block--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.product-list-card--body__main-content .cta-block--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .product-list-card--body__main-content .cta-block--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.product-list-card--body__main-content .cta-block--focus {
  color: var(--product-cta-focus-text-color, #f76969);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-top: 8px;
}
.product-list-card--body__main-content .cta-block--badges {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 48px;
  margin-top: 8px;
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content .cta-block--badges {
    justify-content: center;
  }
}
.product-list-card--body__main-content .cta-block--badges__badge {
  height: 100%;
}
@media screen and (max-width: 1091px) {
  .product-list-card--body__main-content
    .cta-block--badges__badge:nth-of-type(2) {
    margin: 0 16px;
  }
}
.product-list-card--body__main-content .cta-block--badges__badge img {
  height: 100%;
}
.product-list-card--body__secondary-content {
  padding: 0;
  color: var(--product-read-more-text-color, #4f4f4f);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  border-top: 1px solid var(--product-read-more-divider-color, #f2f2f2);
  overflow: hidden;
}
.best-overall-section {
  margin-top: 32px;
}
@media screen and (max-width: 1091px) {
  .best-overall-section {
    margin-top: 24px;
    padding-bottom: 16px;
  }
}
@media (min-width: 1040px) {
  .best-overall-section {
    padding-bottom: 80px;
  }
}
.best-overall-section--header {
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--best-overall-heading-background);
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .best-overall-section--header {
    margin-bottom: 24px;
    padding: 16px;
  }
}
.best-overall-section--header__icon {
  position: relative;
  top: 3px;
}
.best-overall-section--header__heading {
  color: var(--best-overall-heading-text-color);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  .best-overall-section--header__heading {
    font-size: 20px;
    line-height: 24px;
  }
}
.benefits-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1091px) {
  .benefits-list:nth-of-type(2) {
    margin-top: 8px;
  }
}
.benefits-list__heading {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
}
.benefits-list__heading--pros {
  color: #00b67a;
}
.benefits-list__heading--cons {
  color: #f76969;
}
.benefits-list--item {
  display: flex;
  align-items: flex-start;
}
.benefits-list--item:not(:last-child) {
  margin-bottom: 8px;
}
.benefits-list--item__image {
  margin-right: 8px;
}
.benefits-list--item__text {
  color: var(--product-argument-text-color, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.product-score-count {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product-score-count--title {
  color: var(--product-card-score-text-color);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .product-score-count--title {
    font-size: 16px;
  }
}
.product-score-count--rating-image {
  height: 18px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .product-score-count--rating-image {
    margin-bottom: 8px;
  }
}
.product-score-count--rating-image img {
  height: 100%;
}
.product-score-count--count {
  color: var(--product-card-score-text-color);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .product-score-count--count {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
.product-score-count--rating-label {
  color: var(--product-card-score-rating-color, #4f4f4f);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 2px;
}
.product-score-count--customer-reviews {
  color: var(--product-customer-reviews-text-color, #828282);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
@media screen and (min-width: 768px) {
  .product-score-count--customer-reviews {
    margin-bottom: 16px;
  }
}
.product-score-count--limited-time-offer {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .product-score-count--limited-time-offer {
    margin-bottom: 12px;
  }
}
.product-score-count--limited-time-offer .limited-time-label {
  color: #cc0c0c;
  margin-right: 8px;
  display: inline-block;
}
@media screen and (max-width: 390px) {
  .product-score-count--limited-time-offer .limited-time-label {
    margin-right: 0px;
  }
}
.product-score-count--limited-time-offer .discount-percent {
  display: inline-block;
  color: #fff;
  padding: 4px 8px;
  background-color: #cc0c0c;
  border-radius: 5px;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
@media screen and (min-width: 768px) {
  .product-score-count--limited-time-offer .discount-percent {
    margin-top: 0.5em;
  }
}
.cta-block--badges {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 48px;
  margin-top: 8px;
}
@media screen and (max-width: 1091px) {
  .cta-block--badges {
    justify-content: center;
  }
}
.cta-block--badges__badge {
  height: 100%;
}
@media screen and (max-width: 1091px) {
  .cta-block--badges__badge:nth-of-type(2) {
    margin: 0 16px;
  }
}
.cta-block--badges__badge img {
  height: 100%;
}
.benefits {
  height: 100%;
}
@media screen and (max-width: 1091px) {
  .benefits {
    margin-top: 16px;
    margin-bottom: 40px;
  }
}
.product-image {
  height: var(--product-image-size);
  width: var(--product-image-size);
  overflow: hidden;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1091px) {
  .benefits-list:nth-of-type(2) {
    margin-top: 8px;
  }
}
.benefits-list--item {
  display: flex;
  align-items: flex-start;
}
.benefits-list--item:not(:last-of-type) {
  margin-bottom: 8px;
}
.benefits-list--item:last-of-type {
  margin-bottom: 0px;
}
.benefits-list--item__image {
  margin-right: 8px;
}
.benefits-list--item__text {
  color: var(--product-argument-text-color, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.product-list-card--header__title--singleRow {
  padding: 8px 0px 8px 16px;
  display: flex;
  align-items: center;
}
.product-list-card--header__title--singleRow
  > .product-list-card--header__title-brand-name {
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #19688f;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__title--singleRow
    > .product-list-card--header__title-brand-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-right: 8px;
    padding-right: 8px;
  }
}
.product-list-card--header__title--singleRow
  > .product-list-card--header__title-divider {
  width: 1px;
  height: 100%;
  background: #fff;
}
.product-list-card--header__title--singleRow
  > .product-list-card--header__title-additional-info {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .product-list-card--header__title--singleRow
    > .product-list-card--header__title-additional-info {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
  }
}
.best-overall-section > .product-card-withFlag {
  border-width: 4px !important;
}
@media screen and (max-width: 1091px) {
  .margin-top-none {
    margin-top: 0px !important;
  }
}
.simple-description-style {
  color: var(--product-read-more-text-color, #4f4f4f);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  border-top: 1px solid var(--product-read-more-divider-color, #f2f2f2);
  overflow: hidden;
}
.product-list-card.hidden {
  display: none;
}
.rotate {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  body[data-template-lang="de"]
    .product-score-count--limited-time-offer
    .limited-time-label {
    margin-bottom: 4px;
  }
}
.product-card-4 {
  padding: 24px 16px;
}
.product-card-4--paddingSmall {
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .product-card-4 {
    padding: 16px 16px 24px 16px;
  }
}
.product-card-4__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .product-card-4__wrapper {
    flex-direction: column;
  }
}
.product-card-4__border {
  min-width: 164px;
  border-right: 1px solid #f2f2f2;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .product-card-4__border {
    padding-right: 0px;
    border-right: none;
  }
}
.product-card-4__column {
  width: 25%;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .product-card-4__column {
    width: 100%;
    padding: 16px 0;
  }
  .product-card-4__column:first-of-type {
    padding: 0 0 24px 0;
  }
}
.product-card-4__column--withNoCons {
  width: 33%;
}
.product-card-4__column:first-of-type {
  padding-left: 0px;
}
.product-card-4__column:last-of-type {
  padding-right: 0px;
}
@media screen and (max-width: 767px) {
  .product-card-4__column:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .product-card-4__column:nth-of-type(3) {
    padding-bottom: 0px;
  }
}
.product-card-4__list {
  display: flex;
  flex-direction: column;
}
.product-card-4__column:not(:last-of-type) {
  border-right: 1px solid #f2f2f2;
}
@media screen and (max-width: 767px) {
  .product-card-4__column:not(:last-of-type) {
    border-right: 0px solid #f2f2f2;
  }
}
@media screen and (max-width: 767px) {
  .product-card-4__column:not(:nth-of-type(3)) {
    border-bottom: 1px solid #f2f2f2;
  }
}
.product-card-horizontal {
  background: var(--product-card-background-color);
  border-top: 1px solid #f2f2f2;
  margin: 0 24px;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .product-card-horizontal {
    display: flex;
    font-weight: 700;
    justify-content: center;
    text-decoration: underline;
    color: var(--text-link-color, #0769ed);
    text-decoration-color: var(--text-link-underline-color, #0769ed);
    font-size: 16px;
    margin: 16px 0 0 0;
    padding: 24px 0;
  }
  .product-card-horizontal a,
  .product-card-horizontal a:visited {
    color: var(--text-link-color, #0769ed);
  }
}
@media screen and (max-width: 767px) {
  .product-card-4__mobileWrapper {
    display: flex;
    flex-direction: column;
  }
}
.product-card-4__mobileWrapper > .score-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .product-card-4__mobileWrapper > .score-mobile {
    display: block;
  }
}
.product-card-4__mobileWrapper > .cta-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .product-card-4__mobileWrapper > .cta-mobile {
    display: block;
  }
}
.product-card-4__mobileWrapper__score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mr-4 {
  margin-bottom: 4px;
}
.text-center {
  text-align: center;
}
@media screen and (min-width: 1092px) {
  .productCard-image-size {
    max-width: 218px;
  }
}
.cardBody--assessment {
  background: var(--product-card-background-color);
  overflow: hidden;
  height: 0px;
  transition: max-height 300ms cubic-bezier(0.26, 0, 0.24, 0.99);
}
.cardBody--assessment__wrapper {
  padding: 16px 0px 24px 0px;
  border-top: 1px solid #f2f2f2;
  margin-left: 24px;
  margin-right: 24px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cardBody--assessment__wrapper {
    flex-direction: column-reverse;
    padding: 16px 0px;
    margin-left: 16px;
    margin-right: 16px;
  }
}
.cardBody--assessment__list {
  width: 67.67%;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .cardBody--assessment__list {
    width: 100%;
    margin-right: 0;
    margin-top: 24px;
  }
}
.cardBody--assessment__list--article {
  margin-bottom: -27px;
}
.cardBody--assessment__list--article > p {
  font-family: "Open Sans", sans-serif;
  color: #4f4f4f !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cardBody--assessment__list--article > p > a {
  text-decoration: underline;
  font-weight: 700;
  color: var(--summary-link-color);
  transition: color 300ms ease-in-out;
}
.cardBody--assessment__list--article > p > br {
  line-height: 12px;
}
.cardBody--assessment__listItem {
  margin-bottom: 24px;
}
.cardBody--assessment__ctaBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cardBody--assessment--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.cardBody--assessment--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cardBody--assessment--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .cardBody--assessment--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .cardBody--assessment--cta {
    width: 100%;
  }
}
.cardBody--assessment--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.cardBody--assessment--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.cardBody--assessment--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.cardBody--assessment--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.cardBody--assessment--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.cardBody--assessment--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.cardBody--assessment--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.cardBody--assessment--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.cardBody--assessment--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .cardBody--assessment--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.cardBody--assessment__cta {
  min-width: 300px;
  font-weight: 700;
}
.cardBody--assessment__listHeading {
  color: var(--assessment-heading-color);
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
}
.cardBody--assessment__listHeading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  background: var(--assessment-divider-color);
  height: 100%;
}
.cardBody--assessment__listHeading__listDescription {
  color: var(--assessment-description-color);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.cardBody--assessment__listHeading__listDescription > p:not(:last-of-type) {
  margin-bottom: 24px;
}
.cardBody--assessment__listHeading__listDescription > p:last-of-type {
  margin-bottom: 0px !important;
}
.cardBody--assessment--table {
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  .cardBody--assessment--table {
    width: 100%;
  }
}
.cardBody--assessment--table__image {
  margin-bottom: 16px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cardBody--assessment--table__image {
    width: 100%;
  }
}
.cardBody--assessment--table__wrapper {
  border: 1px solid #e0e0e0;
  padding: 8px;
}
.cardBody--assessment--table__heading {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f2f2;
  color: var(--assessment-tableHeading-color) !important;
}
.cardBody--assessment--table__heading p {
  margin-bottom: 0px !important;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--assessment-tableHeading-color);
}
.cardBody--assessment--table__heading p > span {
  color: #134f6d;
  font-weight: 700;
}
.cta-block--tooltip {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: var(--product-cta-tooltip-background, #fff);
  display: flex;
  align-items: flex-start;
  padding: 8px;
  position: relative;
  margin-top: 22px;
}
.cta-block--tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  filter: drop-shadow(1px -1px 1px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(1px -1px 1px rgba(0, 0, 0, 0.15));
  border-bottom: 10px solid var(--product-cta-tooltip-background, #fff);
}
.cta-block--tooltip__icon {
  width: 16px;
  margin-right: 4px;
}
.cta-block--tooltip__text {
  margin-left: 4px;
  color: var(--product-cta-tooltip-text-color, #134f6d);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
}
.cta-block--tooltip__discount {
  color: var(--product-cta-focus-text-color);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-top: 8px;
}
.assessment-table {
  margin-top: 12px;
  width: 100%;
}
.assessment-table__listItem:not(:last-of-type) {
  margin-bottom: 8px;
}
.assessment-table__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.assessment-table__heading > p {
  color: var(--assessment-tableHeading-color);
}
.assessment-table__heading--text {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  color: var(--assessment-tableHeading-color);
}
.assessment-table__score {
  background: var(--assessment-tablePassive-color);
  height: 12px;
  border-radius: 2px;
  width: 100%;
  position: relative;
}
.assessment-table__score:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-6:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-7:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-8:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-9:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
.assessment-score-10:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--assessment-tableActive-color);
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1032px) {
  .cardBody--assessment--cta {
    min-width: 0;
    width: 100%;
  }
}
.product-card-withFlag {
  position: relative;
  margin-top: 32px;
  overflow: visible !important;
  border-width: 4px;
}
@media screen and (max-width: 767px) {
  .product-card-withFlag {
    margin-top: 35px;
  }
}
.product-card-withFlag__image {
  display: block;
  text-align: center;
  color: var(--text-link-color, #0769ed);
  text-decoration-color: var(--text-link-underline-color, #0769ed);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: underline !important;
}
.product-card-withFlag__image img {
  width: 100%;
  max-width: 218px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .product-card-withFlag__image img {
    margin-bottom: 20px;
  }
}
.product-card-withFlag__image.mobile {
  padding-top: 24px;
  margin: 0 16px 24px;
  border-top: 1px solid #f2f2f2;
}
.product-card-withFlag__wrapper {
  padding: 32px 24px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .product-card-withFlag__wrapper {
    padding: 16px 16px;
  }
}
.product-card-withFlag__column-25 {
  width: 25%;
}
.product-card-withFlag__column-50 {
  width: 50%;
  border-left: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
}
.product-card-withFlag__column-p-16 {
  padding: 0 16px;
}
.product-card-withFlag__column-pl-16 {
  padding-left: 16px;
}
.product-card-withFlag__column-pr-16 {
  padding-right: 16px;
}
.product-card-withFlag__heading {
  color: var(--Gray-1, #333);
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .product-card-withFlag__heading {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
.product-card-withFlag__description {
  color: var(--Gray-2, #4f4f4f);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.product-card-withFlag__description a {
  text-decoration: underline;
  font-weight: 700;
}
.product-card-withFlag__description p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.product-card-withFlag__description > p:not(:last-of-type) {
  margin-bottom: 24px;
}
.product-card-withFlag__description > p:last-of-type {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .product-card-withFlag__description {
    margin-bottom: 24px;
  }
  .product-card-withFlag__description p:not(:last-of-type) {
    margin-bottom: 16px !important;
  }
}
.card-flag {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -12px;
  left: 8px;
  background: var(--best-overall-flag-primary);
  width: 56px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .card-flag {
    width: 48px;
    height: 48px;
  }
}
.card-flag-tail {
  width: 100%;
  height: 32px;
  position: absolute;
  top: 72px;
}
.card-flag__index {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .card-flag__index {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }
}
.card-flag:before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 8px;
  border-left: 3px solid rgba(0, 0, 0, 0);
  border-right: 1px solid var(--best-overall-flag-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 7px solid var(--best-overall-flag-secondary);
}
.card-flag:after {
  content: "";
  position: absolute;
  top: 64px;
  left: 0;
  border-left: 28px solid var(--best-overall-flag-primary);
  border-right: 28px solid var(--best-overall-flag-primary);
  border-bottom: 16px solid rgba(0, 0, 0, 0) !important;
  border-top: 16px solid var(--best-overall-flag-primary);
}
@media screen and (max-width: 767px) {
  .card-flag:after {
    top: 36px;
    border-left: 24px solid var(--best-overall-flag-primary);
    border-right: 24px solid var(--best-overall-flag-primary);
    border-bottom: 12px solid rgba(0, 0, 0, 0) !important;
    border-top: 12px solid var(--best-overall-flag-primary);
  }
}
.seasonal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(30, 30, 30, 0.8);
  z-index: 1000;
}
@media screen and (max-width: 490px) {
  .seasonal-popup {
    padding: 0px 16px;
  }
}
@media screen and (max-width: 390px) {
  .seasonal-popup {
    padding: 0px 15px;
  }
}
.seasonal-popup__close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.seasonal-popup--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.seasonal-popup--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .seasonal-popup--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .seasonal-popup--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .seasonal-popup--cta {
    width: 100%;
  }
}
.seasonal-popup--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.seasonal-popup--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.seasonal-popup--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.seasonal-popup--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.seasonal-popup--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.seasonal-popup--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.seasonal-popup--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.seasonal-popup--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.seasonal-popup--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .seasonal-popup--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.seasonal-popup__container {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 4px solid var(--seasonal-popup-border-color);
  background: var(--seasonal-popup-background-color);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 390px) {
  .seasonal-popup__container {
    padding: 24px 8px;
  }
}
@media screen and (max-width: 490px) {
  .seasonal-popup__container {
    padding: 24px 16px;
  }
}
.seasonal-popup__heading {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  text-transform: capitalize;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__heading {
    line-height: 48px;
    font-size: 40px;
  }
}
@media screen and (max-width: 390px) {
  .seasonal-popup__heading {
    font-size: 33px;
  }
}
.seasonal-popup__subheading {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: Roboto;
  font-size: 37px;
  font-weight: 400;
  line-height: 48px;
  text-transform: capitalize;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__subheading {
    line-height: 32px;
    font-size: 28px;
  }
}
@media screen and (max-width: 390px) {
  .seasonal-popup__subheading {
    font-size: 20px;
  }
}
.seasonal-popup__product {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}
@media screen and (max-width: 390px) {
  .seasonal-popup__product {
    gap: 0px;
  }
}
.seasonal-popup__image {
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__image {
    max-width: 128px;
    max-height: 128px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 390px) {
  .seasonal-popup__image {
    max-width: auto;
    max-height: auto;
  }
}
.seasonal-popup__discount {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.seasonal-popup__headline {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  margin: 0 !important;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__headline {
    font-size: 24px;
    line-height: 32px;
  }
}
.seasonal-popup__percentage {
  color: var(--seasonal-popup-discount-text-color);
  text-align: center;
  font-family: Roboto;
  font-size: 80px;
  font-weight: 900;
  line-height: 90%;
  text-transform: capitalize;
  margin: 0 !important;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__percentage {
    font-size: 48px;
    line-height: 40px;
  }
}
.seasonal-popup__off {
  color: var(--seasonal-popup-discount-text-color);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  margin: 0 !important;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__off {
    font-size: 24px;
    line-height: 32px;
  }
}
.seasonal-popup__offer--heading {
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 490px) {
  .seasonal-popup__offer--heading {
    font-size: 16px;
    line-height: 24px;
  }
}
.seasonal-popup__clock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 8px 0 16px 0;
}
.seasonal-popup__box {
  display: flex;
  padding: 8px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #000;
  background: #fff;
}
.seasonal-popup__box--heading {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
}
.seasonal-popup__box--subheading {
  color: #737373;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.seasonal-popup__box--separator {
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 4px;
}
.footer {
  background-color: var(--footer-section-background-color);
  font-family: "Open sans", sans-serif;
}
.footer--sameColor {
  background-color: var(--footer-section-background-color);
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .footer--sameColor {
    padding-top: 0px;
  }
}
.footer--content {
  color: var(--footer-disclaimer-text-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 24px 0 16px;
}
.footer--content > p:last-of-type {
  margin-bottom: 0px !important;
}
.footer--content--narrow {
  padding: 12px 13px;
  margin-bottom: 16px;
  border: 1px solid var(--footer-divider-color, #f2f2f2);
}
@media screen and (max-width: 767px) {
  .footer--content--narrow {
    text-align: center;
    margin-top: 0;
  }
}
.footer--menu {
  border-top: 1px solid var(--footer-divider-color, #f2f2f2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 16px;
}
@media screen and (max-width: 1091px) {
  .footer--menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer--menu--narrow {
  padding: 16px 0;
}
.footer--menu__logo {
  width: var(--logo-width-desktop);
  height: 24px;
}
@media screen and (max-width: 767px) {
  .footer--menu__logo {
    width: var(--logo-width-mobile);
  }
}
.footer--menu__logo img {
  height: 100%;
}
@media screen and (max-width: 1091px) {
  .footer--menu__links {
    margin-top: 16px;
  }
}
.footer--menu__links .menu-item {
  padding: 8px 0;
}
.footer--menu__links .menu-item a {
  color: var(--footer-link-text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: color 150ms ease-in;
}
.footer--menu__links .menu-item a:hover {
  color: var(--footer-link-text-hover-color);
}
.footer--menu__links .menu-item a:not(:hover) {
  text-decoration: none;
}
.footer--copyright {
  border-top: 1px solid var(--footer-divider-color, #f2f2f2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .footer--copyright {
    justify-content: center;
    flex-direction: column;
    padding: 16px 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer--copyright--narrow {
    padding: 16px 0 16px;
  }
}
.footer--copyright .copyright {
  color: var(--gray-2, #4f4f4f);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer--copyright .copyright {
    font-size: 12px;
    order: 1;
  }
}
.footer--copyright .copyright {
  color: var(--gray-2, #4f4f4f);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer--copyright .copyright {
    font-size: 14px;
    text-align: center;
    order: 1;
  }
}
.footer--copyright .toggle-button {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .footer--copyright .toggle-button {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer .link-padding {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.footer .toggle-button {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--product-read-more-button-border, #e0e0e0);
  background-color: var(--product-read-more-button-background, #f2f2f2);
  width: max-content;
  color: var(--product-read-more-button-text-color, #333);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-top: 16px;
  cursor: pointer;
  text-transform: capitalize;
}
.footer .toggle-button[theme="bold"] {
  background-color: #232f3e;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
}
.footer .toggle-button[theme="bold"] span::after {
  content: "";
  transform: rotate(0deg) !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.00008 14.9982C4.12945 14.9982 1 11.8688 1 7.99812C1 4.12749 4.12945 0.998047 8.00008 0.998047C11.8707 0.998047 15.0002 4.12749 15.0002 7.99812C15.0002 11.8688 11.8707 14.9982 8.00008 14.9982ZM8.00008 1.82159C4.58239 1.82159 1.82354 4.58044 1.82354 7.99812C1.82354 11.4158 4.58239 14.1747 8.00008 14.1747C11.4178 14.1747 14.1766 11.4158 14.1766 7.99812C14.1766 4.58044 11.4178 1.82159 8.00008 1.82159Z" fill="white"/><path d="M11.4197 8.69759L8.00197 5.27991L4.58429 8.69759L4.00781 8.12111L8.00197 4.12695L11.9961 8.12111L11.4197 8.69759Z" fill="white"/><path d="M7.58594 4.70312H8.40948V11.7032H7.58594V4.70312Z" fill="white"/></svg>');
}
@media screen and (max-width: 767px) {
  .footer .toggle-button {
    margin-top: 8px;
  }
}
.footer .toggle-button span {
  display: flex;
}
.footer .toggle-button span::after {
  margin-left: 8px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M0.999849 8.27827C0.999849 4.40764 4.12929 1.2782 7.99992 1.2782C11.8706 1.2782 15 4.40764 15 8.27827C15 12.1489 11.8706 15.2783 7.99992 15.2783C4.12929 15.2783 0.999849 12.1489 0.999849 8.27827ZM14.1765 8.27827C14.1765 4.86059 11.4176 2.10174 7.99992 2.10174C4.58224 2.10174 1.82339 4.86059 1.82339 8.27827C1.82339 11.696 4.58224 14.4548 7.99992 14.4548C11.4176 14.4548 14.1765 11.696 14.1765 8.27827Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M7.29997 11.696L10.7177 8.27828L7.29997 4.8606L7.87645 4.28412L11.8706 8.27828L7.87644 12.2724L7.29997 11.696Z' fill='%23333333'/%3E%3Cpath id='Vector_3' d='M11.2942 7.86646L11.2942 8.68999L4.29411 8.68999L4.29411 7.86645L11.2942 7.86646Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E");
  height: 16px;
  width: 16px;
}
.footer .toggle-button.open span::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='ei:arrow-up'%3E%3Cpath id='Vector' d='M8.00007 15.2784C4.12944 15.2784 0.999998 12.149 0.999999 8.27833C0.999999 4.4077 4.12945 1.27826 8.00008 1.27826C11.8707 1.27826 15.0002 4.40771 15.0001 8.27834C15.0001 12.149 11.8707 15.2784 8.00007 15.2784ZM8.00008 2.1018C4.58239 2.1018 1.82354 4.86065 1.82354 8.27834C1.82354 11.696 4.58239 14.4549 8.00007 14.4549C11.4178 14.4549 14.1766 11.696 14.1766 8.27834C14.1766 4.86065 11.4178 2.1018 8.00008 2.1018Z' fill='%23333333'/%3E%3Cpath id='Vector_2' d='M5.6 11L5 10.4L7.4 8L5 5.6L5.6 5L8 7.4L10.4 5L11 5.6L8.6 8L11 10.4L10.4 11L8 8.6L5.6 11Z' fill='%23333333'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.footer .toggle-button.back-to-top--narrow {
  font-family: "Open Sans", sans-serif;
  margin-top: 0px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer .toggle-button.back-to-top--narrow {
    margin-top: 16px;
  }
}
.footer .toggle-button.back-to-top span::after {
  transform: rotate(-90deg);
}
.footer .simple-toggle {
  border: none;
  background: none;
  color: #007b8c;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
}
.footer .toggle-chevron {
  color: #007b8c;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  top: -4px;
}
.footer .toggle-chevron.open > svg {
  transform: rotate(0deg);
}
.footer .toggle-chevron--icon {
  margin-left: 8px;
  position: relative;
  top: 7px;
  transform: rotate(90deg);
  transition: transform 150ms ease-in;
}
.footer .scroll-intoView {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  background: none;
  border: none;
  color: #007b8c;
  text-transform: capitalize;
  text-decoration: underline;
  cursor: pointer;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
}
.sidebar__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  padding: 8px;
  width: 100%;
}
.sidebar__score--heading {
  color: #333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}
.sidebar__score--rating {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #333;
}
.sidebar__score--evaluation {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.sidebar__score--reviews {
  color: #828282;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 2px 0 0 0;
}
.sidebar__ratings {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.sidebar__ratings--description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sidebar__ratings--text {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}
.sidebar__ratings--score {
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}
.sidebar__ratings--bar {
  background-color: #e0e0e0;
  border-radius: 2px;
  height: 12px;
  margin: 0 20px 0 0;
  position: relative;
  width: 100%;
}
.sidebar__ratings--bar:not(:last-of-type) {
  margin-bottom: 8px;
}
.sidebar__ratings--bar-fill {
  background-color: #00b67a;
  border-radius: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
}
.sidebar__list .sidebar__list--item:not(:last-of-type) {
  margin-bottom: 4px;
}
.sidebar__list--pros {
  color: #00b67a;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}
.sidebar__list--item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.sidebar__list--pros-text {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.sidebar__list--cons {
  color: #f76969;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 8px;
}
.sidebar__list--cons-text {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
}
.sidebar__list--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.sidebar__list--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sidebar__list--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .sidebar__list--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .sidebar__list--cta {
    width: 100%;
  }
}
.sidebar__list--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.sidebar__list--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.sidebar__list--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.sidebar__list--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.sidebar__list--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.sidebar__list--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.sidebar__list--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.sidebar__list--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.sidebar__list--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .sidebar__list--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.sidebar__list--cta {
  margin-top: 8px;
}
.summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px 24px;
  grid-column-gap: 40px;
  border-radius: 10px;
  border: 2px solid #232f3e;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .summary {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}
.summary__left {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .summary__left a {
    width: 50%;
  }
}
.summary__left--image {
  max-height: 120px;
  max-width: 120px;
}
@media only screen and (max-width: 767px) {
  .summary__left--image {
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .summary__left--review-text {
    width: 50%;
    border-left: 1px solid #f2f2f2;
    padding-left: 26px;
  }
}
.summary__product {
  display: flex;
  flex-direction: column;
}
.summary__ratings {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.summary__ratings--text {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.summary__ratings--number {
  color: #333;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.summary__ratings--icon {
  margin: 4px auto;
}
.summary__ratings--evaluation {
  text-align: center;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.summary__ratings--reviews {
  color: #828282;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  word-break: break-all;
}
.summary__assesment {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .summary__assesment--container {
    display: none;
  }
}
.summary__assesment--description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4px;
}
.summary__assesment--text {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}
.summary__assesment--score {
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}
.summary__assesment--bar {
  background-color: #e0e0e0;
  border-radius: 2px;
  height: 12px;
  margin: 0 20px 0 0;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}
.summary__assesment--bar-fill {
  background-color: #00b67a;
  border-radius: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
.summary__tooltip {
  width: fit-content;
  margin: 0 auto;
}
.summary__text--headline {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}
.summary__text--paragraph {
  color: #4f4f4f;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.summary__text--discount {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}
@media screen and (max-width: 390px) {
  .summary__text--discount {
    gap: 4px;
  }
}
.summary__text--limited {
  color: #cc0c0c;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.summary__text--label {
  padding: 4px 8px;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  background: #cc0c0c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.summary__text--label:hover {
  color: #fff;
}
.summary__text--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.summary__text--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .summary__text--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .summary__text--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .summary__text--cta {
    width: 100%;
  }
}
.summary__text--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .summary__text--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.summary__text--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .summary__text--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.summary__text--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .summary__text--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.summary__text--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .summary__text--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.summary__text--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.summary__text--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .summary__text--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.summary__text--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .summary__text--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.summary__text--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .summary__text--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.summary__text--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .summary__text--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.summary__text--cta {
  margin: 16px 0 22px 0;
  display: flex;
  padding: 20px 24px !important;
  align-items: center;
  line-height: 24px;
  text-transform: none;
  gap: 6px;
}
.summary .card-flag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 8px;
  background: var(--best-overall-flag-primary);
  width: 48px;
  height: 48px;
  top: -8px !important;
  padding: 8px !important;
}
.summary .card-flag__index {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}
.summary .card-flag:after {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  border-left: 24px solid var(--best-overall-flag-primary);
  border-right: 24px solid var(--best-overall-flag-primary);
  border-bottom: 12px solid rgba(0, 0, 0, 0) !important;
  border-top: 12px solid var(--best-overall-flag-primary);
}
.review-summary {
  border-radius: 10px;
  border: 1px solid var(--summary-divider-color);
  background: var(--summary-background-color);
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .review-summary-mobile {
    display: none;
  }
}
.review-summary__logo {
  max-width: 209px;
}
.review-summary__wrapper {
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .review-summary__wrapper {
    padding: 16px;
  }
}
.review-summary-heading {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .review-summary-heading {
    flex-direction: column;
    padding-bottom: 16px;
  }
}
.review-summary-heading > h4 {
  color: var(--summary-heading-color);
}
.review-summary-heading__text {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .review-summary-heading__text {
    margin-bottom: 16px;
  }
}
.review-summary-body {
  border-top: 1px solid var(--summary-divider-color);
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .review-summary-body {
    padding-top: 16px;
  }
}
.review-summary-body__text {
  margin-bottom: 24px;
}
.review-summary-body__text > p {
  color: var(--summary-description-color);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .review-summary-body__text > p {
    font-size: 14px;
    line-height: 20px;
  }
}
.review-summary-body__text > p:not(:last-of-type) {
  margin-bottom: 24px;
}
.review-summary-body__text > p:last-of-type {
  margin: 0px !important;
}
.review-summary-body__link {
  color: var(--summary-link-color);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
}
@media screen and (max-width: 767px) {
  .review-summary-body__link {
    font-size: 14px;
    line-height: 20px;
  }
}
.questions__text-subheading {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.questions__text-heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top: 8px;
}
.questions__text-innerTitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--faq-primary-color);
  margin-left: 4px;
}
.questions__text-cardTitle {
  font-size: 20px;
  line-height: 24px;
  pointer-events: none;
  color: var(--faq-primary-color);
  margin-left: 0;
}
.questions__text-description {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--faq-secondary-color);
  margin-top: 4px;
}
.questions__text-description--single {
  margin-top: 0px;
}
.questions__text-description--single p:not(:last-of-type) {
  margin-bottom: 24px;
}
.questions__text-description--single p:last-of-type {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .questions__text-description {
    font-size: 14px;
    line-height: 20px;
  }
}
.questions__text-description > p {
  margin-bottom: 16px;
}
.questions__text-description > p:last-of-type {
  margin: 0 !important;
}
.questions__text-link {
  color: #2f80ed;
  text-transform: capitalize;
}
.questions__card {
  background-color: var(--faq-background-color);
  position: relative;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--faq-card-border);
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: flex-start;
  cursor: pointer;
}
.questions__card:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .questions__card {
    align-items: center;
  }
}
.questions__seperator {
  height: 1px;
  width: 100%;
  background: var(--faq-seperator-color);
  margin-bottom: 16px;
  margin-right: -24px;
}
.questions__image-icon {
  margin-right: 8px;
  position: relative;
  top: 4px;
}
.questions__button {
  pointer-events: none;
  background: none;
  border: none;
  margin: 0;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transition: transform 300ms cubic-bezier(0.26, 0, 0.24, 0.99);
}
.questions__button[expanded="true"] {
  transform: rotate(0deg);
}
.questions__listWrap {
  grid-row: 2/3;
  grid-column: 1/3;
  transition: height 300ms cubic-bezier(0.26, 0, 0.24, 0.99);
  overflow: hidden;
  height: 0;
}
.questions__cardList {
  list-style: inside;
  padding-top: 16px;
  cursor: default;
}
.questions__cardList-open {
  height: 100%;
}
.questions__listItem {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.questions__listItem ul {
  list-style: inside;
  cursor: default;
}
.questions__listItem ul li {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #4f4f4f;
}
.questions__listItem a {
  color: #2f80ed;
}
.questions__cards:not(:last-of-type) {
  margin-bottom: 16px;
}
.questions__cardList > .questions__listItem:not(:last-of-type) {
  margin-bottom: 16px;
}
.faq {
  max-width: 1032px;
  padding: 0 16px;
  margin: 24px auto;
}
@media screen and (max-width: 767px) {
  .faq {
    margin: 16px auto 24px;
  }
}
.author {
  padding: 24px 32px;
  border: 1px solid #e0e0e0;
  background: #f2f2f2;
}
.author__top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  margin-bottom: 16px;
}
.author__content--icon {
  margin-bottom: 4px;
}
.author__content--written {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.author__content--name {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 0 0;
}
.author__bottom {
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .author__bottom {
    font-size: 16px;
  }
}
.author__bottom p {
  margin-bottom: 0px !important;
}
.floater {
  display: none;
}
@media screen and (max-width: 767px) {
  .floater {
    width: 100%;
    display: block;
    position: fixed;
    bottom: -16px;
    z-index: 100;
    transition: max-height 200ms ease-in, bottom 150ms ease-in;
    height: auto;
    max-height: 0;
  }
  .floater.floaterActive {
    max-height: unset;
    bottom: 0;
  }
}
.floater-header {
  display: flex;
  align-items: center;
  background: var(--product-heading-background);
  color: var(--product-heading-text-color);
}
.floater-header__bestSeller {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .floater-header__bestSeller {
    font-size: 12px;
    line-height: 16px;
  }
}
.floater-header__productName {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--product-heading-text-color);
  margin-left: 8px;
  border-left: 1px solid #fff;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  .floater-header__productName {
    font-size: 12px;
    line-height: 16px;
  }
}
.floater-header__index {
  background: var(--product-index-background);
  color: var(--product-index-text-color);
  padding: 2px 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .floater-header__index {
    font-size: 12px;
    line-height: 16px;
  }
}
.floater-header__content {
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.floater-body {
  background: #fff;
  padding: 8px 8px 14px 8px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 390px) {
  .floater-body {
    padding: 8px;
    display: grid;
    gap: 24px;
    grid-template-columns: max-content 1fr;
    grid-template-rows: 1fr;
    justify-content: space-between;
  }
}
.floater-body__seperator {
  width: 1px;
  height: 100%;
  grid-column: 2/3;
  grid-row: 1/3;
  background: #f2f2f2;
}
.floater-body__rating {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.floater-body__image {
  width: 40px;
  height: 40px;
  grid-column: 1/2;
  grid-row: 1/3;
}
.floater-body__image--stars {
  grid-column: 3/4;
  grid-row: 1/2;
  height: 12px;
}
.floater-body__content {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1px 1fr;
  grid-template-rows: repeat(2, 20px);
  column-gap: 8px;
}
.floater-body__text {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
@media screen and (max-width: 767px) {
  .floater-body__text {
    font-size: 12px;
  }
}
.floater-body__button {
  min-width: 167px !important;
  width: auto !important;
}
.floater-body--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 210px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  gap: 12px;
  font-family: "Open Sans", sans-serif;
}
.floater-body--cta--floater {
  padding: 8px 0 8px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .floater-body--cta--floater {
    padding: 12px 21px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    min-width: auto !important;
  }
}
@media screen and (max-width: 390px) {
  .floater-body--cta--floater {
    padding: 12px 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .floater-body--cta {
    width: 100%;
  }
}
.floater-body--cta[theme="blue"] {
  background-color: #3933ea;
  box-shadow: 0 2px 0 0 #021a31;
  color: #fff;
}
@media (pointer: fine) {
  .floater-body--cta[theme="blue"]:hover {
    background-color: #002fdd;
  }
}
.floater-body--cta[theme="light_orange"] {
  background: #fba602;
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 0 0 #b85a12;
}
@media (pointer: fine) {
  .floater-body--cta[theme="light_orange"]:hover {
    background: #fdbb3a;
  }
}
.floater-body--cta[theme="pink"] {
  background: #fe23a1;
  box-shadow: 0 2px 0 0 #b51973;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (pointer: fine) {
  .floater-body--cta[theme="pink"]:hover {
    background: #fe3ead;
  }
}
.floater-body--cta[theme="red"] {
  background: #e80000;
  box-shadow: 0 2px 0 0 #a30000;
  color: #fff;
}
@media (pointer: fine) {
  .floater-body--cta[theme="red"]:hover {
    background: #c80000;
  }
}
.floater-body--cta[theme="golden"] {
  background: linear-gradient(180deg, #ffd469 0%, #ff9017 100%);
  box-shadow: 0 2px 0 0 #cc6e00;
  color: #263a54;
  transition: 150ms ease-in;
  overflow: hidden;
  position: relative;
}
.floater-body--cta[theme="golden"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 150ms ease-in;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 58px;
  background: linear-gradient(180deg, #ffc533 0%, #e57800 100%);
}
@media (pointer: fine) {
  .floater-body--cta[theme="golden"]:hover:before {
    opacity: 1;
  }
}
.floater-body--cta[theme="orange"] {
  background: #f60;
  box-shadow: 0 2px 0 0 #b84900;
  color: #fff;
}
@media (pointer: fine) {
  .floater-body--cta[theme="orange"]:hover {
    background: #e15a00;
  }
}
.floater-body--cta[theme="green"] {
  background: #00b67a;
  box-shadow: 0 2px 0 0 #0b9e2e;
  color: #fff;
}
@media (pointer: fine) {
  .floater-body--cta[theme="green"]:hover {
    background: #00ba56;
  }
}
.floater-body--cta[theme="custom"] {
  background: var(--product-cta-background);
  box-shadow: 0 2px 0 0 var(--product-cta-shadow-color);
  color: var(--product-cta-text-color);
}
@media (pointer: fine) {
  .floater-body--cta[theme="custom"]:hover {
    background: var(--product-cta-background-hover);
  }
}
.text-capitalize {
  text-transform: capitalize;
}
.text-bold {
  font-weight: 700;
}
.text-uppercase {
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .padding-none-mobile {
    padding: 0 0 !important;
  }
}
.lh-24 {
  line-height: 24px;
} /*# sourceMappingURL=style.css.map */
